/* Variables CSS */
:root {
    --primary-color: #10B981;
    --primary-dark: #059669;
    --secondary-color: #34D399;
    --accent-color: #14B8A6;
    --dark-color: #0F172A;
    --dark-blue: #1E293B;
    --light-color: #F8FAFC;
    --text-color: #1E293B;
    --text-light: #64748B;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-secondary: linear-gradient(135deg, #14B8A6 0%, #10B981 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-accent: linear-gradient(135deg, #ffffff 0%, #14B8A6 100%);
    --shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
    --shadow-lg: 0 20px 60px rgba(16, 185, 129, 0.25);
    --shadow-colored: 0 10px 40px rgba(52, 211, 153, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

/* Reset y Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: #000000;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
}

/* Fondo espacial para toda la página - más visible */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(52, 211, 153, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(20, 184, 166, 0.06) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Estrellas para toda la página - más visibles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    box-shadow: 
        100px 200px 0 1px rgba(255, 255, 255, 0.9),
        300px 400px 0 0.8px rgba(255, 255, 255, 0.8),
        500px 600px 0 1px rgba(255, 255, 255, 0.9),
        700px 800px 0 0.8px rgba(255, 255, 255, 0.7),
        900px 1000px 0 1px rgba(255, 255, 255, 0.9),
        1100px 1200px 0 0.8px rgba(255, 255, 255, 0.8),
        1300px 1400px 0 1px rgba(255, 255, 255, 0.9),
        1500px 1600px 0 0.8px rgba(255, 255, 255, 0.7),
        200px 300px 0 1px rgba(255, 255, 255, 0.8),
        400px 500px 0 0.8px rgba(255, 255, 255, 0.9),
        600px 700px 0 1px rgba(255, 255, 255, 0.8),
        800px 900px 0 0.8px rgba(255, 255, 255, 0.9),
        1000px 1100px 0 1px rgba(255, 255, 255, 0.8),
        1200px 1300px 0 0.8px rgba(255, 255, 255, 0.9),
        1400px 1500px 0 1px rgba(255, 255, 255, 0.8),
        1600px 1700px 0 0.8px rgba(255, 255, 255, 0.7),
        150px 1800px 0 1px rgba(255, 255, 255, 0.9),
        350px 1900px 0 0.8px rgba(255, 255, 255, 0.8),
        550px 2000px 0 1px rgba(255, 255, 255, 0.9),
        750px 2100px 0 0.8px rgba(255, 255, 255, 0.7),
        950px 2200px 0 1px rgba(255, 255, 255, 0.9),
        1150px 2300px 0 0.8px rgba(255, 255, 255, 0.8),
        1350px 2400px 0 1px rgba(255, 255, 255, 0.9),
        1550px 2500px 0 0.8px rgba(255, 255, 255, 0.7),
        250px 2600px 0 1px rgba(255, 255, 255, 0.8),
        450px 2700px 0 0.8px rgba(255, 255, 255, 0.9),
        650px 2800px 0 1px rgba(255, 255, 255, 0.8),
        850px 2900px 0 0.8px rgba(255, 255, 255, 0.9),
        1050px 3000px 0 1px rgba(255, 255, 255, 0.8),
        1250px 3100px 0 0.8px rgba(255, 255, 255, 0.9),
        1450px 3200px 0 1px rgba(255, 255, 255, 0.8),
        1650px 3300px 0 0.8px rgba(255, 255, 255, 0.7),
        80px 150px 0 1.2px rgba(16, 185, 129, 0.9),
        380px 450px 0 1px rgba(52, 211, 153, 0.8),
        680px 750px 0 1.2px rgba(20, 184, 166, 0.9),
        980px 1050px 0 1px rgba(16, 185, 129, 0.8),
        1280px 1350px 0 1.2px rgba(52, 211, 153, 0.9),
        1580px 1650px 0 1px rgba(20, 184, 166, 0.8),
        180px 1850px 0 1.2px rgba(16, 185, 129, 0.9),
        480px 2150px 0 1px rgba(52, 211, 153, 0.8),
        780px 2450px 0 1.2px rgba(20, 184, 166, 0.9),
        1080px 2750px 0 1px rgba(16, 185, 129, 0.8),
        50px 50px 0 0.8px rgba(255, 255, 255, 0.7),
        250px 150px 0 0.8px rgba(255, 255, 255, 0.8),
        450px 250px 0 0.8px rgba(255, 255, 255, 0.7),
        650px 350px 0 0.8px rgba(255, 255, 255, 0.8),
        850px 450px 0 0.8px rgba(255, 255, 255, 0.7),
        1050px 550px 0 0.8px rgba(255, 255, 255, 0.8),
        1250px 650px 0 0.8px rgba(255, 255, 255, 0.7),
        1450px 750px 0 0.8px rgba(255, 255, 255, 0.8),
        1650px 850px 0 0.8px rgba(255, 255, 255, 0.7),
        120px 950px 0 0.8px rgba(255, 255, 255, 0.8);
    z-index: 999999;
    pointer-events: none;
    animation: twinkle 6s ease-in-out infinite;
}

body.loaded {
    opacity: 1;
}

/* Capa adicional de estrellas pequeñas */
.stars-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999998;
}

.stars-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 
        75px 175px 0 0.5px rgba(255, 255, 255, 0.6),
        175px 275px 0 0.5px rgba(255, 255, 255, 0.5),
        275px 375px 0 0.5px rgba(255, 255, 255, 0.6),
        375px 475px 0 0.5px rgba(255, 255, 255, 0.5),
        475px 575px 0 0.5px rgba(255, 255, 255, 0.6),
        575px 675px 0 0.5px rgba(255, 255, 255, 0.5),
        675px 775px 0 0.5px rgba(255, 255, 255, 0.6),
        775px 875px 0 0.5px rgba(255, 255, 255, 0.5),
        875px 975px 0 0.5px rgba(255, 255, 255, 0.6),
        975px 1075px 0 0.5px rgba(255, 255, 255, 0.5),
        1075px 1175px 0 0.5px rgba(255, 255, 255, 0.6),
        1175px 1275px 0 0.5px rgba(255, 255, 255, 0.5),
        1275px 1375px 0 0.5px rgba(255, 255, 255, 0.6),
        1375px 1475px 0 0.5px rgba(255, 255, 255, 0.5),
        1475px 1575px 0 0.5px rgba(255, 255, 255, 0.6),
        1575px 1675px 0 0.5px rgba(255, 255, 255, 0.5),
        125px 225px 0 0.5px rgba(255, 255, 255, 0.6),
        225px 325px 0 0.5px rgba(255, 255, 255, 0.5),
        325px 425px 0 0.5px rgba(255, 255, 255, 0.6),
        425px 525px 0 0.5px rgba(255, 255, 255, 0.5),
        525px 625px 0 0.5px rgba(255, 255, 255, 0.6),
        625px 725px 0 0.5px rgba(255, 255, 255, 0.5),
        725px 825px 0 0.5px rgba(255, 255, 255, 0.6),
        825px 925px 0 0.5px rgba(255, 255, 255, 0.5),
        925px 1025px 0 0.5px rgba(255, 255, 255, 0.6),
        1025px 1125px 0 0.5px rgba(255, 255, 255, 0.5),
        1125px 1225px 0 0.5px rgba(255, 255, 255, 0.6),
        1225px 1325px 0 0.5px rgba(255, 255, 255, 0.5),
        1325px 1425px 0 0.5px rgba(255, 255, 255, 0.6),
        1425px 1525px 0 0.5px rgba(255, 255, 255, 0.5),
        1525px 1625px 0 0.5px rgba(255, 255, 255, 0.6),
        1625px 1725px 0 0.5px rgba(255, 255, 255, 0.5),
        30px 130px 0 0.5px rgba(16, 185, 129, 0.6),
        330px 430px 0 0.5px rgba(52, 211, 153, 0.5),
        630px 730px 0 0.5px rgba(20, 184, 166, 0.6),
        930px 1030px 0 0.5px rgba(16, 185, 129, 0.5),
        1230px 1330px 0 0.5px rgba(52, 211, 153, 0.6),
        1530px 1630px 0 0.5px rgba(20, 184, 166, 0.5);
    animation: twinkle 8s ease-in-out infinite;
}

