


:root {
    --negro: #0a0a0a;
    --teal: #067174;
    --verde: #43E483;
    --verde-wa: #25d366;
    --blanco: #ffffff;
    --fondo-pill: rgba(25, 25, 25, 0.75); 
}

html {
    scroll-behavior: smooth;
    /* Esto añade un margen para que el menú flotante no tape el título al llegar */
    scroll-padding-top: 100px; 
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--negro);
    color: var(--blanco);
    overflow-x: hidden;
}

/* --- CONTROL DE VISIBILIDAD --- */
.mobile-only { display: none !important; }
.pc-only { display: inline-block !important; }

@media (max-width: 1024px) {
    .mobile-only { display: flex !important; }
    .pc-only { display: none !important; }
}

#menu-check {
    display: none !important;
}

/* --- Navegación General --- */
.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
}

.nav-content {
    background: var(--fondo-pill);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 16px;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative; 
}


/* inicio logo verde y blanco */

.logo-link {
    display: inline-block;
    position: relative;
    line-height: 0; /* Elimina espacios extra debajo del link */
}

/* Ocultamos el logo verde por defecto */
.logo-hover {
    display: none;
}

/* Al pasar el mouse, ocultamos el blanco y mostramos el verde */
.logo-link:hover .logo-white {
    display: none;
}

.logo-link:hover .logo-hover {
    display: inline-block;
}

/* Asegura que el logo mantenga un tamaño consistente si es necesario */
.logo-img {
    max-height: 50px; /* Ajusta según el diseño de tu nav */
    width: auto;
    transition: all 0.3s ease;
}

/* fin logo verde y blanco */

.logo-img { height: 40px; width: auto; }

/* Menú PC */
/* Menú PC - Ajustado para nombres largos */
.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 15px; /* Reducido de 25px a 15px para ganar espacio horizontal */
}

.menu-item { 
    position: relative; 
    padding: 10px 0; 
}

.menu-item > a {
    text-decoration: none;
    color: var(--blanco);
    font-weight: 400; /* Un poco más de peso ayuda a leer en tamaños chicos */
    font-size: 0.95rem; /* Reducido de 1.4rem para que quepa todo el texto */
    transition: 0.3s;
    white-space: nowrap; /* Evita que el texto se rompa en dos líneas */
}

/* Ajuste extra para pantallas medianas (1025px a 1200px) */
@media (min-width: 1025px) and (max-width: 1250px) {
    .nav-menu { gap: 8px; }
    .menu-item > a { font-size: 0.85rem; }
    .nav-content { padding: 12px 15px; }
}

.nav-menu a:hover { color: var(--verde) !important; }

/* inicio complemento menu en cascada */

/* --- NAVEGACIÓN V3 RESPONSIVA (PC Y MÓVIL) --- */

.column-nested-v3 { 
    width: 100%; 
}

