/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 23 2026 | 22:33:45 */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}


/* Estilos exclusivos para este widget */
.pi-widget-container,
.pi-widget-container * {
    box-sizing: border-box;
}

.pi-widget-container {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
}

.pi-card {
    background: linear-gradient(180deg, #29BDF2 0%, #1063C2 100%);
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.pi-card:hover {
    transform: translateY(-5px);
}

.pi-card-image {
    width: 100%;
    min-height: 120px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pi-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.pi-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: white;
}

.pi-separator {
    width: 40px;
    height: 3px;
    background-color: #00dce8;
    margin: 0 auto 15px auto;
    border-radius: 2px;
}

.pi-card p {
    font-size: 14px;
    font-weight: 400;
    color: #d1d5db;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.pi-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #00dce8;
    color: white !important;
    padding: 10px 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pi-btn:hover {
    background-color: #00dce8;
    color: #061030 !important;
    box-shadow: 0 0 15px rgba(0, 220, 232, 0.4);
}


/* Contenedor Principal */
    .seccion-qrt-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Columna Izquierda: Imagen */
    .seccion-qrt-image {
        flex: 1 1 410px;
        width: 100%;
    }

    .seccion-qrt-image img {
        width: 100%;
        height: auto;
        border-radius: 30px;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Columna Derecha: Contenido */
    .seccion-qrt-content {
        flex: 1 1 500px;
    }

    /* Títulos dentro de la sección */
    .seccion-qrt-content h2 {
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
    }

    .seccion-qrt-content h2 span {
        color: #7AFFFA; /* Color destacado */
    }

    /* Párrafos */
    .seccion-qrt-content p {
        color: #fff;
        line-height: 1.6;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    /* Contenedor de las Tarjetas de Estadísticas */
    .seccion-qrt-stats-container {
        display: flex;
        gap: 20px;
        margin-top: 40px;
    }

    /* Estilo Base de la Tarjeta */
    .seccion-qrt-card {
        flex: 1;
        padding: 30px 20px;
        border-radius: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 180px;
    }

    /* Modificador: Tarjeta Verde (Principal) */
    .seccion-qrt-card-primary {
        background-color: #2eb8a0;
        color: white;
        box-shadow: 0 10px 20px rgba(46, 184, 160, 0.3);
    }

    .seccion-qrt-card-primary .seccion-qrt-number {
        color: white;
    }

    .seccion-qrt-card-primary .seccion-qrt-desc {
        color: rgba(255,255,255,0.9);
    }

    /* Modificador: Tarjeta Blanca */
    .seccion-qrt-card-white {
        background-color: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border: 1px solid #f0f0f0;
    }

    .seccion-qrt-card-white .seccion-qrt-number {
        color: #1a3c40;
    }

    .seccion-qrt-card-white .seccion-qrt-desc {
        color: #555;
    }

    /* Tipografía interna de las tarjetas */
    .seccion-qrt-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        display: block;
    }

    .seccion-qrt-desc {
        font-size: 0.85rem;
        line-height: 1.4;
    }

/* Estilos para los iconos PNG */
    .seccion-qrt-icon {
        width: 60px;        /* Ajusta este valor al tamaño que quieras */
        height: auto;       /* Mantiene la proporción */
        margin-bottom: 15px; /* Espacio entre el icono y el texto */
        object-fit: contain;
        display: block;
    }

    /* Opcional: Si quieres que el icono de la tarjeta verde sea blanco
       y tu PNG es transparente, puedes usar un filtro para volverlo blanco.
       Si tu PNG ya es blanco, borra esto: */
    .seccion-qrt-card-primary .seccion-qrt-icon {
        filter: brightness(0) invert(1); 
    }

  /* Responsividad */
    @media (max-width: 768px) {
        .seccion-qrt-wrapper {
            flex-direction: column;
            gap: 20px; /* NUEVO: Reducimos el espacio de 40px a 20px en móvil */
        }
        
        /* Arreglo para la imagen */
        .seccion-qrt-image {
            flex: auto; 
            width: 100%;
            max-width: 100%;
        }

        /* --- NUEVO: ESTO ES LO QUE QUITA EL ESPACIO EN BLANCO --- */
        /* Reseteamos el flex del contenido para que no fuerce 500px de altura */
        .seccion-qrt-content {
            flex: auto; 
            width: 100%;
        }
        /* -------------------------------------------------------- */

        .seccion-qrt-stats-container {
            flex-direction: column;
            gap: 15px;
        }

        .seccion-qrt-card {
            min-height: auto;
            padding: 20px;
        }
        
        .seccion-qrt-content h2 {
            font-size: 2rem;
        }
    }

/* --- Estilos Generales del FAQ --- */
    .faq-qrt-wrapper {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-qrt-item {
        margin-bottom: 15px; /* Espacio entre preguntas */
        box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Sombra suave */
    }

    /* --- Cabecera de la Pregunta (El botón) --- */
    .faq-qrt-header {
        display: flex;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    /* Parte del Texto (Izquierda) */
    .faq-qrt-question {
        flex-grow: 1;
        background-color: #ffffff;
        color: #333;
        padding: 20px;
        font-weight: 700;
        font-size: 0.95rem;
        text-transform: uppercase; /* Todo en mayúsculas como la foto */
        display: flex;
        align-items: center;
        transition: background-color 0.3s ease, color 0.3s ease;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    /* Parte del Icono (Derecha) */
    .faq-qrt-icon-box {
        width: 60px;
        background-color: #2bbdb5; /* Turquesa por defecto */
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; /* Que no se aplaste */
        transition: background-color 0.3s ease;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    /* La flecha (hecha con CSS puro) */
    .faq-qrt-arrow {
        border: solid white;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 5px;
        transform: rotate(45deg); /* Flecha hacia abajo */
        transition: transform 0.3s ease;
        margin-bottom: 3px;
    }

    /* --- Contenido de la Respuesta (Oculto por defecto) --- */
    .faq-qrt-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        background-color: #fff;
        border: 2px solid transparent; /* Borde invisible por defecto */
        border-top: none;
        color: #666;
		font-size: 1.2rem;
        line-height: 1.2;
    }

    .faq-qrt-content p {
		margin: 0;
        /* El tercer valor (40px) es el espacio de abajo */
        padding: 0 20px 40px 20px;
    }

    /* --- ESTADO ACTIVO (Cuando se abre) --- */
    
    /* 1. Cambiar fondo del texto a Turquesa */
    .faq-qrt-item.active .faq-qrt-question {
        background-color: #2bbdb5;
        color: white;
        border-bottom-left-radius: 0; /* Quitar redondeo inferior para pegar con el contenido */
    }

    /* 2. Cambiar fondo del icono a Verde Lima */
    .faq-qrt-item.active .faq-qrt-icon-box {
        background-color: #bfd730;
        border-bottom-right-radius: 0;
    }

    /* 3. Rotar la flecha hacia arriba */
    .faq-qrt-item.active .faq-qrt-arrow {
        transform: rotate(-135deg);
        margin-bottom: -3px;
    }

    /* 4. Mostrar el borde del contenido */
    .faq-qrt-item.active .faq-qrt-content {
        border-color: #2bbdb5; /* Borde Turquesa */
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        padding-top: 20px; /* Espacio interior al abrir */
    }

/* Configuración base del botón */
.boton-pQz {
    position: relative;
    z-index: 1;
    /* IMPORTANTE: Asegura que la onda se vea fuera del botón */
    overflow: visible !important; 
}

/* Creación de las ondas */
.boton-pQz::before,
.boton-pQz::after {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* CAMBIO 1: Fuerza una forma perfectamente redondeada, no cuadrada */
    border-radius: 50em; 
    background-color: rgba(255, 255, 255, 0.6);
    z-index: -1;
    opacity: 0;
    animation: onda-alerta 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

/* Retraso para la segunda onda */
.boton-pQz::after {
    animation-delay: 0.5s;
}

/* La animación de expansión */
@keyframes onda-alerta {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        /* CAMBIO 2: Se expande menos (antes era 1.6) para no ser tan "larga" */
        transform: scale(1.35); 
        opacity: 0;
    }
}

/* ESTILOS DE LA PAGINA 2 */

/* --- Configuración General del Hero (hero-pses) --- */
.hero-pses {
  position: relative;
  min-height: 100vh; /* Ocupa toda la pantalla vertical */
  display: flex;
  align-items: center;
  justify-content: center;
  /* CAMBIA ESTA URL POR TU FOTO DE PISCINA */
  background-image: url('https://images.unsplash.com/photo-1572331165267-854da2bbc729?q=80&w=2074&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  box-sizing: border-box;
  font-family: 'Lexend', sans-serif;
  overflow: hidden;
}

/* Overlay (Capa oscura azulada) */
.pses-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Contenedor Flex */
.pses-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* --- COLUMNA IZQUIERDA (Textos) --- */
.pses-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  color: #fff;
}

/* Tagline pequeño */
.pses-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #64ffda; /* Turquesa */
  margin-bottom: 20px;
}
.pses-tagline .line {
  height: 1px;
  width: 40px;
  background: #64ffda;
}

/* Título Serif Gigante */
.pses-text-content h1 {
  font-family: 'Lexend', serif !important;
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 25px 0;
  font-weight: 600;
  color: #ffffff;
}

/* Párrafo */
.pses-text-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 480px;
}

/* Botones del Hero */
.pses-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.pses-btn-primary {
  padding: 12px 30px;
  background: #64ffda;
  color: #0a192f;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.pses-btn-outline {
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.pses-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(100,255,218,0.4); }
.pses-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* --- WIDGET FLOTANTE (Píldora) --- */
.pses-trust-widget {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  gap: 20px;
  color: #0a192f;
}

.pses-widget-item {
  display: flex;
  flex-direction: column;
}

.pses-widget-label { font-size: 10px; color: #8892b0; letter-spacing: 1px; margin-bottom: 2px; }
.pses-widget-value { font-size: 24px; font-family: 'Lexend', serif; font-weight: 700; color: #0a192f; line-height: 1; }
.pses-widget-divider { width: 1px; height: 35px; background: #e6f1ff; }
.pses-widget-stars { color: #f59e0b; font-size: 14px; margin-bottom: 2px; }
.pses-widget-source { font-size: 12px; font-weight: 500; color: #0a192f; }

/* --- COLUMNA DERECHA (Wrapper del Form) --- */
.pses-form-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* Alinea el form a la derecha */
}

/* Ajustes Responsivos (Móvil) */
@media (max-width: 968px) {
  .pses-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .pses-tagline { justify-content: center; }
  
  .pses-text-content h1 { font-size: 36px; }
  
  .pses-buttons { justify-content: center; }
  
  .pses-trust-widget { 
    width: 100%; 
    justify-content: space-around; 
    box-sizing: border-box;
  }

  .pses-form-wrapper { 
    width: 100%; 
    justify-content: center; 
  }
}
/* =========================================
   ESTILOS DEL FORMULARIO (Deep Ocean)
   Clase base: .ps-form-es-...
   ========================================= */

/* --- Tarjeta del Formulario --- */
.ps-form-es-card {
  /* Fondo Azul Profundo con Blur (Glassmorphism) */
  background: rgba(10, 25, 47, 0.75); 
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  /* Borde sutil color cian/agua */
  border: 1px solid rgba(100, 255, 218, 0.15);
  box-shadow: 0 20px 50px rgba(0, 10, 30, 0.5);
  
  /* Estructura */
  padding: 35px 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px; /* Ancho ideal */
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

/* --- Cabecera del Form --- */
.ps-form-es-title {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
}

.ps-form-es-subtitle {
  margin: 8px 0 25px;
  color: #a8b2d1; /* Gris azulado claro */
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}

/* --- Grupos de Inputs --- */
.ps-form-es-group {
  position: relative;
  margin-bottom: 22px;
}

/* El Input en sí */
.ps-form-es-input {
  width: 100%;
  padding: 15px 15px 15px 45px; /* Espacio a la izq para el icono */
  
  /* Fondo translúcido */
  background: rgba(255, 255, 255, 0.03); 
  border: 1px solid rgba(136, 146, 176, 0.2);
  border-radius: 12px;
  color: #e6f1ff; /* Blanco agua */
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Efecto Focus (Al tocar el input) */
.ps-form-es-input:focus {
  border-color: #64ffda; /* Turquesa brillante */
  background: rgba(10, 25, 47, 0.9);
  box-shadow: 0 0 0 4px rgba(100, 255, 218, 0.1);
}

/* --- Etiquetas Flotantes (Labels) --- */
.ps-form-es-label {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  color: #8892b0;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Iconos (Emoji o SVG) */
.ps-form-es-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.5;
  filter: grayscale(1);
  transition: 0.3s;
  color: #ccd6f6;
}

/* --- Animación Label (Sube arriba) --- */
/* Se activa con Focus O si hay texto escrito */
.ps-form-es-input:focus ~ .ps-form-es-label,
.ps-form-es-input:not(:placeholder-shown) ~ .ps-form-es-label {
  top: 0;
  left: 12px;
  font-size: 12px;
  
  /* Truco: Fondo transparente con blur para adaptarse a cualquier foto */
  background: transparent;
  backdrop-filter: blur(10px);
  
  padding: 2px 8px;
  color: #64ffda; /* Turquesa */
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid rgba(100, 255, 218, 0.2);
}

.ps-form-es-input:focus ~ .ps-form-es-icon {
  opacity: 1;
  filter: grayscale(0);
  color: #64ffda;
}

/* --- Botón CTA (Gradiente Turquesa) --- */
.ps-form-es-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 50px;
  /* Gradiente Azul a Turquesa */
  background: linear-gradient(135deg, #112240, #00b4d8);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
}

.ps-form-es-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #183055, #00d4ff); /* Un poco más brillante */
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.ps-form-es-btn:active {
  transform: scale(0.98);
}

/* --- Footer Pequeño --- */
.ps-form-es-footer {
  text-align: center;
  font-size: 11px;
  color: #8892b0;
  margin-top: 20px;
  margin-bottom: 0;
}

/* SECCIÓN 2 */

/* --- Sección General --- */
.ps-sec2-es-section {
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  overflow: hidden; /* Evita scroll lateral */
}

.ps-sec2-es-container {
  display: flex;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  position: relative;
}

/* --- Galería (Izquierda) --- */
.ps-sec2-es-gallery {
  display: flex;
  gap: 20px;
  width: 55%;
}

.ps-sec2-es-col {
  flex: 1;
  height: 420px;
}

.ps-sec2-es-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(10, 25, 47, 0.1);
  transition: transform 0.3s;
}

.ps-sec2-es-col img:hover {
  transform: scale(1.02);
}

/* Efecto escalonado (Baja la segunda foto) */
.ps-sec2-es-col.ps-down {
  margin-top: 60px;
}

/* --- Tarjeta de Info (Derecha) --- */
.ps-sec2-es-card {
  width: 45%;
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  
  /* CLAVE: Margen negativo para superponerse a las fotos */
  margin-left: -80px; 
  z-index: 10;
  
  /* Sombra elegante */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.02);
}

/* Título */
.ps-sec2-es-title {
  font-family: 'Lexend', serif;
  font-size: 34px;
  line-height: 1;
  color: #0a192f; /* Azul Oscuro */
  margin-top: 0;
  margin-bottom: 30px;
}

/* Lista */
.ps-sec2-es-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-sec2-es-list li {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* Puntito decorativo (Turquesa) */
.ps-sec2-es-list li .ps-dot {
  width: 8px;
  height: 8px;
  background-color: #64ffda; /* Tu color de acento */
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.2); /* Pequeño brillo */
  flex-shrink: 0;
}

/* --- Responsive (Móvil) --- */
@media (max-width: 900px) {
  .ps-sec2-es-container {
    flex-direction: column;
    gap: 0;
  }
  
  .ps-sec2-es-gallery {
    width: 100%;
    margin-bottom: -40px; /* Para que la tarjeta suba un poco */
    padding: 0 10px;
  }
  
  .ps-sec2-es-col {
    height: 300px; /* Fotos más pequeñas en móvil */
  }
  
  .ps-sec2-es-card {
    width: 90%;
    margin-left: 0; /* Quitamos el solapamiento lateral */
    padding: 30px;
    text-align: left;
  }
  
  .ps-sec2-es-title {
    font-size: 26px;
  }
}

/* --- Configuración General de la Sección --- */
.ps-sec3-es-section {
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Cabecera con el H2 Principal */
.ps-sec3-es-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.ps-sec3-es-header h2 {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 38px;
  color: #0a192f; /* Azul oscuro */
  line-height: 1.3;
  /* 1. Separa un poquito cada letra */
  letter-spacing: -0.5px; 
  /* 2. Separa más las palabras entre sí (para tu problema de "espacios por frase") */
  word-spacing: 5px; 
	font-weight: 600;
  margin: 0;
}

/* Contenedor de las 3 Columnas */
.ps-sec3-es-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* Permite que bajen en móvil */
}

/* --- Estilos de Columna Individual --- */
.ps-sec3-es-col {
  flex: 1;
  min-width: 280px; /* Ancho mínimo antes de saltar de línea */
  max-width: 350px;
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ps-sec3-es-col:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Destacar la columna de Solución */
.solution-col {
  border: 2px solid rgba(100, 255, 218, 0.3); /* Borde Turquesa sutil */
  background: #f0fdff; /* Fondo ligeramente turquesa */
}

/* --- Iconos Hexagonales (La Clave del Diseño) --- */
.ps-hex-icon {
  width: 100px;
  height: 100px;
  /* Forma de Hexágono usando clip-path */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  font-size: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* Sombra suave */
}

/* Gradiente para Problemas (Naranja/Rojo) */
.problem-icon {
  background: linear-gradient(135deg, #ff8a65, #e53935);
  color: #fff;
}

/* Gradiente para Solución (Turquesa/Azul) */
.solution-icon {
  background: linear-gradient(135deg, #64ffda, #00b4d8);
  color: #fff;
}

/* --- Títulos de Columna (H3) --- */
.ps-col-title {
  font-family: 'Lexend', serif;
  font-size: 22px;
  color: #0a192f;
  margin: 0 0 25px;
}

.solution-title {
  color: #009688; /* Color turquesa más oscuro para el texto */
  font-weight: 700;
}

/* --- Listas de Contenido --- */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left; /* Texto alineado a la izquierda */
  width: 100%;
}

/* Lista de Problemas */
.ps-problem-list li {
  margin-bottom: 15px;
  color: #555;
  display: flex;
  align-items: flex-start;
	font-size: medium;
}

.ps-bullet {
  margin-right: 10px;
  font-size: 25px !important;
}

/* Texto descriptivo de la Solución */
.ps-solution-text {
  font-size: 15px;
  color: #0a192f;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Lista de Ventajas de la Solución */
.ps-solution-list li {
  margin-bottom: 12px;
  color: #0a192f;
  font-weight: 500;
  display: flex;
  align-items: center;
	font-size: medium;
}

.ps-check {
  color: #00b4d8; /* Turquesa brillante */
  font-weight: bold;
  margin-right: 10px;
  font-size: 19px;
}

/* --- Responsive (Móvil y Tablet) --- */
@media (max-width: 992px) {
  .ps-sec3-es-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .ps-sec3-es-col {
    width: 100%;
    max-width: 500px; /* Un poco más ancho en móvil */
  }

  .ps-sec3-es-header h2 {
    font-size: 30px;
  }
}

/* --- Sección con Fondo Fijo (Parallax) --- */
.ps-sec4-es-section {
  position: relative;
  /* FOTO DE FONDO: Usa una imagen oscura o de textura de agua nocturna */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* EFECTO PARALLAX */
  background-repeat: no-repeat;
  padding: 100px 20px;
  font-family: 'Lexend', sans-serif;
  overflow: hidden;
}

/* Overlay Oscuro (Para que el texto blanco se lea perfecto) */
.ps-sec4-es-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Contenedor Flex */
.ps-sec4-es-container {
  position: relative;
  z-index: 2; /* Encima del overlay */
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* --- Columna Izquierda (Textos) --- */
.ps-sec4-es-content {
  flex: 1;
  color: #ffffff;
}

.ps-sec4-es-title {
  font-family: 'Lexend', serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Lista de Bullets Personalizada */
.ps-sec4-es-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.ps-sec4-es-bullets li {
  margin-bottom: 18px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e6f1ff; /* Blanco suave */
  line-height: 1.5;
}

.ps-sec4-es-bullets strong {
  color: #64ffda; /* Turquesa para destacar palabras clave */
  font-weight: 600;
}

.ps-icon {
  color: #64ffda;
  font-size: 18px;
  margin-top: 2px; /* Alineación óptica */
}

/* Botón Secundario (Outline) */
.ps-sec4-es-btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #64ffda;
  color: #64ffda;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ps-sec4-es-btn-outline:hover {
  background: rgba(100, 255, 218, 0.1);
  box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
  transform: translateY(-2px);
}

/* --- Columna Derecha (Formulario) --- */
.ps-sec4-es-form-wrapper {
  flex: 1;
  max-width: 400px; /* Que no se haga gigante */
}

/* Estilos extra para el SELECT del formulario */
.ps-select {
  appearance: none; /* Quita la flecha fea por defecto del navegador */
  -webkit-appearance: none;
  cursor: pointer;
  background-color: rgba(17, 34, 64, 0.6); /* Fondo oscuro */
}

/* Flecha personalizada para el select */
.ps-select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #8892b0;
  pointer-events: none;
  font-size: 10px;
}

/* Corrección de color para las opciones del select (para que se lean en fondo blanco/gris del sistema) */
.ps-select option {
  background-color: #0a192f;
  color: #fff;
  padding: 10px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .ps-sec4-es-container {
    flex-direction: column;
    gap: 40px;
  }

  .ps-sec4-es-content {
    text-align: center;
  }

  .ps-sec4-es-bullets li {
    justify-content: flex-start; /* Mantiene bullets alineados a la izq en móvil para leer mejor */
    text-align: left;
  }
  
  .ps-sec4-es-form-wrapper {
    width: 100%;
  }
  
  /* Quitamos el parallax en móvil porque a veces da problemas de rendimiento */
  .ps-sec4-es-section {
    background-attachment: scroll; 
  }
}

/* --- Sección General --- */
.ps-sec5-es-section {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.ps-sec5-es-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Títulos H2 --- */
.ps-sec5-es-heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

/* Pequeña línea decorativa debajo del título */
.ps-sec5-es-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #64ffda; /* Turquesa */
  margin: 15px auto 0;
  border-radius: 2px;
}

/* --- Grid de Elementos --- */
.ps-sec5-es-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas en PC */
  gap: 30px;
  margin-bottom: 20px;
}

/* --- Item Individual (Sin fondo solido) --- */
.ps-sec5-es-item {
  padding: 30px 20px;
  transition: all 0.3s ease;
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,0.03); 
  background: transparent; 
}

/* Efecto Hover */
.ps-sec5-es-item:hover {
  transform: translateY(-5px);
  border-color: #64ffda;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- Iconos (Proceso) --- */
.ps-icon-circle {
  width: 70px;
  height: 70px;
  background: #f0fdfc; 
  color: #0a192f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  transition: 0.3s;
}

.ps-sec5-es-item:hover .ps-icon-circle {
  background: #64ffda;
  color: #fff;
}

/* Textos del Item */
.ps-sec5-es-item h3 {
  font-size: 18px;
  color: #CCF6FF;
  margin: 0 0 10px;
  font-weight: 600;
}

.ps-sec5-es-item p {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0;
}

/* --- Estilo Diferente para la Fila de "Hoteles/Viviendas" --- */
.ps-icon-minimal {
  font-size: 40px;
  margin-bottom: 15px;
  filter: grayscale(100%); 
  opacity: 0.7;
  transition: 0.3s;
}

.ps-sec5-es-item:hover .ps-icon-minimal {
  filter: grayscale(0%); 
  opacity: 1;
  transform: scale(1.1);
}

/* --- Separador entre bloques --- */
.ps-sec5-es-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  margin: 80px 0;
}

/* --- RESPONSIVE (Móvil y Tablet) --- */

/* 🚨 REGLA MAESTRA PARA TABLET Y MÓVIL 🚨 */
@media (max-width: 992px) {
  
  .ps-sec5-es-grid {
    /* FORZAMOS 2 COLUMNAS SIEMPRE */
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 10px !important;
  }

  .ps-sec5-es-item {
    padding: 15px 5px !important; /* Relleno compacto */
    min-height: 150px; /* Altura mínima para que queden parejos */
  }

  /* Ajustamos textos para que quepan bien */
  .ps-sec5-es-item h3 {
    font-size: 14px !important;
    margin-bottom: 5px !important;
    line-height: 1.2;
    padding: 0 5px;
  }
  
  .ps-sec5-es-item p {
    font-size: 11px !important;
    line-height: 1.3;
  }

  /* Iconos más pequeños */
  .ps-icon-circle {
    width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  .ps-icon-minimal {
    font-size: 28px !important;
    margin-bottom: 10px !important;
  }

  .ps-sec5-es-heading {
    font-size: 24px !important;
    margin-bottom: 30px !important;
  }
}

/* --- Sección General --- */
.ps-bento-es-section {
  padding: 80px 20px;
  font-family: 'Lexend', sans-serif;
}

/* --- GRID PRINCIPAL --- */
.ps-bento-es-grid {
  display: grid;
  /* 3 Columnas: Izq (1 parte) - Centro (1.3 partes) - Der (1 parte) */
  grid-template-columns: 1fr 1.3fr 1fr; 
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 500px; /* Altura fija para el efecto mosaico en escritorio */
}

/* --- Columnas --- */
.ps-bento-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* --- CARDS (Tarjetas) --- */
.ps-bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* 1. Tarjetas de Imagen */
.img-card {
  flex: 1; /* Ocupan todo el espacio disponible */
  position: relative;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-card:hover img {
  transform: scale(1.05); /* Zoom suave al pasar mouse */
}

/* Overlay oscuro sobre imágenes */
.ps-bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  z-index: 2;
  box-sizing: border-box; /* Para que el padding no rompa nada */
}

.ps-bento-overlay h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 2. Tarjeta de Texto (Central) */
.text-card {
  height: 100%;
  background: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Alineado a la izquierda */
  border: 1px solid rgba(0,0,0,0.05);
  box-sizing: border-box;
}

.ps-bento-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0D9DD6; /* Turquesa */
  background: rgba(100, 255, 218, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.text-card h2 {
font-family: 'Lexend', sans-serif;
  font-size: 32px;
  color: #0a192f;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.text-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

/* Botón del Bento */
.ps-bento-btn {
  padding: 14px 35px;
  background: #0a192f; /* Azul Oscuro */
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.ps-bento-btn:hover {
  background: #64ffda; /* Turquesa al hover */
  color: #0a192f;
}

/* Flechita decorativa en la foto grande */
.arrow-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 24px;
  opacity: 0.7;
}

/* --- RESPONSIVE (Móvil) --- */
@media (max-width: 900px) {
  .ps-bento-es-grid {
    display: flex;
    flex-direction: column; /* Se apilan uno debajo del otro */
    height: auto; /* Altura automática */
    gap: 20px;
  }
  
  /* Ordenamos para móvil: Primero Texto, luego fotos */
  .center-col {
    order: -1; 
  }

  .ps-bento-card {
    min-height: 250px; /* Altura mínima para las fotos en móvil */
  }
  
  .text-card {
    min-height: auto; /* El texto se ajusta a lo que tenga */
    padding: 30px;
    align-items: center; /* Centrado en móvil */
    text-align: center;
  }
  
  .text-card h2 {
    font-size: 26px;
  }
}


/* --- Sección General (Fondo Oscuro) --- */
.ps-faq-es-section {
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.ps-faq-es-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start; /* Para que el form no estire la columna izq */
}

/* --- COLUMNA IZQUIERDA --- */
.ps-faq-es-content {
  flex: 1;
}

.ps-section-tag {
  color: #64ffda;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.ps-faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 30px;
  color: #ffffff;
}

/* Caja de "Texto Honesto" */
.ps-honest-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #64ffda; /* Línea de acento turquesa */
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 30px;
}

.ps-honest-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccd6f6; /* Blanco grisáceo */
  margin: 0 0 10px 0;
}

.ps-honest-box p:last-child { margin-bottom: 0; }

/* CTA Flecha */
.ps-arrow-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: #64ffda;
  margin-bottom: 50px;
}

.ps-arrow-cta .arrow {
  font-size: 24px;
  animation: moveRight 1.5s infinite;
}

@keyframes moveRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* --- ACORDEÓN (FAQ) --- */
.ps-faq-subtitle {
  font-size: 24px;
  margin-bottom: 25px;
  color: #fff;
}

.ps-faq-item {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

/* El título de la pregunta (Clickable) */
.ps-faq-item summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: #e6f1ff;
  list-style: none; /* Quita el triángulo por defecto */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  transition: color 0.3s;
}

.ps-faq-item summary:hover {
  color: #64ffda;
}

/* Icono personalizado (+) usando CSS */
.ps-faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: #64ffda;
  font-weight: bold;
}

.ps-faq-item[open] summary::after {
  content: '-';
}

/* La respuesta */
.ps-faq-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #8892b0;
  line-height: 1.6;
  padding-right: 20px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- COLUMNA DERECHA (Formulario) --- */
.ps-faq-es-form {
  flex: 0 0 400px; /* Ancho fijo para el form */
  position: sticky; /* Opcional: Para que se quede quieto al bajar */
  top: 20px;
}

/* Ajustes específicos para el textarea dentro del form glass */
textarea.ps-form-es-input {
  resize: vertical;
  min-height: 80px;
  font-family: 'Poppins', sans-serif;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .ps-faq-es-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .ps-faq-es-form {
    width: 100%; /* El form ocupa todo el ancho en móvil */
    flex: 1;
    position: static;
  }
  
  .ps-faq-title {
    font-size: 28px;
  }
  
  .ps-arrow-cta {
    display: none; /* Ocultamos la flecha "mira a la derecha" en móvil */
  }
}

/* =========================================
   ANIMACIONES SCROLL (Elegancia Pura)
   ========================================= */

/* Estado inicial: Invisible y desplazado hacia abajo */
.reveal {
  opacity: 0;
  transform: translateY(50px); /* Se mueve 50px abajo */
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); /* Curva de velocidad "Lujo" */
  will-change: opacity, transform; /* Optimización para el navegador */
}

/* Estado activo: Visible y en su lugar (El JS agrega esta clase) */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Variantes de Animación --- */

/* Para textos largos o imágenes grandes (más lento) */
.reveal-slow {
  transition-duration: 1.5s;
}

/* Para que venga desde la izquierda (ideal para textos del Hero) */
.reveal-left {
  transform: translateX(-50px);
}
.reveal-left.active {
  transform: translateX(0);
}

/* Para que venga desde la derecha (ideal para el Formulario del Hero) */
.reveal-right {
  transform: translateX(50px);
}
.reveal-right.active {
  transform: translateX(0);
}

/* --- Retrasos (Staggering) --- */
/* Úsalos en las grillas para que aparezcan uno tras otro */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

