/* --- VARIABLES Y ESTILOS GLOBALES --- */
:root {
    --bg-color: #F4F7F6;
    --primary-text: #0D1B2A;
    --secondary-text: #5A5A5A;
    --accent-color: #B98B49; /* Dorado */
    --panel-bg: #FFFFFF;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend', sans-serif;
    background-color: #8c8377;
    color: var(--primary-text);
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background:#8c8377;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* --- LOGO FIJO INDEPENDIENTE --- */
.fixed-logo {
    position: fixed;
    top: 30px;
    left: 30px; /* <-- AJUSTA ESTE VALOR PARA MOVERLO MÁS A LA IZQUIERDA O DERECHA */
    z-index: 101;
    text-decoration: none;
    display: inline-block;
    background-color: transparent;
}

.fixed-logo img {
    height: 120px; /* AJUSTA EL TAMAÑO DEL LOGO */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.fixed-logo:hover img {
    transform: scale(1.25);
}

/* --- CABECERA (Contenedor de la barra de navegación) --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.4s ease-in-out;
    display: flex;
    justify-content: flex-end; /* Alinea la barra de nav a la derecha */
    align-items: center;
    z-index: 100;
}
.main-header.nav-hidden {
    transform: translateY(-110%); /* La movemos 110% para asegurar que se oculte por completo */
}

/* --- CONTENEDOR DE NAVEGACIÓN CON EFECTO VIDRIO --- */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    padding-top: 5px;
}

.cta-button {
    background-color: #caa168; /* O puedes usar var(--accent-color) */
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    mix-blend-mode: normal;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #3e5c7e;
    transform: scale(1.05);
}

/* --- CONTENEDOR DE LA ANIMACIÓN DE SCROLL --- */
.scroll-animation-container {
    height: 250vh;
    position: relative;
}

/* Código MODIFICADO */
.hero-panel {
    height: 100vh;
    width: 100vw;
    position: sticky;
    top: 0;
    display: flex;
    transition: transform 0.5s ease-out, border-radius 0.5s ease-out;
    overflow: hidden;
}

/* --- PANEL IZQUIERDO Y DERECHO --- */
.hero-left, .hero-right {
    height: 100%;
    background-color: var(--panel-bg);
    transition: width 0.5s ease-out;
    
}

.hero-left {
    width: 0;
    min-width: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: width 0.5s ease-out, opacity 0.5s ease-out;
    padding-top: 100px;
}


.hero-info {
    padding-left: 50px;
}

.hero-info h2 { font-size: 2rem; margin-bottom: 20px; }
.hero-info p { color: var(--secondary-text); line-height: 1.6; }
.hero-areas-nav { display: flex; flex-direction: column; gap: 15px; }
.hero-areas-nav a { text-decoration: none; color: var(--primary-text); font-weight: 500; }
.hero-areas-nav a.view-all { color: var(--accent-color); }

.hero-right {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-main-title {
    font-size: 5rem;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    transition: opacity 0.5s ease-out;
    position: relative; /* Lo posicionamos relativamente */
    z-index: 2;
}

/* --- ESTILOS PARA EL CARRUSEL DE IMÁGENES --- */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Detrás del título, pero por encima del fondo */
}

.slideshow-img {
    position: absolute; /* Apila todas las imágenes en el mismo lugar */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Hace que la imagen cubra todo el espacio sin deformarse */
    
    /* La magia de la transición */
    opacity: 0; /* Por defecto, todas las imágenes son invisibles */
    transition: opacity 1.5s ease-in-out; /* Transición de fundido suave (dura 1.5s) */
}

/* La imagen activa se hace visible */
.slideshow-img.active {
    opacity: 1;
}