.nav-v3 { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.item-v3 { 
    position: relative; 
    background: rgba(255,255,255,0.03);
    margin-bottom: 5px;
    border-radius: 4px;
}

.trigger-v3 {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 15px !important;
    color: white !important;
    text-decoration: none;
    width: 100%;
}

/* CONTENIDO (SUBMENÚ) */
.content-v3 {
    display: none;
    background: #0f0f0f;
    min-width: 250px;
    z-index: 9999;
}

/* --- ESTILOS SOLO PARA PC (Pantallas grandes) --- */
@media (min-width: 1025px) {
    .content-v3 {
        position: absolute;
        left: 100%; /* Cascada a la derecha */
        top: 0;
        border-left: 3px solid var(--verde);
        box-shadow: 15px 0 30px rgba(0,0,0,0.5);
    }

    /* Puente invisible para que no se cierre al mover el mouse */
    .item-v3::after {
        content: "";
        position: absolute;
        right: -15px;
        top: 0;
        width: 15px;
        height: 100%;
    }

    .item-v3:hover > .content-v3 {
        display: block !important;
    }
    
    .item-v3:hover > .trigger-v3 {
        color: var(--verde) !important;
        background: rgba(67, 228, 131, 0.1);
    }
}

/* --- ESTILOS SOLO PARA MÓVIL (Pantallas pequeñas) --- */
@media (max-width: 1024px) {
    .content-v3 {
        position: static; /* Reset de posición: vuelve al flujo vertical */
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(67, 228, 131, 0.2);
        background: rgba(0,0,0,0.3);
    }

    /* Clase que activa el JS al hacer click */
    .item-v3.active-v3 .content-v3 {
        display: block !important;
    }

    .item-v3.active-v3 .arrow-v3 {
        transform: rotate(180deg);
        color: var(--verde);
    }

    .trigger-v3 {
        font-size: 1.1rem; /* Más fácil de tocar */
    }
}

/* --- RESET Y ESTILOS BASE V3 --- */
.column-nested-v3 { width: 100%; }
.nav-v3 { list-style: none; padding: 0; margin: 0; }
.item-v3 { position: relative; margin-bottom: 5px; background: rgba(255,255,255,0.05); border-radius: 4px; }
.trigger-v3 { display: flex !important; justify-content: space-between; padding: 15px !important; color: white !important; width: 100%; text-decoration: none; }
.content-v3 { display: none; background: #000; }
.content-v3 a { display: block; padding: 10px 25px !important; font-size: 0.9rem !important; color: #ccc !important; }

/* --- COMPORTAMIENTO PC (DESKTOP) --- */
@media (min-width: 1025px) {
    .item-v3:hover > .content-v3 {
        display: block !important;
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 250px;
        border-left: 3px solid var(--verde);
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    }
    .item-v3:hover > .trigger-wrapper .trigger-v3 { color: var(--verde) !important; }
}

/* --- COMPORTAMIENTO MÓVIL (TABLET/PHONE) --- */
@media (max-width: 1024px) {
    .content-v3 {
        position: relative !important; /* IMPORTANTE: Para que empuje hacia abajo */
        left: 0 !important;
        width: 100%;
        border-top: 1px solid rgba(67, 228, 131, 0.2);
    }

    /* Clase que pondrá el JS al hacer click */
    .item-v3.is-open .content-v3 {
        display: block !important;
    }

    .item-v3.is-open .arrow-v3 {
        transform: rotate(180deg);
        color: var(--verde);
    }
}

/* fin complemento menu en cascada */



/* --- DROPDOWN LOGIC --- */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    padding-top: 20px;
    z-index: 1001;
    min-width: max-content; 
}

@media (min-width: 1025px) {
    .menu-item.has-submenu:hover .dropdown { display: block; }
    
    .mega-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        /* CAMBIO: Ancho adaptable en lugar de 90vw para evitar espacio sobrante */
        width: max-content; 
        max-width: 1200px;
    }
}

.dropdown-inner {
    background: rgba(10, 10, 10, 0.98);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    /* CAMBIO: Reducción del espacio entre columnas */
    gap: 30px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* CAMBIO: Las columnas ya no se estiran a la fuerza */
.column { flex: 0 1 auto; } 

.column-title { 
    color: var(--verde); 
    font-weight: 900; 
    font-size: 0.85rem; 
    margin-bottom: 15px; 
    display: block;
    text-transform: uppercase;
}

.dropdown a { 
    color: #fff; 
    text-decoration: none; 
    display: block; 
    padding: 6px 0; 
    font-size: 1rem; 
    transition: 0.3s; 
    white-space: nowrap; 
}

/* --- RESPONSIVE MÓVIL --- */
@media (max-width: 1024px) {
    .nav-content { padding: 10px 15px; }

    .logo { 
        order: 2; 
        margin: 0 auto; 
    }

    .menu-hamburguer { 
        order: 1; 
        flex-direction: column; 
        gap: 5px; 
        cursor: pointer; 
        display: flex; 
        width: 45px; 
    }
    
    .menu-hamburguer span { width: 25px; height: 3px; background: white; border-radius: 2px; }

    .btn-whatsapp-mobile {
        order: 3; 
        background: var(--verde-wa);
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        text-decoration: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--negro);
        flex-direction: column;
        padding: 20px;
        max-height: 70vh;
        overflow-y: auto;
    }

    #menu-check:checked ~ .nav-menu { display: flex; }

    .dropdown { 
        position: relative; 
        left: 0; 
        transform: none; 
        width: 100%; 
        padding-top: 0;
        min-width: 100%;
    }

    .dropdown-inner { 
        flex-direction: column; 
        background: transparent; 
        border: none; 
        padding: 10px 0 10px 20px; 
    }

    .dropdown a {
        white-space: normal; 
    }
    
    .mega-menu { width: 100%; }
}

/* Botón Contacto PC */
.btn-contact {
    background: var(--blanco);
    color: var(--negro);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 900;
    order: 3;
}

/* Slider Simple */
/* --- SLIDER CON CAJA DE TEXTO --- */
.slider {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%; /* Reducido un poco para dar más espacio */
    background: radial-gradient(circle at center right, #063d3f 0%, #0a0a0a 85%);
}

.slider .content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Separa el título de la caja */
    align-items: center;
    gap: 40px;
}

/* Estilos de los Títulos */
.content h1.thin { 
    font-weight: 100; 
    font-size: clamp(2rem, 6vw, 4rem); 
}

.content h1.black { 
    font-weight: 900; 
    font-size: clamp(3rem, 8vw, 6rem); 
    line-height: 0.9; 
}

/* Estilos de la Caja de Información (Global Investments style) */
.info-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.info-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 900;
}

