

/* ============================================
   PALETA DE COLORES — AZUL MARINO / DORADO
   ============================================ */
:root {
    --negro: #060e1e;
    --azul-oscuro: #0d1f3c;
    --azul-medio: #132850;
    --azul-claro: #1a3a6e;
    --dorado: #c9a84c;
    --dorado-claro: #e8c87a;
    --dorado-oscuro: #a07830;
    --teal: #132850;
    --verde: #c9a84c;
    --verde-wa: #25d366;
    --blanco: #ffffff;
    --fondo-pill: rgba(13, 31, 60, 0.85);
    --text-gray: #a0aec0;
    --bg-deep-blue: #0d1f3c;
    --accent-orange: #c9a84c;
    --light-blue: rgba(201, 168, 76, 0.15);
    --verde-oscuro: #060e1e;
    --verde-medio: #132850;
    --verde-brillante: #c9a84c;
    --blanco-suave: #e0e0e0;
}

html {
    scroll-behavior: smooth;
    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(201, 168, 76, 0.2);
    position: relative;
}

/* inicio logo */
.logo-link {
    display: inline-block;
    position: relative;
    line-height: 0;
}

.logo-hover { display: none; }

.logo-link:hover .logo-white { display: none; }
.logo-link:hover .logo-hover { display: inline-block; }

.logo-img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img { height: 40px; width: auto; }

/* Menú PC */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    flex-wrap: nowrap;
    align-items: center;
}

.menu-item {
    position: relative;
    padding: 8px 0;
}

.menu-item > a {
    text-decoration: none;
    color: var(--blanco);
    font-weight: 500;
    font-size: 0.82rem;
    transition: 0.3s;
    white-space: nowrap;
    padding: 6px 8px;
    border-radius: 6px;
    letter-spacing: .2px;
}

.menu-item > a:hover {
    background: rgba(201,168,76,.1);
}

/* Título de columna en dropdowns */
.nav-col-title {
    color: var(--dorado);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
    margin-top: 4px;
}

@media (min-width: 1025px) and (max-width: 1350px) {
    .nav-menu { gap: 2px; }
    .menu-item > a { font-size: 0.76rem; padding: 5px 6px; }
    .nav-content { padding: 10px 12px; }
}

@media (min-width: 1351px) and (max-width: 1500px) {
    .nav-menu { gap: 4px; }
    .menu-item > a { font-size: 0.8rem; padding: 6px 7px; }
}

.nav-menu a:hover { color: var(--dorado) !important; }

/* --- NAVEGACIÓN V3 --- */
.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%;
}

.content-v3 {
    display: none;
    background: #070f1e;
    min-width: 250px;
    z-index: 9999;
}

@media (min-width: 1025px) {
    .content-v3 {
        position: absolute;
        left: 100%;
        top: 0;
        border-left: 3px solid var(--dorado);
        box-shadow: 15px 0 30px rgba(0,0,0,0.5);
    }
    .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(--dorado) !important;
        background: rgba(201, 168, 76, 0.1);
    }
}

@media (max-width: 1024px) {
    .content-v3 {
        position: static;
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(201, 168, 76, 0.2);
        background: rgba(0,0,0,0.3);
    }
    .item-v3.active-v3 .content-v3 { display: block !important; }
    .item-v3.active-v3 .arrow-v3 {
        transform: rotate(180deg);
        color: var(--dorado);
    }
    .trigger-v3 { font-size: 1.1rem; }
}

/* Reset 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: #070f1e; }
.content-v3 a { display: block; padding: 10px 25px !important; font-size: 0.9rem !important; color: #ccc !important; }

@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(--dorado);
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    }
    .item-v3:hover > .trigger-wrapper .trigger-v3 { color: var(--dorado) !important; }
}

@media (max-width: 1024px) {
    .content-v3 {
        position: relative !important;
        left: 0 !important;
        width: 100%;
        border-top: 1px solid rgba(201, 168, 76, 0.2);
    }
    .item-v3.is-open .content-v3 { display: block !important; }
    .item-v3.is-open .arrow-v3 {
        transform: rotate(180deg);
        color: var(--dorado);
    }
}

/* --- 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%);
        width: max-content;
        max-width: 1200px;
    }
}

.dropdown-inner {
    background: rgba(7, 15, 30, 0.98);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.column { flex: 0 1 auto; }

.column-title {
    color: var(--dorado);
    font-weight: 900;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}

.dropdown a {
    color: #c8d8ee;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-size: .9rem;
    transition: 0.3s;
    white-space: nowrap;
}

.dropdown a:hover { color: var(--dorado) !important; }

/* Arrow indicator in menu items */
.menu-item > a .arrow {
    font-size: .6rem;
    opacity: .7;
    margin-left: 3px;
    vertical-align: middle;
    display: inline-block;
    transition: transform .2s;
}
.menu-item.has-submenu:hover > a .arrow { transform: rotate(180deg); color: var(--dorado); }