/* --- SECCIÓN DE ESTADÍSTICAS --- */
.stats-section {
    padding: 100px 5%;
    background-color: var(--panel-bg);
    position: relative;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item { flex-basis: 30%; }
.stat-number { font-size: 4rem; font-weight: 600; color: var(--accent-color); }
.stat-item span:not(.stat-number) { font-size: 4rem; font-weight: 600; color: var(--accent-color); }
.stat-item p { font-size: 1.1rem; color: var(--secondary-text); margin-top: 10px; }


/* ESTILOS PARA EL BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-float {
    position: fixed; /* Esto lo mantiene fijo en la pantalla */
    width: 60px;
    height: 60px;
    bottom: 40px; /* Distancia desde abajo */
    right: 40px; /* Distancia desde la derecha */
    background-color: #25D366; /* Color oficial de WhatsApp */
    color: #FFF;
    border-radius: 50%; /* Lo hace redondo */
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000; /* Asegura que esté por encima de todo */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-icon {
    width: 35px; /* Ajusta el tamaño del icono SVG */
    height: 35px;
    fill: #FFF; /* Color del icono */
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Efecto al pasar el ratón */
    background-color: #128C7E; /* Un verde un poco más oscuro */
}


/* ============================================= */
/* ========= ESTILOS PRE-FOOTER (CTA) ========== */
/* ============================================= */
.pre-footer {
    background-color: #f4f4f4; /* Un gris muy claro para separar del contenido blanco */
    padding: 80px 40px;
    text-align: center;
}

.pre-footer-content h2 {
    font-size: 2.5rem; /* 40px */
    color: #1a2a4a; /* Un azul oscuro, puedes cambiarlo por tu color corporativo */
    margin-bottom: 15px;
}

.pre-footer-content p {
    font-size: 1.125rem; /* 18px */
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px auto; /* Centra el párrafo */
    line-height: 1.6;
}

.cta-button-footer {
    background-color: #c5a47e; /* Un color dorado/bronce, muy elegante */
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* Importante para que padding funcione bien */
}

.cta-button-footer:hover {
    background-color: #b39169; /* Un tono un poco más oscuro al pasar el ratón */
    transform: translateY(-3px);
}


/* ============================================= */
/* ========== ESTILOS FOOTER PRINCIPAL ========= */
/* ============================================= */
.main-footer-container {
    background-color: #1a2a4a; /* El mismo azul oscuro del título del CTA */
    color: #e0e0e0; /* Un gris muy claro, casi blanco, para que sea legible */
    padding: 60px 40px 20px 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap; /* Para que se adapte en móviles */
    justify-content: space-between;
    max-width: 1200px; /* Ancho máximo del contenido */
    margin: 0 auto;
    gap: 40px; /* Espacio entre columnas */
}

.footer-column {
    flex: 1; /* Hace que las columnas intenten ocupar el mismo espacio */
    min-width: 220px; /* Ancho mínimo antes de que se rompan las líneas */
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
    /* Si tu logo es oscuro, necesitarás una versión en blanco para el footer.
       Si no, podemos usar CSS para invertir el color. */
    /* filter: brightness(0) invert(1); */ /* Descomenta esta línea si tu logo es negro */
}

.footer-tagline {
    font-style: italic;
    color: #c5a47e; /* El color dorado para un toque de clase */
}

.footer-column h4 {
    font-size: 1.2rem; /* 19px */
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

/* Línea decorativa debajo de los títulos */
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c5a47e; /* Color dorado */
}

.footer-column a, .footer-column p {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-column a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-column p a {
    display: inline; /* Para que el enlace de email/teléfono no ocupe toda la línea */
}

.footer-column .icon-placeholder {
    color: #c5a47e;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid #3c4a6b; /* Línea separadora sutil */
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #a0a0a0;

    /* --- LA MAGIA ESTÁ AQUÍ --- */
    display: flex;
    flex-direction: column; /* Apila los elementos uno sobre otro */
    align-items: center;    /* Los centra horizontalmente */
    gap: 15px;              /* Añade un espacio vertical entre el texto y el logo */
}

.footer-column.hidden-footer-item {
    opacity: 0;
    transform: translateY(30px);
}

/*
   2. TRANSICIÓN SUAVE
   Le decimos a CADA columna que cuando cambien sus propiedades
   de opacidad o transform, lo haga suavemente en 0.8 segundos.
*/
.footer-column {
    /* ...tus estilos existentes... */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/*
   3. EFECTO ESCALONADO (LA MAGIA)
   Añadimos un pequeño retraso a cada columna para que no
   aparezcan todas a la vez.
*/
.footer-content .footer-column:nth-child(1) {
    transition-delay: 0.1s;
}
.footer-content .footer-column:nth-child(2) {
    transition-delay: 0.2s;
}
.footer-content .footer-column:nth-child(3) {
    transition-delay: 0.3s;
}
.footer-content .footer-column:nth-child(4) {
    transition-delay: 0.4s;
}

.hidden-from-left {
    opacity: 0;
    transform: translateX(-50px); /* Empieza 50px a la izquierda */
}

.hidden-from-right {
    opacity: 0;
    transform: translateX(50px); /* Empieza 50px a la derecha */
}

/*
   2. TRANSICIÓN SUAVE
   Aplicamos la transición a los elementos que vamos a animar dentro del pre-footer.
*/
.pre-footer-content h2,
.pre-footer-content p,
.pre-footer-content .cta-button-footer {
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

/*
   3. EFECTO ESCALONADO (OPCIONAL PERO RECOMENDADO)
   Un pequeño retraso para que no todo aparezca al mismo tiempo.
*/
.pre-footer-content p {
    transition-delay: 0.1s;
}

.pre-footer-content .cta-button-footer {
    transition-delay: 0.2s;
}

.hidden-dots {
    font-size: 1.2rem;
    color: #ccc;
    cursor: default;
}

.hidden-dots .dot-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hidden-dots .dot-link:hover {
    color: #fff; /* Cambia de color al pasar el mouse */
}

.footer-column a {
    color: #ffffff !important; /* Blanco */
    text-decoration: none;
}

.footer-column a:hover {
    color: #c5a47e; /* El dorado que usas en otros detalles */
    text-decoration: underline;
}


.main-footer-container a:link,
.main-footer-container a:visited {
  color: #fff !important;
  text-decoration: none;
}

.main-footer-container a:hover,
.main-footer-container a:focus {
  color: #c5a47e !important; /* dorado */
  text-decoration: underline;
}

.main-footer-container a:active {
  color: #fff !important;
}



.footer-logo img {
    max-width: 180px; /* Ajusta el tamaño */
    height: auto;
    display: block;
    
}

.mobile-nav-toggle {
    display: none;
    position: relative;
    z-index: 1001; /* Asegura que esté por encima de todo en el header */
    background: transparent;
    border: 0;
    padding: 0.5em;
    cursor: pointer;
}

/* Las 3 líneas de la hamburguesa (creadas con pseudo-elementos) */
.mobile-nav-toggle .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mobile-nav-toggle::before,
.mobile-nav-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease-out, top 0.3s ease-out;
}

.mobile-nav-toggle::before {
    top: 6px;
}

.mobile-nav-toggle::after {
    top: -6px;
}

/* Transforma la hamburguesa en una 'X' cuando el menú está abierto */
.nav-open .mobile-nav-toggle::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-open .mobile-nav-toggle::after {
    transform: rotate(-45deg);
    top: 0;
}


/* =========================
   RESPONSIVE (pegar al final)
   ========================= */

/* <= 1200px */
@media (max-width: 1200px){
  .hero-main-title{ font-size: clamp(3rem, 5vw, 4.2rem); }
  .stats-container{ gap: 20px; }
}

/* <= 992px (tablet apaisada) */
@media (max-width: 992px){
  /* Header más compacto */
  .fixed-logo{ top: 20px; left: 20px; }
  .fixed-logo img{ height: 80px; }
  .nav-wrapper{ padding: 8px 18px; gap: 18px; border-radius: 40px; }
  .main-nav{ gap: 18px; }
  .cta-button{ padding: 8px 16px; }
  .main-header {
      padding-top: 15px; /* Un poco de espacio arriba */
      padding-right: 20px; /* Espacio a la derecha */
      /* Este es el truco: dejamos espacio a la izquierda para el logo */
      padding-left: 120px; 
  }

  /* Hero */
  .hero-main-title{ font-size: clamp(2.4rem, 5vw, 3.2rem); padding: 0 10px; }

  /* Stats */
  .stats-container{ flex-wrap: wrap; gap: 28px; }
  .stat-item{ flex: 1 1 45%; }
  .stat-number{ font-size: 3rem; }
}

/* <= 768px (tablet vertical) */
@media (max-width: 768px) {
    /* AJUSTE CLAVE 1: Neutralizamos el contenedor de vidrio */
    .nav-wrapper {
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0; /* Quitamos el padding para que no ocupe espacio extra */
    }

    /* AJUSTE CLAVE 2: Damos un poco de espacio al header para que el botón no quede pegado al borde */
    .main-header {
        padding: 15px 20px;
    }

    /* Mostramos el botón de la hamburguesa */
    .mobile-nav-toggle {
        display: block;
        width: 28px;
        height: 20px;
    }

    /* El contenedor del menú ahora es un panel que se desliza */
    .main-nav {
        position: fixed;
        /* Aseguramos que el menú esté por encima de otros elementos */
        z-index: 1000;
        inset: 0 0 0 30%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        padding: min(20vh, 10rem) 2em;
        background: rgba(13, 27, 42, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateX(100%);
        transition: transform 0.4s ease-out;
    }
    
    .main-nav .cta-button {
        border: 2px solid rgb(190, 175, 89);
        background-color: transparent;
        color: white;
    }

    .nav-open .main-nav {
        transform: translateX(0%);
    }

    /* Ajustes generales para esta vista (estos ya los tenías bien) */
    .fixed-logo img { height: 70px; }
    .hero-main-title{ font-size: clamp(2rem, 6vw, 2.6rem); }
    .stat-item{ flex: 1 1 100%; }
    .stat-number{ font-size: 2.4rem; }
    .footer-content{ flex-direction: column; gap: 20px; }
    .footer-bottom{ gap: 8px; }
    
    body.nav-open {
        overflow: hidden;
    }
}

/* <= 600px (phones medianos) */
@media (max-width: 600px){
  .fixed-logo{ top: 14px; left: 14px; }
  .fixed-logo img{ height: 60px; }
  .nav-wrapper{ padding: 6px 12px; gap: 10px; }
  .main-nav a{ font-size: 0.9rem; }

  /* Hero */
  .hero-main-title{ font-size: clamp(1.8rem, 7vw, 2.2rem); }

  /* Stats */
  .stats-section{ padding: 60px 5%; }
  .stat-number{ font-size: 2rem; }
  .stat-item p{ font-size: 1rem; }

  /* Footer */
  .main-footer-container{ padding: 40px 20px 15px; }
}

/* <= 480px (phones pequeños) */
@media (max-width: 480px){
  .fixed-logo img{ height: 50px; }
  .hero-main-title{ font-size: 1.6rem; }
  .stat-number{ font-size: 1.8rem; }
  .pre-footer{ padding: 50px 16px; }
  .pre-footer-content h2{ font-size: 1.6rem; }
  .pre-footer-content p{ font-size: 1rem; }
  .cta-button-footer{ padding: 10px 16px; }
}

@media (max-width: 780px) {
  /* 1. Cambiamos la dirección del contenedor principal a vertical */
  .hero-panel {
    flex-direction: column;
  }

  /* 2. Establecemos un estado inicial claro para los paneles en móvil */
  .hero-left, .hero-right {
    width: 100% !important; /* Forzamos el ancho completo para evitar conflictos */
    min-width: 100%;
    /* La transición en móvil será sobre la altura y la opacidad */
    transition: height 0.5s ease-out, opacity 0.5s ease-out;
  }

  /* 3. Panel de la imagen (arriba) */
  .hero-right {
    order: 1; /* Se muestra primero */
    height: 100%; /* Empieza ocupando toda la pantalla */
  }

  /* 4. Panel de texto (abajo) */
  .hero-left {
    order: 2; /* Se muestra segundo */
    height: 0; /* Empieza con altura cero, totalmente oculto */
    padding: 40px 20px; /* Mantenemos el padding correcto */
    justify-content: space-between; /* Mantenemos la alineación */
  }

  /* 5. Ajustamos el tamaño de la fuente del título para que no sea tan grande */
  .hero-info h2 {
    font-size: 1.8rem;
  }

  /* Ajustamos el padding en móvil para que no se vea muy corrido */
  .hero-info {
    padding-left: 20px;
  }
}

/* ============================================= */
/* ======== MODAL DE WHATSAPP ================== */
/* ============================================= */
.whatsapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.whatsapp-modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.whatsapp-modal.is-visible .whatsapp-modal-content {
    transform: scale(1);
}

.whatsapp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #5A5A5A;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.whatsapp-modal-close:hover {
    background-color: #f0f0f0;
    color: #0D1B2A;
}

.whatsapp-modal-content h3 {
    margin: 0 0 25px 0;
    font-size: 1.5rem;
    color: #0D1B2A;
    text-align: center;
    font-weight: 600;
}

.whatsapp-numbers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-number-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    font-size: 1.1rem;
    font-weight: 500;
}

.whatsapp-number-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-number-btn svg {
    flex-shrink: 0;
}

.whatsapp-number-btn span {
    flex-grow: 1;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-modal-content {
        padding: 30px 20px;
        max-width: 340px;
    }

    .whatsapp-modal-content h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .whatsapp-number-btn {
        padding: 15px 18px;
        font-size: 1rem;
        gap: 12px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

