/* =========================================
   1. VARIABLES Y ESTILOS GENERALES
   ========================================= */
:root {
    --primary-green-dark: #1A2B18; 
    --primary-green-medium: #2E492A;
    --accent-lime: #A4D65E; /* Verde lima */
    --text-light: #ffffff;
    --bg-yellow-form: #F7C948; /* Amarillo formulario */
    --bg-light: #f4f4f4;
    --border-radius-lg: 24px;
    --border-radius-sm: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-green-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   2. BOTONES
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-green-medium);
    color: #fff;
    border: 1px solid var(--accent-lime);
}

.btn-primary:hover {
    background-color: var(--accent-lime);
    color: var(--primary-green-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #008f39;
    color: white;
    width: 100%; 
    padding: 15px;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: var(--primary-green-dark);
}

.btn-large {
    font-size: 1.1rem;
    padding: 15px 40px;
    width: 100%;
    max-width: 500px;
}

/* =========================================
   3. SECCIÓN HERO (PRINCIPAL)
   ========================================= */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('img/fondo-1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 20px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    padding: 20px 0;
}

.main-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.hero-content {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 40px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

/* Esto hace que el texto dentro del span sea delgado */
.hero-title span {
    font-weight: 300; /* Usamos 300 (Light) para un contraste elegante */
    display: block;   /* Opcional: Si quieres que baje a la siguiente línea */
}

/* --- ICONOS DE CARACTERÍSTICAS ---
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;  
    height: 80px; 
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.feature-item i {
    font-size: 2.5rem; 
    color: #ffffff;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
} */







/* =========================================
   4. SECCIÓN VIDEO Y TEXTO
   ========================================= */
.highlight-section {
    background-image: url('img/fondo-2.jpeg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

/* Esto hace que el texto dentro del span sea delgado */
.highlight-title span {
    font-weight: 300; /* Usamos 300 (Light) para un contraste elegante */
    display: block;   /* Opcional: Si quieres que baje a la siguiente línea */
}

/* --- VIDEO VERTICAL (LINK) --- */
.video-link-wrapper {
    display: block; /* Importante para que el link envuelva todo */
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center; /* Centra el video en su columna */
}

.video-container {
    width: 100%;
    /* AQUÍ HACEMOS QUE SEA VERTICAL Y MÁS ANGOSTO */
    max-width: 320px; /* Ancho típico de celular */
    aspect-ratio: 9 / 16; /* Fuerza la proporción vertical tipo TikTok */
    
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4); /* Sombra más fuerte para resaltar */
    border: 4px solid var(--accent-lime);
    background-color: #000;
    position: relative; /* Para el icono de play superpuesto si quisieras */
    transition: transform 0.3s ease;
}

/* Efecto al pasar el mouse por encima del video link */
.video-link-wrapper:hover .video-container {
    transform: scale(1.02); /* Se agranda un poquito */
    border-color: #fff;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que rellene todo el espacio sin bordes negros */
    display: block;
}

/* --- TARJETA TRANSLÚCIDA (AJUSTADA) --- */
.highlight-text-card {
    /* AQUÍ ESTÁ EL CAMBIO DE OPACIDAD: 0.4 es más transparente */
    background-color: rgba(26, 43, 24, 0.4); 
    backdrop-filter: blur(15px); /* Más desenfoque para que se lea bien el texto */
    
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.2); /* Borde un poco más visible */
    
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Sombra al texto para contraste */
}

/* LISTA */
.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.highlight-list li {
    background-color: rgba(46, 73, 42, 0.85); /* Los botones se mantienen legibles */
    border: 1px solid rgba(164, 214, 94, 0.4);
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.highlight-list li:hover {
    transform: translateX(5px);
    background-color: rgba(46, 73, 42, 1);
}

.list-icon-wrapper {
    background-color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.list-icon-wrapper i {
    color: var(--primary-green-dark);
    font-size: 1rem;
}

.highlight-list span {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 400;
}






/* =========================================
   5. SECCIÓN CONTACTO
   ========================================= */
.contact-section {
    position: relative;
    padding-top: 60px; /* Menos espacio arriba */
    padding-bottom: 0; 
    /* Fondo del paisaje */
    background-image: url('img/fondo-paisaje2.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Fixed a veces da problemas en móvil */
}

/* Capa oscura para que resalte el contenido */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Oscurecer un poco el fondo */
    z-index: 1;
}

/* Estilos base (Móvil) */
.contact-grid {
    display: flex;
    flex-direction: column; /* En móvil uno debajo del otro */
    gap: 30px;
    align-items: center;
    padding-bottom: 40px;
    z-index: 2;
    position: relative;
}

/* Ajuste de la imagen en móvil */
.contact-col-image {
    order: 2; /* En móvil, la foto va al medio o abajo */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}
.contact-col-image .person-image {
    max-width: 200px; /* Tamaño controlado en móvil */
    width: 100%;
    height: auto;
}

/* Ajuste del texto en móvil */
.contact-col-text {
    order: 1; /* Texto primero en móvil */
    text-align: center;
    width: 100%;
}
.contact-col-text h3 {
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Sombra para que se lea sobre el fondo */
}

/* Ajuste del formulario en móvil */
.contact-col-form {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* TARJETA DEL FORMULARIO */
.contact-form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.form-card {
    background-color: var(--bg-yellow-form); /* Tu amarillo #F7C948 */
    padding: 40px;
    border-radius: 30px; /* Bordes bien redondeados como en la imagen */
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: #000; /* Texto negro para contraste con amarillo */
    position: relative;
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #1A2B18;
}

.form-subtitle {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1A2B18;
}










.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.9);
    font-family: 'Poppins', sans-serif;
}

/* FOOTER */
.footer {
    background-color: var(--primary-green-dark);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
}

/* =========================================
   6. RESPONSIVE (PC / ESCRITORIO)
   ========================================= */
@media (min-width: 900px) {
    

    .hero-title { 
        font-size: 2.5rem;
        justify-content: flex-start;
        text-align: left;
        max-width: 450px;
        line-height: 1.1;
        margin-top: 150px;       
    }

    .hero-title span {
        display: inline !important; /* Obliga a que el texto fluya seguido */
        font-weight: 300; /* Mantiene la letra delgada */
    }
    
    .icon-circle { width: 100px; height: 100px; }
    .feature-item i { font-size: 3rem; }
    .feature-item { width: 130px; }

    /* VIDEO Y TEXTO (PC) */
    .highlight-grid {
        /* Ajustamos las columnas para que el video vertical no ocupe tanto espacio */
        grid-template-columns: 40% 60%; 
    }

    .highlight-text-card {
        flex-direction: row; 
        align-items: center;
        justify-content: space-between;
        padding: 50px;
    }

    .highlight-title {
        width: 45%;
        font-size: 2.5rem;
        text-align: left;
    }

    .highlight-list {
        width: 50%;
    }

/* --- CONTACTO (PC / ESCRITORIO) --- */
    .contact-section {
        padding-top: 100px; /* Más aire arriba en PC */
        min-height: 80vh;   /* Altura mínima para que luzca el paisaje */
        display: flex;
        align-items: flex-end; /* Alinea todo hacia abajo */
    }

    .c/* Estilos base (Móvil) */
.contact-grid {
    display: flex;
    flex-direction: column; /* En móvil uno debajo del otro */
    gap: 30px;
    align-items: center;
    padding-bottom: 40px;
    z-index: 2;
    position: relative;
}

/* Ajuste de la imagen en móvil */
.contact-col-image {
    order: 2; /* En móvil, la foto va al medio o abajo */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}
.contact-col-image .person-image {
    max-width: 200px; /* Tamaño controlado en móvil */
    width: 100%;
    height: auto;
}

/* Ajuste del texto en móvil */
.contact-col-text {
    order: 1; /* Texto primero en móvil */
    text-align: center;
    width: 100%;
}
.contact-col-text h3 {
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Sombra para que se lea sobre el fondo */
}

/* Ajuste del formulario en móvil */
.contact-col-form {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}
    
    .form-card {
        /* Hacemos la tarjeta un poco más grande en PC */
        padding: 50px;
        border-radius: 40px;
    }




}


/* --- ICONOS DE CARACTERÍSTICAS (OPCIÓN 3: SUPER LIMPIO) --- */
.hero-features {
    display: none;
    justify-content: flex-end; /* A la derecha */
    gap: 20px;
    margin-bottom: 50px;
    padding-right: 5%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px; /* Ancho mínimo */
    text-align: center;
    transition: transform 0.3s ease;
}

.icon-circle {
    width: 50px;
    height: 50px;
    /* QUITAMOS EL FONDO Y BORDE */
    background-color: transparent; 
    border: 2px solid #ffffff; /* Solo un borde blanco fino (opcional) o quítalo también */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.feature-item i {
    font-size: 1.5rem; 
    color: #ffffff;
}

.feature-item span {
    font-size: 0.7rem;
    font-weight: 400; /* Letra más fina */
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8); /* Sombra fuerte para leerse bien */
}





/* =========================================
   7. PÁGINA DE ÉXITO (Elegant Success)
   ========================================= */

.success-section {
    /* Ocupa toda la pantalla */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Mismo fondo que el Hero para continuidad */
    background-image: linear-gradient(rgba(26, 43, 24, 0.7), rgba(26, 43, 24, 0.8)), url('img/fondo-1.jpeg');
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.success-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    
    /* Pequeña animación de entrada */
    animation: slideUpFade 0.8s ease-out forwards;
}

/* Animación de entrada suave */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon-wrapper {
    margin-bottom: 25px;
}

.success-icon-wrapper i {
    font-size: 5rem;
    color: #008f39; /* Verde éxito */
    animation: pulseIcon 2s infinite;
}

/* Latido del corazón para el icono */
@keyframes pulseIcon {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 143, 57, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(0, 143, 57, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 143, 57, 0); }
}

.success-card h1 {
    color: var(--primary-green-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.success-message {
    color: #555;
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Botones específicos de esta página */
.success-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1rem;
    padding: 15px 30px;
    width: 100%;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    color: white;
}

.btn-link-simple {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.btn-link-simple:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}



/* =======================================================
   NUEVA SECCIÓN CONTACTO (AISLADA - TRIPLE COLUMNA)
   ======================================================= */

/* --- FONDO Y CONFIGURACIÓN GENERAL --- */
.contact-tri-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 0px;
    background-image: url('img/fondo-3.jpeg'); /* seccion 3 */
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Evita desbordes */
}

/* Capa oscura (Overlay) */
.contact-tri-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* --- GRID CONFIGURACIÓN BASE (MÓVIL) --- */
.contact-tri-grid {
    position: relative;
    z-index: 5; /* Por encima de la capa oscura */
    display: flex;
    flex-direction: column; /* Móvil: uno debajo de otro */
    align-items: center;
    gap: 40px;
}

/* 1. ESTILOS COLUMNA TEXTO */
.tri-col-text {
    order: 1; /* Primero en móvil */
    text-align: center;
    width: 100%;
}

.tri-title {
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.tri-highlight {
    color: var(--bg-yellow-form); /* Usa tu variable amarilla */
    display: block; /* Fuerza salto de línea si es necesario */
}

/* 2. ESTILOS COLUMNA IMAGEN */
.tri-col-img {
    order: 3; /* Segundo en móvil */
    display: none;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.tri-person-img {
    max-width: 280px; /* Tamaño móvil */
    height: auto;
    display: block;
}

/* 3. ESTILOS COLUMNA FORMULARIO */
.tri-col-form {
    order: 2; /* Tercero en móvil */
    width: 100%;
    display: flex;
    justify-content: center;
}

.tri-form-card {
    background-color: var(--bg-yellow-form);
    padding: 30px;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    color: #1A2B18;
    text-align: left;
}

.tri-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* =======================================================
   RESPONSIVE PC (PANTALLAS GRANDES > 1100px)
   Aquí ocurre la magia de ponerlos en fila
   ======================================================= */
@media (min-width: 1100px) {

    .contact-tri-section {
        padding-top: 80px;
        min-height: 700px; /* Altura fija para el diseño */
        display: flex;
        align-items: flex-end; /* Alinea contenido abajo */
    }

    .contact-tri-grid {
        display: grid;
        /* LA CLAVE: 3 COLUMNAS */
        /* 1fr (Texto) - auto (Imagen) - 1fr (Formulario) */
        grid-template-columns: 1fr auto 1fr;
        align-items: center; /* Centrado vertical del contenido */
        gap: 20px;
        width: 100%;
        max-width: 1300px; /* Ancho máximo permitido */
    }

    /* Ajuste Texto PC */
    .tri-col-text {
        text-align: left;
        margin-bottom: 50px; /* Subirlo un poco */
        padding-left: 20px;
    }
    .tri-title {
        font-size: 3.5rem; /* Texto gigante */
    }

    /* Ajuste Imagen PC */
    .tri-col-img {
        display: flex;
        height: 100%; /* Ocupa altura completa para alinearse abajo */
        position: relative;
        z-index: 1;
        /* Negativo margin-bottom para simular que sale de abajo si quieres */
    }
    .tri-person-img {
        max-width: 350px; /* Imagen grande */
        transform: scale(1.15); /* Efecto zoom */
        transform-origin: bottom center;
        filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
    }

    /* Ajuste Formulario PC */
    .tri-col-form {
        justify-content: flex-end; /* Pegado a la derecha */
        padding-right: 20px;
        position: relative;
        z-index: 10;
    }
    .tri-form-card {
        padding: 40px;
    }



    .hero-features {
        display: flex !important; /* <--- IMPORTANTE: Volver a mostrar en PC */
        justify-content: flex-end; /* Alinearlos a la derecha */
        gap: 20px;
        margin-bottom: 50px;
        padding-right: 5%;
    }
}






/* ================================
   BANNER AMARILLO (REPLICADO)
   ================================ */
.info-strip {
    background-color: var(--bg-yellow-form); /* #F7C948 */
    padding: 15px 0;
    width: 100%;
    overflow: visible; /* Importante para que los iconos no se corten */
}

.info-strip-grid {
    display: grid;
    /* Distribución exacta para dar espacio a la tarjeta central */
    grid-template-columns: 1.2fr 1.8fr 0.8fr; 
    align-items: center;
    gap: 20px;
}

/* --- COLUMNA 1: LISTA (IZQUIERDA) --- */
.info-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-left li {
    font-size: 0.8rem; /* Letra pequeña como la imagen */
    line-height: 1.3;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    color: var(--primary-green-dark);
    font-weight: 500;
}

.bullet-icon {
    font-size: 0.4rem; /* El punto es pequeño */
    margin-top: 5px;
    margin-right: 8px;
    color: var(--primary-green-dark);
}

/* --- COLUMNA 2: TARJETA BLANCA (CENTRO) --- */
.info-center {
    display: flex;
    justify-content: center;
}

.promo-card {
    background-color: #ffffff;
    border-radius: 15px; /* Bordes redondeados */
    padding: 10px 15px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 550px; /* Ancho máximo para que no se estire demasiado */
}

/* Parte Izquierda de la tarjeta (Precio) */
.promo-price {
    flex: 1;
    position: relative;
    padding-right: 15px;
}

.promo-text-group {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.small-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    text-align: right;
    line-height: 1.1;
}

.big-number {
    font-size: 2.8rem; /* S/350 Gigante */
    font-weight: 800;
    color: var(--primary-green-dark);
    letter-spacing: -1px;
}

.price-footer {
    font-size: 0.6rem;
    color: #666;
    margin-top: 2px;
    font-weight: 600;
    margin-left: auto; /* Alinear un poco a la derecha visualmente si se requiere */
}

/* Divisor Vertical */
.promo-divider {
    width: 2px;
    height: 50px;
    background-color: #eee;
    margin: 0 5px;
}

/* Parte Derecha de la tarjeta (Financiamiento) */
.promo-finance {
    flex: 1;
    padding-left: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.finance-text {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin: 0;
}

/* --- ICONOS FLOTANTES (EFECTO STICKER) --- */
.floating-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: white;
    border: 2px solid var(--primary-green-dark); /* Borde verde oscuro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.floating-icon i {
    color: var(--primary-green-dark);
    font-size: 1rem;
}

/* Posición exacta del icono superior (S/350) */
.icon-top {
    top: -40px; /* Sube el icono fuera de la tarjeta */
    left: 70%;
    transform: translateX(-50%);
}

/* Posición exacta del icono lateral (Financiamiento) */
.icon-right {
    right: -28px; /* Saca el icono a la derecha */
    top: 50%;
    transform: translateY(-50%);
    background-color: white; /* Asegurar fondo blanco */
}

/* --- COLUMNA 3: LOGO (DERECHA) --- */
.info-right {
    display: flex;
    justify-content: flex-end;
}

.brand-block {
    display: flex;
    align-items: flex-start; /* Alineación arriba */
    gap: 5px;
    color: var(--primary-green-dark);
}

.brand-text {
    text-align: right;
    line-height: 0.9;
}

.brand-text strong {
    font-size: 1.6rem;
    display: block;
    font-weight: 800;
}

.brand-text .brand-light {
    font-size: 1.2rem;
    font-weight: 300; /* Letra delgada */
}

.brand-arrow i {
    font-size: 2rem;
    transform: rotate(-45deg); /* Girar flecha para que apunte como el logo */
    margin-top: 5px;
}

/* ================================
   RESPONSIVE (ADAPTABILIDAD)
   ================================ */

/* TABLETS (Pantallas medianas) */
@media (max-width: 1100px) {
    .info-strip-grid {
        grid-template-columns: 1fr; /* Una sola columna */
        gap: 30px;
        padding: 20px;
    }

    .info-col {
        justify-content: center;
        text-align: center;
    }
    
    /* Alinear lista al centro en tablet */
    .info-left ul {
        display: inline-block;
        text-align: left;
    }

    /* Ajustar tarjeta central */
    .promo-card {
        max-width: 450px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .brand-block {
        justify-content: center;
    }
}

/* MÓVILES (Pantallas pequeñas) */
@media (max-width: 600px) {
    .promo-card {
        flex-direction: column; /* Apilar contenido de la tarjeta */
        gap: 20px;
        text-align: center;
    }

    .promo-divider {
        width: 80%;
        height: 1px; /* Línea horizontal en móvil */
        margin: 10px auto;
    }

    .promo-text-group {
        flex-direction: column;
        justify-content: center;
    }

    .small-label {
        text-align: center;
    }

    /* Ajuste de iconos flotantes en móvil */
    .icon-top {
        top: -30px; /* Más arriba */
    }

    .icon-right {
        position: static; /* Ya no flotante en móvil para no romper diseño */
        margin: 10px auto 0;
        transform: none;
    }
    
    .brand-text strong {
        font-size: 1.4rem;
    }
}





/* =========================================
   ESTILOS DEL SLIDER DE VIDEO (MÓVIL)
   ========================================= */

/* Contenedor principal ajustado */
.video-slider-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.video-slides-container {
    width: 100%;
    display: flex;
    justify-content: center;
    /* En móvil, usamos flex pero ocultaremos los items no activos */
}

/* En móvil, por defecto ocultamos todos los videos */
.video-container {
    display: none; 
    /* Mantenemos tus estilos originales aquí */
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 4px solid var(--accent-lime);
    background-color: #000;
    transition: transform 0.3s ease;
}

/* Solo mostramos el video que tenga la clase active-slide */
.video-container.active-slide {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0.5; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* --- BOTONES DE NAVEGACIÓN (FLECHAS) --- */
.slider-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* Copia y reemplaza esto en tu style.css */
.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Fondo Azul translúcido */
    background-color: rgba(20, 69, 143, 0.1); 
    /* Borde Azul sólido de tu marca */
    border: 2px solid var(--accent-lime); 
    color: var(--accent-lime); /* Icono azul */
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--accent-lime); /* Se llena de azul al pasar el mouse */
    color: #ffffff;
    box-shadow: 0 5px 15px var(--accent-lime);
    transform: translateY(-2px);
}

/* =========================================
   AJUSTES PARA ESCRITORIO (PC)
   ========================================= */
@media (min-width: 900px) {
    
    /* En escritorio, el contenedor de videos se muestra lado a lado */
    .video-slides-container {
        flex-direction: row;
        gap: 20px; /* Espacio entre videos */
    }

    /* Forzamos que AMBOS videos se vean siempre en escritorio */
    .video-container {
        display: block !important; 
    }

    /* Ocultamos las flechas porque en PC se ven ambos videos */
    .slider-controls {
        display: none;
    }

    .contact-message-left h2 {
        font-size: 2.5rem; 
        
        /* AQUÍ LO ACTIVAMOS SOLO PARA PC */
        margin-bottom: 80px; 
    }
}


