/* ================================================= */
/* 1. CONFIGURACIÓN MAESTRA Y VARIABLES */
/* ================================================= */
:root {
    --color-primario: #0A2239;      /* Azul Marino Tech */
    --color-secundario: #050f19;    /* Negro Profundo */
    --color-acento: #37bc81;        /* Verde Digital DigitalNet */
    --color-blanco: #ffffff;
    --color-texto-gris: rgba(255, 255, 255, 0.7);
    --header-height: 85px;
    --transition-premium: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-bg: rgba(10, 34, 57, 0.75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-secundario);
    color: var(--color-blanco);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ================================================= */
/* 2. SISTEMA DE REVELACIÓN (SCROLL ANIMATIONS) */
/* ================================================= */

/* Estado base: oculto y desenfocado */
.reveal-up, .reveal-left, .reveal-right, .feature-card, .portfolio-item, .service-item {
    opacity: 0;
    filter: blur(15px);
    transition: var(--transition-premium);
    will-change: transform, opacity, filter;
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }

/* Clase 'active' activada por tu JS */
.reveal-up.active, 
.reveal-left.active, 
.reveal-right.active, 
.feature-card.active, 
.portfolio-item.active,
.service-item.active {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0);
}

/* ================================================= */
/* 3. HEADER (CON GLASSMORPHISM Y SCROLL EFFECT) */
/* ================================================= */
.main-header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    background: transparent;
    transition: var(--transition-premium);
}

/* Clase añadida por tu JS al hacer scroll */
.header-scrolled {
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 247, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 250px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 247, 0, 0.2));
    transition: 0.4s;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px var(--color-acento));
    transform: scale(1.05);
}

/* Navegación */
.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--color-blanco);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s ease;
    position: relative;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--color-acento);
}

.btn-accent-nav {
    background: var(--color-acento) !important;
    color: var(--color-primario) !important;
    padding: 12px 24px !important;
    border-radius: 4px;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    box-shadow: 0 0 15px rgba(0, 247, 0, 0.3);
}

/* ================================================= */
/* 4. HERO SECTION (DINÁMICO) */
/* ================================================= */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 70% 30%, #142e42 0%, var(--color-secundario) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, var(--color-secundario));
    z-index: 1;
}

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

.hero-content h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
}