.stars-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 
        140px 2340px 0 0.5px rgba(255, 255, 255, 0.6),
        340px 2540px 0 0.5px rgba(255, 255, 255, 0.5),
        540px 2740px 0 0.5px rgba(255, 255, 255, 0.6),
        740px 2940px 0 0.5px rgba(255, 255, 255, 0.5),
        940px 3140px 0 0.5px rgba(255, 255, 255, 0.6),
        1140px 3340px 0 0.5px rgba(255, 255, 255, 0.5),
        1340px 3540px 0 0.5px rgba(255, 255, 255, 0.6),
        1540px 3740px 0 0.5px rgba(255, 255, 255, 0.5),
        90px 1890px 0 0.5px rgba(255, 255, 255, 0.6),
        290px 2090px 0 0.5px rgba(255, 255, 255, 0.5),
        490px 2290px 0 0.5px rgba(255, 255, 255, 0.6),
        690px 2490px 0 0.5px rgba(255, 255, 255, 0.5),
        890px 2690px 0 0.5px rgba(255, 255, 255, 0.6),
        1090px 2890px 0 0.5px rgba(255, 255, 255, 0.5),
        1290px 3090px 0 0.5px rgba(255, 255, 255, 0.6),
        1490px 3290px 0 0.5px rgba(255, 255, 255, 0.5),
        1690px 3490px 0 0.5px rgba(255, 255, 255, 0.6);
    animation: twinkle 7s ease-in-out infinite reverse;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(16, 185, 129, 0.1);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
    transition: var(--transition);
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.6));
    transform: scale(1.05);
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.nav-cta):hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 139, 61, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
    padding-top: 80px;
}

