/* =====================================================
   CONTACTO - HERO
===================================================== */

.contact-section{
background:#ffffff;
padding:120px 0;
text-align:center;
font-family:'Poppins', sans-serif;
}

.contact-container{
width:90%;
max-width:1000px;
margin:0 auto;
}


/* TITULO */

.contact-title{
font-size:60px;
font-weight:800;
color:#000000;
margin-bottom:10px;
}

.contact-subtitle{
font-size:18px;
color:#444444;
margin-bottom:50px;
}


/* CARD FORM */

.contact-card{
background:#f6f7f9;
border-radius:25px;
padding:50px;
max-width:650px;
margin:0 auto;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.25s ease;
}

.contact-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 45px rgba(0,0,0,0.12);
}


/* FORM */

.contact-form{
display:flex;
flex-direction:column;
text-align:left;
}

.contact-form label{
font-size:14px;
margin-bottom:6px;
color:#000;
font-weight:500;
}


/* INPUTS */

.contact-form input,
.contact-form textarea{
width:100%;
padding:16px;
border-radius:12px;
border:1px solid #d9dee4;
margin-bottom:20px;
font-size:16px;
font-family:'Poppins', sans-serif;
outline:none;
background:#ffffff;
}

.contact-form textarea{
min-height:120px;
resize:none;
}


/* BOTON */

.contact-btn{
margin-top:10px;
background:#002e57;
color:#ffffff;
padding:16px 40px;
border:none;
border-radius:999px;
font-size:16px;
font-weight:600;
cursor:pointer;
align-self:center;
transition:0.25s ease;
}

.contact-btn:hover{
background:#ed1f2a;
transform:translateY(-2px);
}


/* RESPONSIVE */

@media (max-width:768px){

.contact-title{
font-size:42px;
}

.contact-card{
padding:30px;
}

}
/* =====================================================
   SECCIÓN 2 - MEDIOS DE CONTACTO
===================================================== */

.contact-social-section{
background:#ffffff;
padding:100px 0;
text-align:center;
}

.contact-social-title{
font-size:42px;
font-weight:800;
margin-bottom:50px;
color:#000;
}


/* GRID */

.contact-social-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1000px;
margin:0 auto;
}


/* TARJETAS */

.contact-social-card{
background:#f6f7f9;
padding:40px;
border-radius:20px;
text-decoration:none;
color:#000;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.25s ease;
display:block;
}

.contact-social-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}


/* ICONO RED SOCIAL */

.contact-social-icon{
display:flex;
justify-content:center;
align-items:center;
margin-bottom:15px;
}

.contact-social-icon img{
width:40px;
height:auto;
display:block;
}


/* TITULO */

.contact-social-card h3{
font-size:22px;
margin-bottom:10px;
}


/* TEXTO */

.contact-social-card p{
font-size:16px;
line-height:1.6;
color:#444;
}


/* RESPONSIVE */

@media (max-width:900px){

.contact-social-grid{
grid-template-columns:1fr;
gap:30px;
}

}

/* =====================================================
   ICONO CONTACTO
===================================================== */

.contact-icon{
max-width:70px;
display:block;
margin:0 auto 20px auto;
}