/* CONTEXTO AISLADO */
.contact-page{
max-width:820px;
margin:70px auto;
padding:0 20px;
font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Ubuntu;
}

/* CAJA */
.contact-card{
background:#fff;
border-radius:12px;
padding:50px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* TITULO */
.contact-title{
font-size:32px;
font-weight:700;
margin-bottom:10px;
letter-spacing:-0.5px;
}

.contact-intro{
color:#666;
margin-bottom:35px;
font-size:16px;
}

/* GRID */
.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:22px;
}

@media(max-width:720px){
.contact-grid{
grid-template-columns:1fr;
}

.contact-card{
padding:30px;
}

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

/* CAMPOS */
.contact-field{
margin-bottom:22px;
}

.contact-page label{
display:block;
font-size:14px;
font-weight:600;
margin-bottom:6px;
color:#333;
}

.contact-page input,
.contact-page textarea{
width:100%;
border:1px solid #ddd;
border-radius:8px;
padding:14px;
font-size:15px;
transition:all .2s;
background:#fafafa;
}

.contact-page input:focus,
.contact-page textarea:focus{
outline:none;
border-color:#111;
background:#fff;
box-shadow:0 0 0 3px rgba(0,0,0,0.05);
}

.contact-page textarea{
min-height:170px;
resize:vertical;
}

/* BOTON */
.contact-submit{
margin-top:10px;
background:#111;
color:#fff;
border:none;
padding:16px 40px;
border-radius:8px;
font-weight:600;
font-size:15px;
cursor:pointer;
transition:.25s;
}

.contact-submit:hover{
background:#333;
transform:translateY(-1px);
}

/* MENSAJE OK */
.contact-success{
background:#eaf7ee;
border:1px solid #b7e3c5;
color:#256c3a;
padding:18px;
border-radius:8px;
margin-bottom:30px;
font-weight:500;
}
