body{
    background:linear-gradient(135deg, #ffffff, #f3ede6);
    font-family:Georgia;
}

/* CONTENEDOR */
.contactoBox{
    background:linear-gradient(145deg, #ffffff, #f8f6f2);
    border-radius:25px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border:1px solid #e8d6bd;
}

/* TITULO */
.contactoBox h2{
    color:#5a2e1f;
    margin-bottom:15px;
}

/* TEXTO */
.mensaje{
    color:#555;
    font-size:16px;
    margin-bottom:30px;
}

/* BOTONES */
.links{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btnContacto{
    text-decoration:none;
    padding:12px 20px;
    border-radius:12px;
    font-weight:bold;
    transition:0.3s;
    display:flex;
    align-items:center;
    gap:8px;
}

/* WHATSAPP */
.wpp{
    background:#25D366;
    color:white;
}

.wpp:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
}

/* INSTAGRAM */
.ig{
    background:linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color:white;
}

.ig:hover{
    transform:translateY(-3px);
}

/* FACEBOOK */
.fb{
    background:#1877f2;
    color:white;
}

.fb:hover{
    transform:translateY(-3px);
}

/* RESPONSIVE */
@media (max-width:768px){
    .contactoBox{
        padding:25px;
    }
}