/* ===== HERO WAVE ===== */
.page-hero {
    position: relative;
    background-color: transparent;
    height: 90px;
    overflow: hidden;
}

.page-hero .hero-wave {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.page-hero .hero-wave img {
    height: 100%;
    width: auto;
    display: block;
}

/* ===== MAIN ===== */
.contacto-main {
    padding: 60px 0 90px;
}

/* ===== TÍTULO ===== */
.contacto-titulo {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 48px;
    text-align: center;
}

/* ===== GRID DOS COLUMNAS ===== */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ===== COLUMNA INFO ===== */
.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-bloque {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.info-icono {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 9px;
}

.info-icono.whatsapp-icono {
    background-color: #25d366;
    padding: 7px;
}

.info-icono svg {
    width: 100%;
    height: 100%;
}

.info-contenido h3 {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.info-contenido p {
    font-family: var(--font-family);
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

.horario-label {
    font-weight: 600;
    color: var(--color-primary) !important;
    margin-top: 8px;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 4px;
    background-color: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 5px;
    transition: opacity 0.2s;
}

.whatsapp-link:hover {
    opacity: 0.88;
}

/* ===== MAPA ===== */
.contacto-mapa {
    width: 100%;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    border: 3px solid rgba(95, 23, 73, 0.15);
}

.contacto-mapa iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacto-mapa {
        height: 340px;
    }

    .contacto-titulo {
        font-size: 30px;
    }
}