/* --- 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: #0a1828;
        flex-direction: column;
        padding: 12px 16px 20px;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 0 0 16px 16px;
        border-top: 1px solid rgba(201,168,76,.15);
        gap: 0;
    }
    #menu-check:checked ~ .nav-menu { display: flex; }

    /* Mobile menu items */
    .nav-menu > .menu-item { padding: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
    .nav-menu > .menu-item:last-child { border-bottom: none; }
    .menu-item > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 6px;
        font-size: .95rem;
        font-weight: 600;
        color: #e0eaf7;
        border-radius: 0;
    }
    .menu-item > a .arrow { font-size: .7rem; }

    /* Mobile: show dropdown on checkbox toggle via JS, not hover */
    .dropdown {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        padding-top: 0;
        min-width: 100%;
    }
    .dropdown-inner {
        flex-direction: column;
        gap: 0;
        background: rgba(255,255,255,.03);
        border: none;
        border-radius: 8px;
        padding: 8px 12px 12px;
        margin-bottom: 6px;
        box-shadow: none;
    }
    .dropdown a {
        white-space: normal;
        font-size: .88rem;
        padding: 7px 4px;
        color: #a8bdd8;
        border-bottom: 1px solid rgba(255,255,255,.04);
    }
    .dropdown a:last-child { border-bottom: none; }
    .nav-col-title { font-size: .65rem; margin-top: 10px; margin-bottom: 4px; }
    .mega-menu { width: 100%; }
}

/* Contenedor derecho del nav (ícono WA + chip usuario) */
.nav-right {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .nav-right { display: none; }
}

/* Ícono WhatsApp en nav (PC) */
.btn-wa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    font-size: 1.6rem;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}
.btn-wa-icon:hover {
    color: #1ebe5d;
    transform: scale(1.15);
}

/* --- SLIDER HERO --- */
.slider {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: radial-gradient(circle at center right, #1a3a6e 0%, #060e1e 85%);
    position: relative;
    overflow: hidden;
}

.slider .content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.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;
}

.info-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    color: white;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.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(201, 168, 76, 0.3);
    margin: 20px 0;
}

.description {
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--dorado);
    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(--dorado-claro);
}

.learn-more .arrow {
    margin-left: 5px;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .slider .content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 80px;
    }
    .info-box { max-width: 100%; padding: 25px; }
    .info-header { flex-direction: column; gap: 15px; }
}

/* --- VIDEO DE FONDO --- */
.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;
    opacity: 0.5;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 14, 30, 0.85), rgba(6, 14, 30, 0.4));
    z-index: 2;
}

/* --- ANIMACIONES --- */
.animate-focus {
    animation: focusIn 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes focusIn {
    0% { filter: blur(20px); transform: scale(0.95); opacity: 0; }
    100% { filter: blur(0px); transform: scale(1); opacity: 1; }
}

.reveal-focus {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.95);
    transition: all 1.5s ease-out;
    will-change: filter, opacity, transform;
}

.reveal-focus.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
}

.slider .content {
    position: relative;
    z-index: 10;
}

/* --- BOTÓN LOGIN EN SLIDER --- */
.btn-slider-login {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.2rem;
    background: transparent;
    border: 1.5px solid var(--dorado);
    color: var(--dorado);
    padding: .55rem 1.4rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s;
    animation-delay: .4s;
}
.btn-slider-login:hover {
    background: var(--dorado);
    color: var(--negro) !important;
}

/* --- SECCIÓN WEALTH MANAGEMENT (PERFILES) --- */
.wealth-management {
    position: relative;
    padding: 100px 5%;
    background: radial-gradient(circle at center right, #1a3a6e 0%, #060e1e 85%);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow {
    color: var(--dorado);
    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;
}

.wealth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.wealth-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.4s ease;
}

.wealth-card:hover {
    transform: translateY(-10px);
    background: rgba(201, 168, 76, 0.06);
    border-color: var(--dorado);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.wealth-card.highlighted {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.35);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--dorado);
    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: var(--dorado);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.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(201, 168, 76, 0.1);
    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: var(--dorado);
}

@media (max-width: 768px) {
    .performance-banner { flex-direction: column; gap: 20px; }
}

