﻿:root {
            --blue: #0D2D8C;
            --blue-dark: #091f63;
            --blue-light: #1a3fa8;
            --gray: #e4e8eb;
            --gold: #dba830;
            --gold-light: #f0c84a;
            --white: #ffffff;
            --text-dark: #0a0f1e;
            --text-muted: #6b7a99;
            --card-bg: rgba(255, 255, 255, 0.04);
            --border: rgba(219, 168, 48, 0.2);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: #06091a;
            color: var(--white);
            overflow-x: hidden;
        }

        /* ── STAR GRID BACKGROUND ── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image:
                radial-gradient(1px 1px at 10% 15%, rgba(219, 168, 48, 0.6) 0%, transparent 100%),
                radial-gradient(1px 1px at 25% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
                radial-gradient(1px 1px at 50% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
                radial-gradient(1px 1px at 75% 60%, rgba(219, 168, 48, 0.4) 0%, transparent 100%),
                radial-gradient(1px 1px at 90% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
                radial-gradient(1px 1px at 35% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
                radial-gradient(1px 1px at 60% 85%, rgba(219, 168, 48, 0.3) 0%, transparent 100%),
                radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
                radial-gradient(1px 1px at 15% 90%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
                radial-gradient(1px 1px at 45% 50%, rgba(219, 168, 48, 0.2) 0%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 6%;
            background: rgba(6, 9, 26, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(219, 168, 48, 0.15);
        }

        .nav-logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.6rem;
            letter-spacing: -0.5px;
            color: var(--white);
        }

        .nav-logo span {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            letter-spacing: 0.3px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-cta {
            background: var(--gold);
            color: var(--text-dark);
            border: none;
            padding: 0.55rem 1.4rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            border-radius: 4px;
        }

        .nav-cta:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }

        /* ── HERO ── */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 6%;
            overflow: hidden;
        }

        .hero-glow {
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(13, 45, 140, 0.5) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            pointer-events: none;
        }

        .hero-glow2 {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(219, 168, 48, 0.12) 0%, transparent 70%);
            bottom: 100px;
            left: 10%;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(219, 168, 48, 0.1);
            border: 1px solid rgba(219, 168, 48, 0.35);
            padding: 0.4rem 1rem;
            font-family: 'DM Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 1px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeUp 0.7s ease forwards;
            border-radius: 4px;
        }

        .hero-badge::before {
            content: '◈';
            font-size: 0.8rem;
        }

        .hero-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(3rem, 7vw, 5.5rem);
            line-height: 1.0;
            letter-spacing: -2px;
            margin-bottom: 1.5rem;
            animation: fadeUp 0.8s 0.1s ease both;
        }

        .hero-title .line2 {
            color: var(--gold);
        }

        .hero-title .line3 {
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
            color: transparent;
        }

        .hero-sub {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.75;
            max-width: 480px;
            margin-bottom: 2.5rem;
            font-weight: 300;
            animation: fadeUp 0.8s 0.2s ease both;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeUp 0.8s 0.3s ease both;
        }

        .btn-primary {
            background: var(--blue);
            border: 1px solid var(--blue-light);
            color: var(--white);
            padding: 0.85rem 2rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
            border-radius: 4px;
        }

        .btn-primary:hover {
            background: var(--blue-light);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: var(--white);
            padding: 0.85rem 2rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
            border-radius: 4px;
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .hero-visual {
            position: absolute;
            right: 6%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            opacity: 0.85;
            animation: fadeIn 1.2s 0.4s ease both;
        }

        /* Constellation SVG */
        .constellation {
            animation: twinkle 4s ease-in-out infinite;
        }

        @keyframes twinkle {

            0%,
            100% {
                opacity: 0.85;
            }

            50% {
                opacity: 0.5;
            }
        }

        /* Stat bar */
        .hero-stats {
            position: absolute;
            bottom: 3rem;
            left: 6%;
            right: 6%;
            display: flex;
            gap: 3rem;
            z-index: 2;
            animation: fadeUp 0.8s 0.5s ease both;
        }

        .stat {
            border-left: 2px solid var(--gold);
            padding-left: 1rem;
        }

        .stat-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
        }

        .stat-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        /* ── SECTIONS ── */
        section {
            position: relative;
            z-index: 1;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 6%;
        }

        .section-tag {
            font-family: 'DM Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .section-tag::before {
            content: '';
            display: inline-block;
            width: 2rem;
            height: 1px;
            background: var(--gold);
        }

        .section-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 1rem;
        }

        .section-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            max-width: 540px;
            margin-bottom: 3rem;
        }

        /* ── QUIENES SOMOS ── */
        #quienes {
            background: linear-gradient(180deg, #06091a 0%, #08102e 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-text p {
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.8;
            margin-bottom: 1.2rem;
            font-size: 0.97rem;
        }

        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .value-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            padding: 1.5rem;
            transition: border-color 0.3s;
        }

        .value-card:hover {
            border-color: rgba(219, 168, 48, 0.5);
        }

        .value-icon {
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
        }

        .value-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 0.4rem;
        }

        .value-desc {
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }

        /* ── SERVICIOS ── */
        #servicios {
            background: #06091a;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(219, 168, 48, 0.1);
            border: 1px solid rgba(219, 168, 48, 0.1);
        }

        .service-card {
            background: #06091a;
            padding: 2rem 1.5rem;
            transition: background 0.3s;
            cursor: default;
        }

        .service-card:hover {
            background: rgba(13, 45, 140, 0.3);
        }

        .service-num {
            font-family: 'DM Mono', monospace;
            font-size: 0.68rem;
            color: var(--gold);
            letter-spacing: 1px;
            margin-bottom: 1rem;
            opacity: 0.7;
        }

        .service-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .service-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.6rem;
            line-height: 1.3;
        }

        .service-desc {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.65;
            font-weight: 300;
        }

        /* ── QUE HACEMOS ── */
        #hacemos {
            background: linear-gradient(180deg, #06091a 0%, #08102e 50%, #06091a 100%);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            position: relative;
            padding: 2rem;
            border-top: 2px solid var(--blue);
            transition: border-color 0.3s;
        }

        .step:hover {
            border-color: var(--gold);
        }

        .step-num {
            position: absolute;
            top: -1.2rem;
            left: 0;
            background: var(--gold);
            color: var(--text-dark);
            font-family: 'DM Mono', monospace;
            font-size: 0.68rem;
            font-weight: 500;
            padding: 0.2rem 0.6rem;
            letter-spacing: 0.5px;
        }

        .step-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            margin-top: 0.5rem;
        }

        .step-text {
            font-size: 0.87rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.75;
            font-weight: 300;
        }

        /* ── RECOMENDACIONES ── */
        #recomendaciones {
            background: #06091a;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .testimonial {
            background: var(--card-bg);
            border: 1px solid var(--border);
            padding: 2rem;
            position: relative;
            transition: transform 0.3s, border-color 0.3s;
        }

        .testimonial:hover {
            transform: translateY(-4px);
            border-color: rgba(219, 168, 48, 0.4);
        }

        .testimonial::before {
            content: '"';
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.3;
            position: absolute;
            top: 0.5rem;
            left: 1.2rem;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            padding-top: 1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .author-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 0.85rem;
            color: var(--gold);
            flex-shrink: 0;
        }

        .author-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .author-role {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-family: 'DM Mono', monospace;
        }

        .stars {
            color: var(--gold);
            font-size: 0.75rem;
            margin-bottom: 0.3rem;
        }

        /* ── CONTACT SECTION ── */
        #contacto {
            background: linear-gradient(180deg, #06091a 0%, #08102e 100%);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-info p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1rem;
            border: 1px solid var(--border);
            background: var(--card-bg);
        }

        .contact-item-icon {
            font-size: 1.2rem;
        }

        .contact-item-label {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            color: var(--gold);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.2rem;
        }

        .contact-item-val {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
        }

        /* Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(219, 168, 48, 0.15);
            padding: 2.5rem;
        }

        .form-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-family: 'DM Mono', monospace;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-label {
            display: block;
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            letter-spacing: 1.5px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white);
            padding: 0.75rem 1rem;
            font-family: 'Inter', sans-serif;
            font-size: 0.88rem;
            transition: border-color 0.2s;
            outline: none;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--gold);
            background: rgba(219, 168, 48, 0.05);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.2);
        }

        .form-select {
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
        }

        .form-select option {
            background: #0d1530;
            color: var(--white);
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            width: 100%;
            background: var(--blue);
            border: 1px solid var(--blue-light);
            color: var(--white);
            padding: 1rem;
            font-family: 'DM Mono', monospace;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
        }

        .form-submit:hover {
            background: var(--blue-light);
            transform: translateY(-1px);
        }

        .form-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Form messages */
        .form-success,
        .form-error {
            display: none;
            padding: 1rem;
            font-family: 'DM Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 1px;
            margin-top: 1rem;
            text-align: center;
        }

        .form-success {
            background: rgba(0, 200, 100, 0.1);
            border: 1px solid rgba(0, 200, 100, 0.3);
            color: #4ade80;
        }

        .form-error {
            background: rgba(220, 50, 50, 0.1);
            border: 1px solid rgba(220, 50, 50, 0.3);
            color: #f87171;
        }

        /* ── FOOTER ── */
        footer {
            background: #030612;
            border-top: 1px solid rgba(219, 168, 48, 0.1);
            padding: 3rem 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.4rem;
        }

        .footer-logo span {
            color: var(--gold);
        }

        .footer-copy {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 1px;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-links a {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        /* ── FLOATING WHATSAPP ── */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            background: #25D366;
            border-radius: 50%;
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: transform 0.25s, box-shadow 0.25s;
            animation: pulse-wa 2.5s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .wa-tooltip {
            position: absolute;
            right: 68px;
            background: rgba(6, 9, 26, 0.95);
            border: 1px solid rgba(37, 211, 102, 0.3);
            color: white;
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            padding: 0.4rem 0.8rem;
            white-space: nowrap;
            letter-spacing: 1px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s;
        }

        .whatsapp-float:hover .wa-tooltip {
            opacity: 1;
        }

        @keyframes pulse-wa {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7);
            }
        }

        /* ── DIVIDER ── */
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(219, 168, 48, 0.2), transparent);
            margin: 0 6%;
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps {
                grid-template-columns: 1fr 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-visual {
                display: none;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 5%;
            }

            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .about-values {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 1.5rem;
                flex-wrap: wrap;
            }

            footer {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 4px;
        }

        .nav-toggle span {
            width: 22px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s;
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }
        }