        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a3295;
            --primary-dark: #072270;
            --primary-light: #1a4bc4;
            --white: #ffffff;
            --gray-100: #f8f9fc;
            --gray-200: #e8ecf4;
            --gray-300: #c5cee0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--white);
            color: var(--primary);
            overflow-x: hidden;
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 25px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 50, 149, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 5%;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
        }

        .navbar.on-white {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 30px rgba(10, 50, 149, 0.1);
        }

        .navbar.on-white .nav-logo,
        .navbar.on-white .nav-menu a {
            color: var(--primary);
        }

        .navbar.on-white .nav-cta {
            background: var(--primary);
            color: var(--white);
        }

        .navbar.on-white .menu-toggle span {
            background: var(--primary);
        }

        .nav-logo {
            font-family: 'Instrument Serif', serif;
            font-size: 1.8rem;
            color: var(--white);
            text-decoration: none;
            font-weight: 400;
            z-index: 2;
            /* Ensure logo is above purely absolute elements if needed */
        }

        .nav-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            /* Increased separation */
        }

        .nav-menu {
            display: flex;
            gap: 50px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .nav-extras {
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 2;
        }

        /* Language Switcher */
        .lang-switch {
            display: flex;
            gap: 10px;
            margin-left: 0;
        }

        .lang-btn {
            background: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            /* Rounded pill shape */
            cursor: pointer;
            font-size: 0.75rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
        }

        .lang-btn.active {
            background: var(--white);
            color: var(--primary);
            border-color: var(--white);
            font-weight: 700;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            opacity: 0.85;
            transition: opacity 0.3s ease;
        }

        .nav-menu a:hover {
            opacity: 1;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: currentColor;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--white);
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 30px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        /* ========== HERO FULLSCREEN AZUL ========== */
        .hero {
            min-height: 100vh;
            background: var(--primary);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, #0d3db0 0%, #0a3295 40%, #072270 100%);
        }

        /* ========== GLOBO WIREFRAME ========== */
        .globe-container {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .globe-wrapper {
            width: 600px;
            height: 600px;
            position: relative;
            animation: rotateGlobe 45s linear infinite;
        }

        @keyframes rotateGlobe {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .globe-svg {
            width: 100%;
            height: 100%;
        }

        /* Estilos para el wireframe */
        .globe-outline {
            fill: none;
            stroke: rgba(255, 255, 255, 0.15);
            stroke-width: 2;
        }

        .globe-grid {
            fill: none;
            stroke: rgba(255, 255, 255, 0.06);
            stroke-width: 1;
        }

        .continent {
            fill: none;
            stroke: rgba(255, 255, 255, 0.4);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Glow effect */
        .globe-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%,
                    rgba(255, 255, 255, 0.1) 0%,
                    transparent 50%);
            pointer-events: none;
        }

        .globe-outer-glow {
            position: absolute;
            width: 120%;
            height: 120%;
            top: -10%;
            left: -10%;
            border-radius: 50%;
            background: radial-gradient(circle at center,
                    rgba(100, 150, 255, 0.1) 0%,
                    transparent 60%);
            pointer-events: none;
        }

        /* ========== PARTÍCULAS FLOTANTES (ESTRELLAS) ========== */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: twinkle 3s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            top: 10%;
            left: 15%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            top: 20%;
            left: 80%;
            animation-delay: 0.5s;
        }

        .particle:nth-child(3) {
            top: 30%;
            left: 25%;
            animation-delay: 1s;
        }

        .particle:nth-child(4) {
            top: 15%;
            left: 60%;
            animation-delay: 1.5s;
        }

        .particle:nth-child(5) {
            top: 70%;
            left: 10%;
            animation-delay: 2s;
        }

        .particle:nth-child(6) {
            top: 80%;
            left: 85%;
            animation-delay: 0.3s;
        }

        .particle:nth-child(7) {
            top: 60%;
            left: 90%;
            animation-delay: 0.8s;
        }

        .particle:nth-child(8) {
            top: 85%;
            left: 30%;
            animation-delay: 1.3s;
        }

        .particle:nth-child(9) {
            top: 5%;
            left: 45%;
            animation-delay: 1.8s;
        }

        .particle:nth-child(10) {
            top: 40%;
            left: 5%;
            animation-delay: 2.3s;
        }

        .particle:nth-child(11) {
            top: 55%;
            left: 75%;
            animation-delay: 0.2s;
        }

        .particle:nth-child(12) {
            top: 90%;
            left: 55%;
            animation-delay: 0.7s;
        }

        .particle:nth-child(13) {
            top: 25%;
            left: 95%;
            animation-delay: 1.2s;
        }

        .particle:nth-child(14) {
            top: 75%;
            left: 40%;
            animation-delay: 1.7s;
        }

        .particle:nth-child(15) {
            top: 45%;
            left: 20%;
            animation-delay: 2.2s;
        }

        @keyframes twinkle {

            0%,
            100% {
                opacity: 0.3;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.5);
            }
        }

        /* ========== CONTENIDO HERO ========== */
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--white);
            padding: 40px;
        }

        .hero-content img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .logo-container {
            width: 250px;
            height: 250px;
            margin: 0 auto 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .hero-tagline {
            font-size: 0.95rem;
            letter-spacing: 8px;
            text-transform: uppercase;
            opacity: 0.8;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .hero-title {
            font-family: 'Instrument Serif', serif;
            font-size: 4rem;
            letter-spacing: -2px;
            margin-bottom: 20px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            font-style: italic;
        }

        .hero-divider {
            width: 60px;
            height: 2px;
            background: rgba(255, 255, 255, 0.4);
            margin: 40px auto;
            position: relative;
        }

        .hero-divider::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--white);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .hero-description {
            font-size: 1.2rem;
            max-width: 500px;
            margin: 0 auto 50px;
            line-height: 1.8;
            opacity: 0.9;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: var(--white);
            color: var(--primary);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .btn-hero-primary svg {
            transition: transform 0.3s ease;
        }

        .btn-hero-primary:hover svg {
            transform: translateX(5px);
        }

        .btn-hero-secondary {
            color: var(--white);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.8);
        }

        /* ========== SCROLL INDICATOR ========== */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            color: var(--white);
            opacity: 0.7;
            cursor: pointer;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .scroll-indicator:hover {
            opacity: 1;
        }

        .scroll-indicator span {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .scroll-mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 15px;
            position: relative;
        }

        .scroll-mouse::before {
            content: '';
            position: absolute;
            width: 4px;
            height: 8px;
            background: var(--white);
            border-radius: 2px;
            left: 50%;
            top: 8px;
            transform: translateX(-50%);
            animation: scrollWheel 2s ease-in-out infinite;
        }

        @keyframes scrollWheel {

            0%,
            100% {
                opacity: 1;
                top: 8px;
            }

            50% {
                opacity: 0.3;
                top: 18px;
            }
        }

        /* ========== STATS FLOTANTES ========== */
        .floating-stats {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        .float-stat {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 20px 25px;
            border-radius: 20px;
            color: var(--white);
            animation: floatStat 5s ease-in-out infinite;
        }

        .float-stat:nth-child(1) {
            top: 20%;
            left: 8%;
            animation-delay: 0s;
        }

        .float-stat:nth-child(2) {
            top: 25%;
            right: 8%;
            animation-delay: 1s;
        }

        .float-stat:nth-child(3) {
            bottom: 25%;
            left: 10%;
            animation-delay: 2s;
        }

        .float-stat:nth-child(4) {
            bottom: 20%;
            right: 10%;
            animation-delay: 1.5s;
        }

        @keyframes floatStat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .float-stat-number {
            font-family: 'Instrument Serif', serif;
            font-size: 2rem;
            display: block;
            margin-bottom: 5px;
        }

        .float-stat-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
        }

        /* ========== MARQUEE ========== */
        .marquee-section {
            background: var(--gray-100);
            padding: 25px 0;
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            animation: marquee 30s linear infinite;
        }

        .marquee-content {
            display: flex;
            gap: 60px;
            padding-right: 60px;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 15px;
            white-space: nowrap;
            font-weight: 500;
            color: var(--primary);
            opacity: 0.6;
            width: fit-content;
        }

        .marquee-item svg {
            width: 24px;
            height: 24px;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ========== SECCIONES GENERALES ========== */
        .section {
            padding: 120px 5%;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-label {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .section-title {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .section-subtitle {
            font-size: 1.1rem;
            opacity: 0.7;
            line-height: 1.7;
        }

        /* ========== BENTO GRID ========== */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, minmax(300px, auto));
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .bento-item {
            background: var(--primary);
            border-radius: 30px;
            padding: 80px 35px 35px 35px;
            position: relative;

            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            color: var(--white);
        }

        .bento-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(10, 50, 149, 0.3);
        }

        .bento-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .bento-item.wide {
            grid-column: span 2;
        }

        .bento-item.light {
            background: var(--gray-100);
            color: var(--primary);
        }

        .bento-item.outline {
            background: var(--white);
            border: 2px solid var(--gray-200);
            color: var(--primary);
        }

        .bento-number {
            font-family: 'Instrument Serif', serif;
            font-size: 6rem;
            opacity: 0.15;
            position: absolute;
            top: 20px;
            right: 30px;
            line-height: 1;
        }

        .bento-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .bento-item.light .bento-icon,
        .bento-item.outline .bento-icon {
            background: var(--primary);
            color: var(--white);
        }

        .bento-icon svg {
            width: 24px;
            height: 24px;
        }

        .bento-title {
            font-family: 'Instrument Serif', serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .bento-item.large .bento-title {
            font-size: 2.5rem;
        }

        .bento-desc {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        .bento-meta {
            display: flex;
            gap: 20px;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            flex-wrap: wrap;
        }

        .bento-item.light .bento-meta,
        .bento-item.outline .bento-meta {
            border-color: var(--gray-200);
        }

        .bento-tag {
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .bento-price {
            position: absolute;
            top: 30px;
            left: 35px;
            background: var(--white);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .bento-item.light .bento-price,
        .bento-item.outline .bento-price {
            background: var(--primary);
            color: var(--white);
        }

        /* ========== EXPERIENCIA ========== */
        .experience-section {
            background: var(--primary);
            color: var(--white);
            padding: 150px 5%;
            position: relative;
            overflow: hidden;
        }

        .experience-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }

        .experience-content .section-label {
            background: rgba(255, 255, 255, 0.1);
        }

        .experience-content .section-title {
            color: var(--white);
        }

        .experience-list {
            margin-top: 50px;
        }

        .experience-item {
            display: flex;
            gap: 25px;
            padding: 30px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .experience-item:hover {
            padding-left: 20px;
            background: rgba(255, 255, 255, 0.02);
        }

        .exp-number {
            font-family: 'Instrument Serif', serif;
            font-size: 2.5rem;
            opacity: 0.3;
            min-width: 60px;
        }

        .exp-content h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .exp-content p {
            font-size: 0.95rem;
            opacity: 0.7;
            line-height: 1.6;
        }

        .stacked-cards {
            position: relative;
            height: 500px;
        }

        .stack-card {
            position: absolute;
            width: 100%;
            height: 400px;
            background: var(--white);
            border-radius: 30px;
            color: var(--primary);
            padding: 40px;
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .stack-card:nth-child(1) {
            top: 0;
            z-index: 3;
        }

        .stack-card:nth-child(2) {
            top: 30px;
            left: 15px;
            z-index: 2;
            opacity: 0.7;
            transform: scale(0.95);
        }

        .stack-card:nth-child(3) {
            top: 60px;
            left: 30px;
            z-index: 1;
            opacity: 0.4;
            transform: scale(0.9);
        }

        .stack-card:hover {
            transform: translateY(-10px) scale(1);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .stack-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .stack-card-icon {
            width: 60px;
            height: 60px;
            background: var(--gray-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stack-card-icon svg {
            width: 30px;
            height: 30px;
            color: var(--primary);
        }

        .stack-card-badge {
            background: var(--primary);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .stack-card h3 {
            font-family: 'Instrument Serif', serif;
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .stack-card p {
            opacity: 0.7;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .stack-card-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .feature-tag {
            background: var(--gray-100);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* ========== TESTIMONIOS ========== */
        .testimonials-section {
            background: var(--primary);
            color: var(--white);
        }

        .testimonials-section .section-label {
            background: var(--white);
            color: var(--primary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonial-featured {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 40px;
            padding: 60px;
            position: relative;
            color: var(--white);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .quote-mark {
            font-family: 'Instrument Serif', serif;
            font-size: 8rem;
            color: var(--primary);
            opacity: 0.1;
            position: absolute;
            top: 20px;
            left: 30px;
            line-height: 1;
        }

        .testimonial-featured blockquote {
            font-family: 'Instrument Serif', serif;
            font-size: 1.8rem;
            line-height: 1.5;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-info span {
            font-size: 0.85rem;
            opacity: 0.6;
        }

        .testimonials-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .testimonial-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 25px;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white);
        }

        .testimonial-item:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .testimonial-item .author-avatar {
            width: 50px;
            height: 50px;
            font-size: 1rem;
        }

        .testimonial-item p {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        .testimonial-rating {
            display: flex;
            gap: 3px;
            color: #fbbf24;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: var(--white);
            padding: 150px 5%;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--primary);
            border-radius: 50px;
            padding: 80px;
            position: relative;
            overflow: hidden;
            color: var(--white);
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
            border-radius: 50%;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-family: 'Instrument Serif', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .cta-content p {
            font-size: 1.1rem;
            opacity: 0.8;
            line-height: 1.7;
        }

        .cta-form {
            background: var(--white);
            border-radius: 30px;
            padding: 50px;
            color: var(--primary);
        }

        .form-title {
            font-family: 'Instrument Serif', serif;
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .form-input {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid var(--gray-200);
            border-radius: 15px;
            font-size: 1rem;
            font-family: 'Outfit', sans-serif;
            transition: all 0.3s ease;
            background: var(--gray-100);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
        }

        .form-input::placeholder {
            color: var(--gray-300);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-select {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid var(--gray-200);
            border-radius: 15px;
            font-size: 1rem;
            font-family: 'Outfit', sans-serif;
            background: var(--gray-100);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230a3295' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 20px;
        }

        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            background-color: var(--white);
        }

        .form-submit {
            width: 100%;
            padding: 20px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 15px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Outfit', sans-serif;
        }

        .form-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(10, 50, 149, 0.3);
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--primary);
            color: var(--white);
            padding: 80px 5% 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto 60px;
        }

        .footer-brand .nav-logo {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            opacity: 0.7;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-title {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--white);
            opacity: 0.7;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-copy {
            opacity: 0.6;
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--white);
            color: var(--primary);
            border-color: var(--white);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .bento-item.large {
                grid-column: span 2;
                grid-row: span 1;
            }

            .globe-wrapper {
                width: 500px;
                height: 500px;
            }
        }

        @media (max-width: 1024px) {
            .globe-wrapper {
                width: 450px;
                height: 450px;
            }

            .float-stat {
                display: none;
            }

            .hero-title {
                font-size: 3rem;
            }

            .logo-container {
                width: 200px;
                height: 200px;
            }

            .experience-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .stacked-cards {
                height: 450px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .cta-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .cta-container {
                padding: 50px 30px;
                border-radius: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {

            .nav-menu,
            .nav-cta {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            /* Fix Mobile Testimonials Overflow */
            .testimonials-list {
                width: 100%;
                overflow: hidden;
                /* Prevent horizontal scroll */
            }

            .testimonial-item {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 15px;
                padding: 25px;
            }

            .testimonial-item .author-avatar {
                margin: 0 auto;
            }

            .testimonial-rating {
                justify-content: center;
                order: 3;
                /* Stars at bottom */
            }

            .testimonial-item p {
                order: 2;
                margin: 10px 0;
            }

            .testimonial-item .author-avatar {
                order: 1;
            }

            .globe-wrapper {
                width: 350px;
                height: 350px;
                opacity: 0.5;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .logo-container {
                width: 180px;
                height: 180px;
            }

            .hero-tagline {
                font-size: 0.8rem;
                letter-spacing: 4px;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-item.large,
            .bento-item.wide {
                grid-column: span 1;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .cta-content h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .logo-container {
                width: 150px;
                height: 150px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .globe-wrapper {
                width: 300px;
                height: 300px;
            }

            .section {
                padding: 80px 5%;
            }

            .section-title {
                font-size: 2rem;
            }

            .testimonial-featured {
                padding: 30px;
            }

            .testimonial-featured blockquote {
                font-size: 1.3rem;
            }
        }

        /* ========== FORM STATUS ========== */
        .form-status {
            margin-top: 15px;
            font-size: 0.95rem;
            text-align: center;
            min-height: 1.5em;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .form-status.success {
            color: #4CAF50;
        }

        .form-status.error {
            color: #ff3333;
        }

        button,
        input,
        textarea {
            font-family: 'Outfit', sans-serif;
        }



        /* ========== GALERÍA ========== */
        .gallery-section {
            overflow: hidden;
            padding: 80px 0;
            background: var(--white);
        }

        .gallery-container {
            width: 100%;
            overflow: hidden;
            display: flex;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .gallery-track {
            display: flex;
            gap: 30px;
            animation: scrollGallery 40s linear infinite;
            padding: 20px 0;
            width: max-content;
        }

        .gallery-container:hover .gallery-track {
            animation-play-state: paused;
        }

        @keyframes scrollGallery {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .gallery-item {
            display: flex;
            flex-direction: column;
            width: 350px;
            height: 450px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            background: var(--white);
            flex-shrink: 0;
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-card {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
            background: var(--white);
            color: var(--primary);
        }

        .gallery-card span {
            font-family: 'Instrument Serif', serif;
            font-size: 2.5rem;
            line-height: 1.1;
        }

        .gallery-card.blue {
            background: var(--primary);
            color: var(--white);
        }