/* Efecto de Vía Láctea atravesando el espacio */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(99, 102, 241, 0.05) 0%, transparent 40%);
    transform: rotate(-35deg);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(52, 211, 153, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.03) 0%, transparent 25%);
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(10, 14, 39, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%),
        linear-gradient(135deg, rgba(5, 8, 25, 0.98) 0%, rgba(10, 14, 35, 0.95) 50%, rgba(8, 12, 30, 0.98) 100%),
                url('images/Gemini_Generated_Image_169cv1169cv1169c.png');
    background-size: cover, 400% 400%, cover;
    background-position: center, center center, center center;
    animation: gradientShift 20s ease infinite;
    overflow: hidden;
    z-index: 1;
}

/* Nebulosa verde y azul con efecto de espacio profundo */
.hero-background::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(52, 211, 153, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 35%);
    animation: floatNebula 30s ease-in-out infinite;
    opacity: 0.9;
}

/* Estrellas principales - Campo estelar denso */
.hero-background::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    box-shadow: 
        100px 120px 0 0.5px rgba(255, 255, 255, 0.9),
        200px 80px 0 1px rgba(255, 255, 255, 0.8),
        320px 200px 0 0.5px rgba(255, 255, 255, 0.7),
        450px 150px 0 1px rgba(255, 255, 255, 0.9),
        580px 90px 0 0.5px rgba(255, 255, 255, 0.6),
        120px 250px 0 1px rgba(255, 255, 255, 0.8),
        280px 320px 0 0.5px rgba(255, 255, 255, 0.7),
        400px 380px 0 1px rgba(255, 255, 255, 0.9),
        550px 280px 0 0.5px rgba(255, 255, 255, 0.8),
        680px 220px 0 1px rgba(255, 255, 255, 0.7),
        50px 350px 0 0.5px rgba(255, 255, 255, 0.9),
        180px 420px 0 1px rgba(255, 255, 255, 0.6),
        330px 480px 0 0.5px rgba(255, 255, 255, 0.8),
        480px 450px 0 1px rgba(255, 255, 255, 0.9),
        620px 380px 0 0.5px rgba(255, 255, 255, 0.7),
        740px 320px 0 1px rgba(255, 255, 255, 0.8),
        850px 180px 0 0.5px rgba(255, 255, 255, 0.9),
        920px 280px 0 1px rgba(255, 255, 255, 0.7),
        1050px 220px 0 0.5px rgba(255, 255, 255, 0.8),
        1180px 350px 0 1px rgba(255, 255, 255, 0.9),
        1300px 180px 0 0.5px rgba(255, 255, 255, 0.8),
        1420px 420px 0 1px rgba(255, 255, 255, 0.7),
        1540px 260px 0 0.5px rgba(255, 255, 255, 0.9),
        1660px 380px 0 1px rgba(255, 255, 255, 0.8),
        1780px 140px 0 0.5px rgba(255, 255, 255, 0.7),
        150px 50px 0 0.5px rgba(16, 185, 129, 0.8),
        380px 120px 0 1px rgba(52, 211, 153, 0.7),
        520px 180px 0 0.5px rgba(20, 184, 166, 0.9),
        720px 100px 0 1px rgba(16, 185, 129, 0.8),
        890px 420px 0 0.5px rgba(52, 211, 153, 0.7),
        1100px 150px 0 1px rgba(20, 184, 166, 0.8),
        1310px 490px 0 0.5px rgba(16, 185, 129, 0.9),
        1530px 330px 0 1px rgba(52, 211, 153, 0.8),
        1750px 210px 0 0.5px rgba(20, 184, 166, 0.7),
        60px 180px 0 0.5px rgba(255, 255, 255, 0.5),
        240px 240px 0 0.5px rgba(255, 255, 255, 0.6),
        410px 290px 0 0.5px rgba(255, 255, 255, 0.7),
        590px 340px 0 0.5px rgba(255, 255, 255, 0.5),
        760px 420px 0 0.5px rgba(255, 255, 255, 0.6),
        940px 370px 0 0.5px rgba(255, 255, 255, 0.7),
        1120px 460px 0 0.5px rgba(255, 255, 255, 0.5),
        1290px 310px 0 0.5px rgba(255, 255, 255, 0.6),
        1470px 540px 0 0.5px rgba(255, 255, 255, 0.7),
        1650px 450px 0 0.5px rgba(255, 255, 255, 0.5),
        1830px 290px 0 0.5px rgba(255, 255, 255, 0.6),
        70px 530px 0 0.5px rgba(255, 255, 255, 0.7),
        250px 610px 0 0.5px rgba(255, 255, 255, 0.5),
        430px 670px 0 0.5px rgba(255, 255, 255, 0.6),
        610px 590px 0 0.5px rgba(255, 255, 255, 0.7),
        790px 710px 0 0.5px rgba(255, 255, 255, 0.5),
        970px 650px 0 0.5px rgba(255, 255, 255, 0.6),
        1150px 730px 0 0.5px rgba(255, 255, 255, 0.7),
        1330px 670px 0 0.5px rgba(255, 255, 255, 0.5),
        1510px 790px 0 0.5px rgba(255, 255, 255, 0.6),
        1690px 710px 0 0.5px rgba(255, 255, 255, 0.7);
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes floatNebula {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, -40px) rotate(120deg); }
    66% { transform: translate(-40px, 40px) rotate(240deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.5; transform: scale(1.1); }
    50% { opacity: 0.2; transform: scale(0.9); }
    75% { opacity: 0.7; transform: scale(1.05); }
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title,
.hero-subtitle,
.hero-buttons,
.hero-stats {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: glow-text 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow-text {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.8)) drop-shadow(0 0 30px rgba(52, 211, 153, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.hero-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
}

.hero-stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeInDelayed 1s ease 1.5s forwards;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll-down 2s ease-in-out infinite;
}

.scroll-indicator:hover .scroll-arrow {
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

@keyframes scroll-down {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 30px;
        opacity: 0.3;
    }
}

@keyframes fadeInDelayed {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Botones */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5), 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-color);
}