.mini-logo {
    height: 25px;
    width: auto;
}

.separator {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.description {
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--verde); /* Usamos tu variable de color verde */
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more:hover {
    letter-spacing: 1.5px;
    color: var(--blanco);
}

.learn-more .arrow {
    margin-left: 5px;
    font-size: 1.2rem;
}

/* --- AJUSTE RESPONSIVE --- */
@media (max-width: 1024px) {
    .slider .content {
        flex-direction: column; /* Se apilan en móvil */
        justify-content: center;
        text-align: center;
        padding-top: 80px;
    }

    .info-box {
        max-width: 100%;
        padding: 25px;
    }

    .info-header {
        flex-direction: column;
        gap: 15px;
    }
}


/* Inicio slider vertical */

/* inicio video slider */
/* --- VIDEO DE FONDO --- */
.slider {
    position: relative;
    overflow: hidden;
    background: black; /* Color de respaldo mientras carga el video */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra todo el fondo sin deformarse */
    opacity: 0.6; /* Ajusta esto para que el texto sea más legible */
}

/* Capa extra para asegurar legibilidad (overlay) */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.8), transparent);
    z-index: 2;
}

/* --- ANIMACIÓN DE DESENFOQUE (FOCUS) --- */
.animate-focus {
    animation: focusIn 1.5s ease-out forwards;
    opacity: 0; /* Inicia invisible */
}

@keyframes focusIn {
    0% {
        filter: blur(20px);
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        transform: scale(1);
        opacity: 1;
    }
}

/* Estado inicial de los elementos que se revelarán */
.reveal-focus {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.95);
    transition: all 1.5s ease-out; /* Controla la suavidad del efecto */
    will-change: filter, opacity, transform;
}

/* Clase que aplicará el JavaScript cuando el usuario llegue a la sección */
.reveal-focus.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
}



/* Asegurar que el contenido esté por encima del video */
.slider .content {
    position: relative;
    z-index: 10;
}

/* fin video slider */
/* --- SECCIÓN WEALTH MANAGEMENT CON FONDO VERDE SLIDER --- */
.wealth-management {
    position: relative;
    padding: 100px 5%;
    /* Fondo idéntico al slider para continuidad visual */
    background: radial-gradient(circle at center right, #063d3f 0%, #0a0a0a 85%);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow {
    color: #43E483; /* Verde neón */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 900;
}

.glitch-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin: 15px 0;
    text-transform: uppercase;
}

.subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- GRID Y TARJETAS EFECTO CRISTAL --- */
.wealth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.wealth-card {
    /* Fondo semi-transparente para ver el verde del fondo */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.wealth-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #43E483;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Tarjeta destacada con un brillo verde más fuerte */
.wealth-card.highlighted {
    background: rgba(67, 228, 131, 0.08);
    border-color: rgba(67, 228, 131, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: #43E483;
    margin-bottom: 20px;
}

.wealth-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.wealth-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.card-link {
    color: #43E483;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* --- BANNER DE ESTADÍSTICAS --- */
.performance-banner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
}

.stat-item .label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.stat-item .value {
    font-size: 1.8rem;
    font-weight: 900;
}

.stat-item .positive {
    color: #43E483;
}

@media (max-width: 768px) {
    .performance-banner { flex-direction: column; gap: 20px; }
}

/* fin slider vertical */


/* semblanza */
/* --- ESTILOS SECCIÓN SEMBLANZA --- */

.semblanza-section {
    position: relative;
    padding: 100px 5%;
    background-color: var(--negro);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container-semblanza {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.semblanza-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Manejo de la imagen rectangular alta */
.semblanza-image {
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: var(--fondo-pill);
    /* Ajuste para la proporción original 2340x4094 */
    aspect-ratio: 2340 / 4094;
    max-height: 700px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene la proporción sin deformar */
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--verde);
    color: var(--negro);
    padding: 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    line-height: 1;
    transform: rotate(-3deg);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
}

/* Columna de Contenido */
.semblanza-logo {
    max-width: 180px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.subtitle-pill {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(67, 228, 131, 0.1);
    color: var(--verde);
    border: 1px solid var(--verde);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title-main {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--blanco), var(--verde));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.bio-text p.highlight {
    font-size: 1.4rem;
    color: var(--blanco);
    font-weight: 500;
    border-left: 4px solid var(--verde);
    padding-left: 20px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .semblanza-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    .bio-text p.highlight {
        border-left: none;
        border-top: 2px solid var(--verde);
        padding-left: 0;
        padding-top: 20px;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .experience-badge {
        right: 10%;
    }
}

/* fin semblabnza */

/* inicio slider 3 pero con efecto 3d */


/* fin slider 3 peromcon efecto 3d

/* inicio slider 3 */
:root {
    --bg-deep-blue: #0b1437;
    --accent-orange: #ff6b4a;
    --text-gray: #b0b8d1;
    --light-blue: rgba(67, 228, 131, 0.2);
}

.logistics-section {
    position: relative;
    background-color: var(--bg-deep-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
    color: white;
    font-family: 'Helvetica', Arial, sans-serif;
}

/* --- LUCES ANIMADAS DEL FONDO --- */
/* --- ANIMACIÓN LÍQUIDA PARA LUCES DE FONDO --- */

.bg-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* El desenfoque crea la textura de líquido */
    opacity: 0.4;
    z-index: 1;
    mix-blend-mode: screen; /* Mezcla las luces entre sí de forma orgánica */
    pointer-events: none;
}

/* Luz 1: Movimiento circular amplio */
.light-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--verde) 0%, transparent 70%);
    top: -10%;
    left: 10%;
    animation: liquidMove1 15s infinite alternate ease-in-out;
}

/* Luz 2: Movimiento horizontal y pulsación */
.light-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: liquidMove2 20s infinite alternate ease-in-out;
}

/* Luz 3: Movimiento vertical rápido */
.light-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--verde-wa) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation: liquidMove3 12s infinite alternate ease-in-out;
}

/* Definición de los trayectos (Keyframes) */

@keyframes liquidMove1 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.2); }
    66% { transform: translate(-50px, 150px) scale(0.9); }
    100% { transform: translate(50px, -50px) scale(1.1); }
}

@keyframes liquidMove2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-150px, -100px) rotate(180deg) scale(1.3); }
    100% { transform: translate(50px, 50px) rotate(360deg) scale(1); }
}

@keyframes liquidMove3 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(150px, 200px) scale(0.8); }
    100% { transform: translate(-100px, -150px) scale(1.2); }
}

/* --- CONTENIDO --- */
.content-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    width: 100%;
}

.left-col .title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
}

.left-col .description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    background-color: #43E483; /* Verde solicitado */
    color: #0b1437; /* Cambiado a azul oscuro para mejor contraste y legibilidad */
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-read-more:hover {
    transform: scale(1.05);
    /* Sombra con el mismo tono verde pero con transparencia */
    box-shadow: 0 10px 20px rgba(67, 228, 131, 0.4); 
    background-color: #36c76f; /* Un verde ligeramente más oscuro al hacer hover */
}