.hero-content h2 span {
    color: var(--color-acento);
    display: block;
    margin-top: 10px;
    text-shadow: 0 0 20px rgba(0, 247, 0, 0.4);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-texto-gris);
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary-large {
    background: var(--color-acento);
    color: var(--color-primario);
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-secondary {
    border: 2px solid var(--color-blanco);
    color: var(--color-blanco);
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-primary-large:hover {
    background: var(--color-blanco);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--color-acento);
}







/* ================================================= */
/* SECCIÓN FAQ - ESTILO PREMIUM TECH */
/* ================================================= */
.faq-section {
    background: transparent !important;
    color: #ffffff;
    overflow: hidden;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Encabezado */
.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--color-acento, #37bc81));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.faq-header p {
    color: var(--color-acento, #37bc81);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Acordeón Estilo Glassmorphism */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(55, 188, 129, 0.4);
    transform: translateX(10px);
}

.accordion-header {
    width: 100%;
    padding: 25px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

/* Icono Dinámico */
.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-acento, #37bc81);
    transition: transform 0.4s ease;
}

/* Cuerpo con Animación de Altura */
.accordion-body {
    display: grid;
    grid-template-rows: 0fr; /* Truco para transición suave */
    transition: grid-template-rows 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.accordion-body p {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
}

/* ESTADO ACTIVO */
.accordion-item.active {
    background: rgba(55, 188, 129, 0.05);
    border-color: var(--color-acento, #37bc81);
    box-shadow: 0 0 30px rgba(55, 188, 129, 0.15);
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
    color: #ff4d4d; /* Cambia a rojo o se mantiene al rotar */
}

.accordion-item.active .accordion-body {
    grid-template-rows: 1fr;
    padding-bottom: 25px;
}

/* Visual - Máscara Geométrica */
.geometric-image-wrapper {
    position: relative;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    border: 2px solid var(--color-acento, #37bc81);
    border-radius: 20px; /* Nota: clip-path suele cortar bordes redondeados */
    overflow: hidden;
}

.geometric-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: saturate(1.2) brightness(0.9);
    transition: transform 0.8s ease;
}

.geometric-image-wrapper:hover img {
    transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 992px) {
    .faq-container { grid-template-columns: 1fr; gap: 40px; }
    .accordion-item:hover { transform: none; }
}

/* ================================================= */
/* 5. TARJETAS DE VALOR (VALUE PROP) */
/* ================================================= */
.section-padding { padding: 100px 0; }

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 800;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.feature-card:hover {
    border-color: var(--color-acento);
    background: rgba(0, 247, 0, 0.02);
    transform: translateY(-15px);
}

.icon-box {
    font-size: 3.5rem;
    color: var(--color-acento);
    margin-bottom: 25px;
    transition: 0.5s;
}

.feature-card:hover .icon-box {
    transform: rotateY(360deg);
}




/* ================================================= */
/* SECCIÓN LÍDERES EN DESARROLLO */
/* ================================================= */
.leaders-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.leaders-content {
    flex: 1;
    min-width: 350px;
}

.leaders-header h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 5px;
}

.leaders-header h2 span {
    color: var(--color-acento, #37bc81);
}

.leaders-header .subtitle {
    color: var(--color-texto-gris, #a8b2d1);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.leaders-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.highlight {
    color: #ff8c42; /* Naranja como en la imagen de referencia */
    font-weight: 700;
}

/* Lista de Fases */
.phases-box {
    margin-top: 30px;
}

.phases-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.phases-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.phases-list li span {
    color: var(--color-acento, #37bc81);
    font-weight: 700;
}

/* Lado Visual - Círculo */
.leaders-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 350px;
}

.circle-image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Línea decorativa tipo órbita */
.orbit-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(55, 188, 129, 0.3);
    border-radius: 50%;
    animation: rotateOrbit 10s linear infinite;
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsivo */
@media (max-width: 992px) {
    .leaders-container {
        flex-direction: column;
        text-align: center;
    }
    .phases-list li {
        justify-content: center;
    }
    .circle-image-wrapper {
        width: 300px;
        height: 300px;
    }
}



/* --- SECCIÓN TRANSFORMACIÓN --- */
.transformation-section {
    background: #050c16; /* Tu fondo oscuro */
    position: relative;
    overflow: hidden;
    padding-bottom: 150px; /* Espacio para las sombras */
}

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

.transformation-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
}

.transformation-header h2 span {
    color: var(--color-acento, #37bc81); /* Tu verde neón */
}

/* --- CONTENEDOR DE DISPOSITIVOS --- */
.devices-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.device-item {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.device-item img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Sombras en el suelo */
.device-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
    filter: blur(15px);
    z-index: 1;
    transition: all 0.5s ease;
}

/* --- POSICIONAMIENTO IGUAL A LA IMAGEN --- */

/* Laptop al centro */
.laptop-center {
    width: 75%;
    z-index: 2;
    bottom: 0;
}

/* Celular Izquierda (Inclinado y más adelante) */
.phone-main {
    width: 20%;
    left: 2%;
    bottom: 30px;
    z-index: 10;
    transform: rotate(-5deg); /* Ligera inclinación como en la foto */
    animation: floatMain 5s ease-in-out infinite;
}

/* Celular Derecha (Pequeño y más atrás) */
.phone-side {
    width: 16%;
    right: 5%;
    bottom: 80px;
    z-index: 1;
    animation: floatSide 7s ease-in-out infinite;
}

/* --- ANIMACIONES DE MOVIMIENTO --- */

@keyframes floatMain {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { 
        transform: translateY(-20px) rotate(-3deg); 
    }
}

@keyframes floatSide {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Reacción al Hover */
.devices-display:hover .device-item {
    filter: brightness(1.1);
}

.phone-main:hover {
    transform: scale(1.05) rotate(0deg) !important;
}

.laptop-center:hover {
    transform: scale(1.02);
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .devices-display { height: 450px; }
    .laptop-center { width: 90%; }
    .phone-main { width: 25%; left: -20px; }
    .phone-side { display: none; } /* En tablets quitamos el pequeño para no saturar */
}

@media (max-width: 600px) {
    .devices-display { 
        height: auto;
        flex-direction: column;
        align-items: center;
    }
    .device-item { position: relative; width: 100% !important; left: 0 !important; bottom: 0 !important; margin-bottom: 30px; transform: none !important; animation: none !important; }
    .device-shadow { display: none; }
}



/* ================================================= */
/* ESTILOS ESPECÍFICOS: SECCIÓN PORTAFOLIO */
/* ================================================= */

.portfolio-section {
    background: linear-gradient(180deg, var(--color-secundario) 0%, #06111d 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Contenedor del Item del Portafolio */
.portfolio-item {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden; /* Crucial para el efecto zoom */
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--color-primario);
    transition: var(--transition-premium);
    /* Estado inicial para el scroll bidireccional */
    opacity: 0;
    filter: blur(20px) brightness(0.5);
    transform: translateY(50px) scale(0.95);
}

/* Imagen del Proyecto */
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

/* Capa Oscura / Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top, 
        rgba(5, 15, 25, 0.95) 0%, 
        rgba(10, 34, 57, 0.4) 50%, 
        transparent 100%
    );
    display: flex;
    align-items: flex-end; /* Texto abajo */
    padding: 40px;
    opacity: 0;
    transition: all 0.5s ease;
    backdrop-filter: blur(0px); /* Se activa en hover */
}

/* Info del Proyecto (Texto) */
.portfolio-info {
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.portfolio-info h5 {
    font-size: 1.8rem;
    color: var(--color-acento);
    margin-bottom: 10px;
    font-weight: 800;
}

.portfolio-info p {
    color: var(--color-blanco);
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

/* Botón Flotante "Ver" */
.btn-float-view {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-primario);
    background: var(--color-acento);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.4s ease;
    box-shadow: 0 10px 20px rgba(55, 188, 129, 0.3);
}

/* ================================================= */
/* EFECTOS HOVER (MAGIA VISUAL) */
/* ================================================= */

.portfolio-item:hover {
    transform: translateY(-10px) !important;
    border-color: var(--color-acento);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.portfolio-item:hover img {
    transform: scale(1.1);
    filter: blur(2px) brightness(0.7);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    backdrop-filter: blur(4px);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.btn-float-view:hover {
    background: var(--color-blanco);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* ================================================= */
/* ANIMACIÓN DE REVELACIÓN (ACTIVE) */
/* ================================================= */

.portfolio-item.active {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateY(0) scale(1);
}

/* ================================================= */
/* RESPONSIVE */
/* ================================================= */

@media (max-width: 768px) {
    .portfolio-item {
        height: 350px;
    }
    
    .portfolio-overlay {
        opacity: 1; /* Siempre visible en móvil */
        background: rgba(10, 34, 57, 0.7);
        padding: 25px;
    }
    
    .portfolio-info {
        transform: translateY(0);
    }
}

/* ================================================= */
/* ESTILOS ESPECÍFICOS: SECCIÓN SERVICIOS PREVIEW */
/* ================================================= */

.services-preview {
    background: var(--color-secundario);
    position: relative;
    overflow: hidden;
}

/* Contenedor Flex para las tarjetas */
.services-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Estilo Base de la Tarjeta de Servicio */
.service-item {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(55, 188, 129, 0.1);
    border-radius: 20px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-premium);
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* Pseudo-elemento para el brillo de fondo al pasar el mouse */
.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(55, 188, 129, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: 0.6s ease;
    z-index: -1;
}

/* Animaciones al hacer HOVER */
.service-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--color-acento);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(55, 188, 129, 0.2);
}

.service-item:hover::before {
    opacity: 1;
    transform: translate(25%, 25%);
}

/* Contenido de la tarjeta */
.service-content h4 {
    color: var(--color-acento);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: 0.3s;
}

.service-content p {
    color: var(--color-texto-gris);
    font-size: 1.05rem;
    line-height: 1.7;
    transition: 0.3s;
}

.service-item:hover .service-content h4 {
    text-shadow: 0 0 15px rgba(55, 188, 129, 0.5);
    transform: translateX(10px);
}

.service-item:hover .service-content p {
    color: var(--color-blanco);
}

/* ================================================= */
/* ANIMACIONES DE REVELACIÓN (SCROLL ANIMATIONS) */
/* ================================================= */

/* Estado Base: Invisible y Desplazado */
.service-item.reveal-left { transform: translateX(-100px); opacity: 0; filter: blur(20px); }
.service-item.reveal-up { transform: translateY(100px); opacity: 0; filter: blur(20px); }
.service-item.reveal-right { transform: translateX(100px); opacity: 0; filter: blur(20px); }

/* Estado Activo: Cuando el JS añade la clase .active */
.service-item.active {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) scale(1);
}

/* ================================================= */
/* BOTÓN ACENTO NEÓN (ESPECÍFICO) */
/* ================================================= */
.btn-accent-neon {
    display: inline-block;
    padding: 18px 45px;
    border: 2px solid var(--color-acento);
    color: var(--color-acento);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    letter-spacing: 1px;
    background: transparent;
}

.btn-accent-neon:hover {
    background: var(--color-acento);
    color: var(--color-primario);
    box-shadow: 0 0 35px var(--color-acento);
    transform: scale(1.05);
}

/* Efecto de reflejo pasando por el botón */
.btn-accent-neon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -110%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(35deg);
    transition: 0.7s;
}

.btn-accent-neon:hover::after {
    left: 120%;
}

/* ================================================= */
/* RESPONSIVE */
/* ================================================= */
@media (max-width: 768px) {
    .services-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        width: 100%;
        max-width: 100%;
    }
}

/* ================================================= */
/* 7. CARRETE INFINITO (LOGOS) */
/* ================================================= */
.partners-carousel-section {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: infiniteScroll 30s linear infinite;
}

.partner-logo img {
    height: 80px;
    margin: 0 60px;
}

@keyframes infiniteScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ================================================= */
/* 8. WHATSAPP Y FOOTER */
/* ================================================= */
.whatsapp-float-premium {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    z-index: 3000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    background: #25d366;
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0; }
}

.minimal-footer {
    padding: 80px 0 30px;
    background: var(--color-primario);
    border-top: 1px solid rgba(0, 247, 0, 0.1);
}

/* ================================================= */
/* 9. RESPONSIVE (CRÍTICO) */
/* ================================================= */
.menu-toggle {
    display: none; /* Por defecto no existe en ordenador */
    background: none;
    border: none;
    color: var(--color-acento);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 3000;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
@media (max-width: 992px) {
    /* APARECE EL BOTÓN */
    .menu-toggle {
        display: block;
    }

    /* EL MENÚ SE CONVIERTE EN PANEL LATERAL */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Oculto fuera de la pantalla a la derecha */
        width: 80%; /* Ocupa casi toda la pantalla */
        height: 100vh;
        background: var(--color-primario);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-premium);
        z-index: 2500;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    /* CUANDO EL MENÚ TIENE LA CLASE .open (activada por JS) */
    .main-nav.open {
        right: 0; /* Entra a la pantalla */
    }

    /* LISTA EN VERTICAL */
    .nav-list {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .nav-list a {
        font-size: 1.5rem;
        font-weight: 700;
        display: block;
    }

    /* EL BOTÓN DE CONTACTO EN MÓVIL */
    .btn-accent-nav {
        padding: 15px 40px !important;
        font-size: 1.2rem !important;
    }
}

@media (max-width: 992px) {


    .hero-content { text-align: center; }
    .hero-btns { justify-content: center; flex-direction: column; }
}



/* ================================================= */
/* NUEVA SECCIÓN: CAREER HIGHLIGHT */
/* ================================================= */
.career-highlight {
    background: transparent;
    overflow: hidden;
}

.highlight-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Contenedor de Imagen con estilo Video */
.highlight-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.video-preview-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    aspect-ratio: 16 / 9;
}

.video-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-preview-box:hover img {
    transform: scale(1.05);
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.video-preview-box:hover .play-indicator {
    background: var(--color-acento);
    border-color: var(--color-acento);
    color: var(--color-primario);
}

/* Contenido de Texto */
.highlight-text-content {
    flex: 1;
    min-width: 300px;
}

.highlight-text-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-span {
    color: var(--color-acento);
}

.highlight-text-content p {
    color: var(--color-texto-gris);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Botón Blanco Estilo Ovalado (como en tu imagen) */
.btn-oval-white {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 35px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-oval-white:hover {
    background: var(--color-acento);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(55, 188, 129, 0.3);
}

/* Adaptación para móviles */
@media (max-width: 768px) {
    .highlight-flex {
        flex-direction: column;
        text-align: center;
    }
    .highlight-text-content p {
        margin: 0 auto 30px;
    }
}


/* ================================================= */
/* ESTILOS ESPECÍFICOS: MINIMAL FOOTER CON LOGO */
/* ================================================= */

.minimal-footer {
    background-color: #03080e; /* Un tono más oscuro que el fondo general */
    padding: 100px 0 40px;
    position: relative;
    border-top: 1px solid rgba(55, 188, 129, 0.1);
    color: var(--color-blanco);
    overflow: hidden;
}

/* Efecto de resplandor ambiental en el borde superior */
.minimal-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-acento), transparent);
    box-shadow: 0 0 30px var(--color-acento);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

/* Branding y Logo */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 85px; /* Ajusta este valor según el tamaño de tu logo */
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(55, 188, 129, 0.2));
    transition: var(--transition-premium);
}

.footer-logo:hover img {
    filter: drop-shadow(0 0 20px var(--color-acento));
    transform: scale(1.08) rotate(-2deg);
}

.footer-brand p {
    color: var(--color-texto-gris);
    font-size: 0.9rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Redes Sociales: Estilo Moderno y Elástico */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    border-radius: 14px; /* Bordes suaves modernos */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-blanco);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Salto elástico */
    position: relative;
}

.footer-socials a:hover {
    background: var(--color-acento);
    color: var(--color-primario);
    transform: translateY(-12px);
    border-color: var(--color-acento);
    box-shadow: 0 15px 30px rgba(55, 188, 129, 0.4);
}

/* Línea Divisoria Cinematográfica */
.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(55, 188, 129, 0.15) 50%, 
        rgba(255,255,255,0) 100%);
    margin-bottom: 45px;
}

/* Bottom: Legal y Navegación Secundaria */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-bottom p {
    color: var(--color-texto-gris);
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: var(--color-texto-gris);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-nav a:hover {
    color: var(--color-acento);
    letter-spacing: 2px; /* Expansión suave */
    transform: translateX(5px);
}

/* ================================================= */
/* RESPONSIVE (OPTIMIZADO) */
/* ================================================= */

@media (max-width: 768px) {
    .minimal-footer {
        padding: 60px 0 30px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 45px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 35px;
    }

    .footer-nav {
        justify-content: center;
        gap: 20px;
    }
}