/* --- 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;
}

.semblanza-image { position: relative; }

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    background: var(--fondo-pill);
    aspect-ratio: 2340 / 4094;
    max-height: 700px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dorado);
    color: var(--azul-oscuro);
    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);
    font-weight: 900;
}

.semblanza-logo {
    max-width: 180px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.subtitle-pill {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--dorado);
    border: 1px solid var(--dorado);
    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(--dorado));
    -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(--dorado);
    padding-left: 20px;
}

.bio-text p.hook-cta {
    font-size: 1.1rem;
    color: var(--dorado-claro);
    font-weight: 600;
    font-style: italic;
    margin-top: 10px;
}

@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(--dorado);
        padding-left: 0;
        padding-top: 20px;
    }
    .title-main { font-size: 2.5rem; }
    .experience-badge { right: 10%; }
}

/* --- SECCIÓN NOSOTROS (logistics-section) --- */
.logistics-section {
    position: relative;
    background: linear-gradient(135deg, #0d1f3c 0%, #060e1e 60%, #0d1f3c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
    color: white;
    font-family: 'Roboto', Arial, sans-serif;
}

.bg-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 1;
    mix-blend-mode: screen;
    pointer-events: none;
}

.light-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.5) 0%, transparent 70%);
    top: -10%;
    left: 10%;
    animation: liquidMove1 15s infinite alternate ease-in-out;
}

.light-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 58, 110, 0.8) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: liquidMove2 20s infinite alternate ease-in-out;
}

.light-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.3) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation: liquidMove3 12s infinite alternate ease-in-out;
}

@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); }
}

.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;
    gap: 10px;
    background-color: var(--dorado);
    color: var(--azul-oscuro);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-read-more:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.4);
    background-color: var(--dorado-claro);
}

.right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.dashboard-img {
    width: 100%;
    border-radius: 5px;
    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: var(--dorado);
    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;
}

@media (max-width: 1024px) {
    .content-container { grid-template-columns: 1fr; text-align: left; }
    .left-col .title { font-size: 2.5rem; }
}

/* --- CONTACTO --- */
.contact-section {
    position: relative;
    padding: 120px 5%;
    background-color: var(--azul-oscuro);
    display: flex;
    justify-content: center;
    overflow: hidden;
    color: white;
    font-family: 'Roboto', 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(201, 168, 76, 0.2);
    padding: 60px;
    border-radius: 24px;
}

.form-title { font-size: 2.5rem; margin: 10px 0; }
.form-header .eyebrow { color: var(--dorado); 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: var(--dorado); font-size: 0.85rem; font-weight: bold; }

.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(201, 168, 76, 0.2);
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.iti__country-list { background-color: var(--azul-oscuro); 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: var(--dorado);
    background: rgba(201, 168, 76, 0.05);
}

.select-wrapper select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a84c'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--dorado), var(--dorado-oscuro));
    color: var(--azul-oscuro);
    border: none;
    padding: 20px;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201, 168, 76, 0.35);
    background: linear-gradient(135deg, var(--dorado-claro), var(--dorado));
}

@media (max-width: 768px) {
    .input-row { grid-template-columns: 1fr; }
    .form-container { padding: 30px; }
}

/* --- FOOTER --- */
.main-footer {
    background: linear-gradient(180deg, #060e1e 0%, #030810 100%);
    color: white;
    padding: 60px 20px 20px 20px;
    font-family: 'Roboto', sans-serif;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.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(--dorado);
    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(--dorado); }

.footer-hr {
    border: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    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-wa);
    color: white;
    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: #1ea856;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    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;
}
.legal-links a:hover { color: var(--dorado); }

@media (max-width: 768px) {
    .sitemap { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* --- PÁGINAS AUXILIARES (secondary-page) --- */
.slider.secondary-page {
    background: linear-gradient(90deg,
        var(--azul-claro) 0%,
        var(--azul-medio) 40%,
        var(--negro) 100%
    ) !important;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.slider.secondary-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.15), transparent 70%);
    pointer-events: none;
}

.slider.secondary-page .content {
    z-index: 2;
    width: 100%;
}

/* --- SOCIAL LINKS MENÚ --- */
.social-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 0 !important;
    color: #ccc !important;
    transition: color 0.3s !important;
}
.social-link:hover { color: var(--dorado) !important; }
.social-link i { width: 20px; text-align: center; }

/* --- HERRAMIENTA ITEM EN MENÚ --- */
.tool-item {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 6px 0 !important;
}
.tool-item i { color: var(--dorado); font-size: 0.85rem; }

/* Semblanza footer */
.semblanza-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.signature .name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blanco);
}

.signature .rank {
    display: block;
    font-size: 0.85rem;
    color: var(--dorado);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Indent links */
.indent { padding-left: 15px !important; }