/* --- COLUMNA DERECHA --- */
.right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-wrapper {
    position: relative; /* Obligatorio para que la imagen se centre respecto a este cuadro */
    min-height: 300px;  /* Ajusta esta altura según necesites */
    display: flex;      /* Ayuda a mantener el flujo, aunque la imagen sea absoluta */
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.dashboard-img {
    width: 100%; /* El tamaño que solicitaste anteriormente */
    border-radius: 5px;
    
    /* CENTRADO ABSOLUTO */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: block;
}

.secondary-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.link-simple {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
}

.section-number {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 0.9rem;
    color: var(--text-gray);
    opacity: 0.5;
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
    .content-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .left-col .title { font-size: 2.5rem; }
}

/* fin slider 3  */


/* inicio slider 4 */

.contact-section {
        position: relative;
        padding: 120px 5%;
        background-color: #0b1437;
        display: flex;
        justify-content: center;
        overflow: hidden;
        color: white;
        font-family: 'Helvetica', Arial, sans-serif;
    }

    .form-container {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 800px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 60px;
        border-radius: 24px;
    }

    .form-title { font-size: 2.5rem; margin: 10px 0; }
    .eyebrow { color: #43E483; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }

    .revolv-form { display: flex; flex-direction: column; gap: 25px; margin-top: 30px; }
    .input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .input-group { display: flex; flex-direction: column; gap: 8px; }
    .input-group label { color: #43E483; font-size: 0.85rem; font-weight: bold; }

    /* Estilo para Inputs y Selects */
    .revolv-form input, 
    .revolv-form select,
    .iti { width: 100%; }

    .revolv-form input, 
    .revolv-form select {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
        color: #fff;
        font-size: 1rem;
        transition: 0.3s;
    }

    /* Ajuste específico para la librería de teléfono */
    .iti__country-list { background-color: #0b1437; border: 1px solid rgba(255,255,255,0.2); }
    .iti__country-name, .iti__dial-code { color: white; }
    .iti__flag-container:hover .iti__selected-flag { background: rgba(255,255,255,0.1); }

    .revolv-form input:focus {
        outline: none;
        border-color: #43E483;
        background: rgba(67, 228, 131, 0.05);
    }

    .btn-submit {
        background-color: #43E483;
        color: #0b1437;
        border: none;
        padding: 20px;
        border-radius: 8px;
        font-weight: 900;
        cursor: pointer;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(67, 228, 131, 0.3);
    }

    @media (max-width: 768px) {
        .input-row { grid-template-columns: 1fr; }
        .form-container { padding: 30px; }
    }

/* fin slider 4 */



/* footer inicoo */


:root {
    --verde-oscuro: #0a2a1a; /* Fondo profundo */
    --verde-medio: #145c3b;  /* Hover */
    --verde-brillante: #2ecc71; /* Acentos y WhatsApp */
    --blanco-suave: #e0e0e0;
}

.main-footer {
    background-color: var(--verde-oscuro);
    color: white;
    padding: 60px 20px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--verde-brillante);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--blanco-suave);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--verde-brillante);
}

.footer-hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 15px 0;
}

.contact-col {
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.btn-whatsapp-footer {
    display: inline-block;
    background-color: var(--verde-brillante);
    color: var(--verde-oscuro);
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-whatsapp-footer:hover {
    transform: translateY(-3px);
    background-color: #27ae60;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #888;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .sitemap {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* color slider secundarios */

/* --- ESTILO PARA PÁGINAS AUXILIARES (DEGRADADO HORIZONTAL) --- */

.slider.secondary-page {
    /* Degradado horizontal: empieza en teal oscuro y termina en negro profundo */
    background: linear-gradient(90deg, 
        var(--teal) 0%, 
        #044d4f 40%, 
        var(--negro) 100%
    ) !important;
    
    position: relative;
    overflow: hidden;
    min-height: 70vh; /* Ajustamos la altura para que luzca mejor en PC */
    display: flex;
    align-items: center;
}

/* Añadimos un resplandor verde a la izquierda para conectar con el estilo de la web */
.slider.secondary-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at center, rgba(67, 228, 131, 0.15), transparent 70%);
    pointer-events: none;
}

/* Aseguramos que el contenido sea legible sobre el degradado */
.slider.secondary-page .content {
    z-index: 2;
    width: 100%;
}