.btn-dark {
    background: var(--dark-color);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--dark-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

/* Secciones */
section {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-label.white {
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
}

.section-intro::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.section-title.white {
    color: var(--white);
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}\n\n.stats-bar::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n    bottom: 0;\n    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);\n    pointer-events: none;\n}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.stat-item:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.stat-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.stat-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-content h3 {
    color: var(--dark-blue);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-content p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Soluciones */
.solutions {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    animation: rotate-slow 40s linear infinite;
    pointer-events: none;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.solutions > .container {
    position: relative;
    z-index: 1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(16, 185, 129, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    --mouse-x: 50%;
    --mouse-y: 50%;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}

.solution-image {
    width: 100%;
    height: 200px;
    margin: -3rem -2rem 2rem;
    overflow: hidden;
    position: relative;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(16, 185, 129, 0.1),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card > * {
    position: relative;
    z-index: 1;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.25), 0 0 0 1px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.solution-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    opacity: 0.3;
    line-height: 1;
    transition: var(--transition);
}

.solution-card:hover .solution-number {
    opacity: 0.8;
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.solution-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.solution-link:hover {
    gap: 10px;
}

/* Industrias */
.industries {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.industries::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.industries-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.industries-text {
    position: sticky;
    top: 120px;
}

.industries-text h2 {
    margin-bottom: 2rem;
}

.industries-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.industry-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.industry-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        500px circle at var(--mouse-x) var(--mouse-y),
        rgba(16, 185, 129, 0.15),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.industry-item:hover::before {
    opacity: 1;
}

.industry-item:hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
    filter: grayscale(0.3);
}

.industry-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.industry-item:hover .industry-icon {
    transform: scale(1.2) rotate(5deg);
    filter: grayscale(0);
}

.industry-item h4,
.industry-item p {
    position: relative;
    z-index: 1;
}

.industry-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.industry-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Clientes Section */
.clients {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.clients-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.client-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.client-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(52, 211, 153, 0.05) 100%);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.client-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    animation: shimmer 3s linear infinite;
    background-size: 200% 100%;
}

.client-logo-container {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.client-logo-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}

.client-logo {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
    animation: glow 3s ease-in-out infinite;
}

.client-industry {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.client-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.client-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E8ECF1;
}

.client-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.client-item {
    text-align: center;
}

.client-placeholder {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(52, 211, 153, 0.05) 100%);
    border: 2px dashed rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.client-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.client-placeholder:hover::before {
    opacity: 0.1;
}

.client-placeholder:hover {
    border-color: var(--primary-color);
    border-style: solid;
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.client-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.client-placeholder:hover span {
    color: var(--primary-color);
}

.client-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about {
    position: relative;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 4.5rem 0;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-main {
    max-width: 700px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.3);
    border: 3px solid rgba(16, 185, 129, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.global-stat {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.global-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.global-stat:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.global-stat:hover::before {
    opacity: 0.1;
}

.global-stat h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.global-stat p {
    position: relative;
    z-index: 1;
}

.global-stat p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Process Section */
.process-section {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.15);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.step-icon img {
    width: 80px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.process-step h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(20, 184, 166, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid rgba(20, 184, 166, 0.12);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(20, 184, 166, 0.25);
    border-color: rgba(20, 184, 166, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-icon img {
    width: 80px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.benefit-card h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Visual Section */
.team-visual {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.team-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.team-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 16/10;
}

.team-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .team-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: 120px;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 2rem 0 3rem;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.info-item a,
.info-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Formulario Moderno */
.contact-form-modern {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(52, 211, 153, 0.05) 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 1rem 1.2rem;
    border: 2px solid #E8ECF1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-color);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 8px 20px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
    background: var(--white);
}

.form-privacy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.98) 0%, rgba(10, 15, 25, 0.98) 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Estrellas en el footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    box-shadow: 
        50px 50px 0 0.5px rgba(255, 255, 255, 0.4),
        150px 100px 0 0.5px rgba(255, 255, 255, 0.3),
        250px 150px 0 0.5px rgba(255, 255, 255, 0.4),
        350px 80px 0 0.5px rgba(255, 255, 255, 0.3),
        450px 120px 0 0.5px rgba(255, 255, 255, 0.4),
        550px 90px 0 0.5px rgba(255, 255, 255, 0.3),
        650px 140px 0 0.5px rgba(255, 255, 255, 0.4),
        750px 110px 0 0.5px rgba(255, 255, 255, 0.3),
        850px 160px 0 0.5px rgba(255, 255, 255, 0.4),
        950px 70px 0 0.5px rgba(255, 255, 255, 0.3),
        1050px 130px 0 0.5px rgba(255, 255, 255, 0.4),
        1150px 95px 0 0.5px rgba(255, 255, 255, 0.3),
        1250px 145px 0 0.5px rgba(255, 255, 255, 0.4),
        1350px 85px 0 0.5px rgba(255, 255, 255, 0.3),
        100px 200px 0 0.5px rgba(16, 185, 129, 0.5),
        300px 220px 0 0.5px rgba(52, 211, 153, 0.4),
        500px 240px 0 0.5px rgba(20, 184, 166, 0.5),
        700px 210px 0 0.5px rgba(16, 185, 129, 0.4),
        900px 230px 0 0.5px rgba(52, 211, 153, 0.5),
        1100px 250px 0 0.5px rgba(20, 184, 166, 0.4);
    animation: twinkle 5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-cta {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-cta:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.footer-social a svg {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .industries-text {
        position: static;
    }
    
    .contact-intro {
        position: static;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .client-card {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-modern {
        padding: 2rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-stats {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-image {
        height: 180px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, -100px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -70px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.6), 0 0 60px rgba(52, 211, 153, 0.4);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

/* Capa adicional de estrellas pequeñas */
.particles::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    box-shadow: 
        150px 200px 0 0.3px rgba(255, 255, 255, 0.4),
        350px 120px 0 0.3px rgba(255, 255, 255, 0.5),
        520px 340px 0 0.3px rgba(255, 255, 255, 0.3),
        680px 180px 0 0.3px rgba(255, 255, 255, 0.4),
        820px 420px 0 0.3px rgba(255, 255, 255, 0.5),
        980px 260px 0 0.3px rgba(255, 255, 255, 0.3),
        1120px 380px 0 0.3px rgba(255, 255, 255, 0.4),
        1280px 140px 0 0.3px rgba(255, 255, 255, 0.5),
        1420px 300px 0 0.3px rgba(255, 255, 255, 0.3),
        1580px 220px 0 0.3px rgba(255, 255, 255, 0.4),
        80px 460px 0 0.3px rgba(255, 255, 255, 0.5),
        220px 520px 0 0.3px rgba(255, 255, 255, 0.3),
        380px 580px 0 0.3px rgba(255, 255, 255, 0.4),
        540px 620px 0 0.3px rgba(255, 255, 255, 0.5),
        700px 560px 0 0.3px rgba(255, 255, 255, 0.3),
        860px 500px 0 0.3px rgba(255, 255, 255, 0.4),
        1020px 540px 0 0.3px rgba(255, 255, 255, 0.5),
        1180px 600px 0 0.3px rgba(255, 255, 255, 0.3),
        1340px 480px 0 0.3px rgba(255, 255, 255, 0.4),
        1500px 520px 0 0.3px rgba(255, 255, 255, 0.5),
        90px 90px 0 0.3px rgba(16, 185, 129, 0.6),
        450px 250px 0 0.3px rgba(52, 211, 153, 0.5),
        810px 310px 0 0.3px rgba(20, 184, 166, 0.6),
        1170px 470px 0 0.3px rgba(16, 185, 129, 0.5),
        1450px 190px 0 0.3px rgba(52, 211, 153, 0.6),
        270px 670px 0 0.3px rgba(20, 184, 166, 0.5),
        630px 730px 0 0.3px rgba(16, 185, 129, 0.6),
        990px 790px 0 0.3px rgba(52, 211, 153, 0.5),
        1350px 850px 0 0.3px rgba(20, 184, 166, 0.6),
        1710px 370px 0 0.3px rgba(16, 185, 129, 0.5);
    animation: twinkle 3s ease-in-out infinite;
}

/* Capa de estrellas medianas con animación diferente */
.particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    box-shadow: 
        250px 150px 0 0.8px rgba(255, 255, 255, 0.9),
        550px 280px 0 1px rgba(255, 255, 255, 0.8),
        850px 380px 0 0.8px rgba(255, 255, 255, 0.9),
        1150px 220px 0 1px rgba(255, 255, 255, 0.8),
        1450px 340px 0 0.8px rgba(255, 255, 255, 0.9),
        180px 480px 0 1px rgba(255, 255, 255, 0.8),
        480px 560px 0 0.8px rgba(255, 255, 255, 0.9),
        780px 640px 0 1px rgba(255, 255, 255, 0.8),
        1080px 580px 0 0.8px rgba(255, 255, 255, 0.9),
        1380px 620px 0 1px rgba(255, 255, 255, 0.8),
        320px 80px 0 0.8px rgba(52, 211, 153, 0.8),
        620px 420px 0 1px rgba(16, 185, 129, 0.9),
        920px 240px 0 0.8px rgba(20, 184, 166, 0.8),
        1220px 360px 0 1px rgba(52, 211, 153, 0.9),
        1520px 480px 0 0.8px rgba(16, 185, 129, 0.8);
    animation: twinkle 5s ease-in-out infinite reverse;
}

/* Efecto de brillo en hover para links */
.solution-link,
.footer-cta {
    position: relative;
    overflow: hidden;
}

.solution-link::after,
.footer-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.solution-link:hover::after,
.footer-cta:hover::after {
    left: 100%;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.success-toast {
    transition: all 0.5s ease;
}

/* Scroll suave y optimización */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
