/* ===================================
   HERO CONTACTOS
=================================== */
.contact-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.contact-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.6)
    );
    z-index: 2;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.contact-hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,.7);
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 750px;
    text-shadow: 1px 1px 4px rgba(0,0,0,.7);
}

/* ===================================
   CANALES DE CONTACTO
=================================== */
.contact-canales {
    padding: 90px 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    background: #fff;
    text-align: center;
}

.contact-canales .canal {
    background: #f9f9f9;
    padding: 40px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-canales .canal:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,.12);
}

.contact-canales i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 20px;
}

.contact-canales h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.contact-canales p {
    color: #555;
    margin-bottom: 15px;
}

.contact-canales a {
    text-decoration: none;
    font-weight: 600;
    color: #111;
}

/* ===================================
   FORMULARIO + RESPONSABLE
=================================== */
.contact-formulario {
    padding: 90px 10%;
    background: #f9f9f9;
    text-align: center;
}

.contact-formulario h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #000;
    background-color: #f5f0df;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 14px;
    text-transform: uppercase;
}

.formulario-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

/* FORMULARIO */
.formulario-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.formulario-box input,
.formulario-box select,
.formulario-box textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.formulario-box textarea {
    min-height: 120px;
    resize: vertical;
}

.formulario-box button,
.btn-responsable,
.btn-form-whatsapp {
    display: inline-block;
    padding: 14px 30px;
    background: #25D366; /* verde WhatsApp */
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.formulario-box button:hover,
.btn-responsable:hover,
.btn-form-whatsapp:hover {
    background: #1ebe57; /* verde más oscuro al pasar el mouse */
    transform: translateY(-2px);
}

/* RESPONSABLE */
.responsable-box {
    text-align: center;
    padding: 40px 30px;
}

.responsable-box img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.responsable-box h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.responsable-box span {
    display: block;
    color: #777;
    font-weight: 600;
    margin-bottom: 15px;
}

.responsable-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .formulario-grid {
        grid-template-columns: 1fr;
    }

    .responsable-box {
        margin-top: 30px;
    }
}


/* ===================================
   MAPA Y HORARIOS
=================================== */
.contact-ubicacion {
    padding: 90px 10%;
    background: #fff;
    text-align: center;
}

.contact-ubicacion h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
    background-color: #f5f0df;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 14px;
    text-transform: uppercase;
}

.contact-ubicacion iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 18px;
}

/* ===================================
   HORARIOS
=================================== */
.contact-horarios {
    padding: 60px 10%;
    background: #f9f9f9;
    text-align: center;
}

.contact-horarios h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    background-color: #f5f0df;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 14px;
    text-transform: uppercase;
}

.contact-horarios ul {
    list-style: none;
}

.contact-horarios li {
    font-size: 1.05rem;
    padding: 8px 0;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 992px) {

    .contact-canales {
        grid-template-columns: 1fr;
    }

    .contact-formulario form {
        grid-template-columns: 1fr;
    }

    .contact-formulario textarea,
    .contact-formulario button {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {

    .contact-hero h1 {
        font-size: 2.6rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-canales,
    .contact-formulario,
    .contact-ubicacion,
    .contact-horarios {
        padding: 70px 6%;
    }
}