        :root {
            --bg-main: #0b1120;
            --bg-section: #020617;
            --bg-card: #111827;
            --primary: #0ea5e9;
            --primary-soft: rgba(14, 165, 233, 0.15);
            --accent: #22c55e;
            --text-main: #f9fafb;
            --text-muted: #9ca3af;
            --border-soft: #1f2937;
            --danger: #ef4444;

            --radius-lg: 18px;
            --radius-xl: 24px;
            --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.65);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top, #1f2937 0, #020617 38%, #020617 100%);
            color: var(--text-main);
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ===== Layout general ===== */

        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        section {
            padding: 5rem 0;
            position: relative;
        }

        section::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.06;
            background:
                radial-gradient(circle at 10% 20%, #22c55e 0, transparent 40%),
                radial-gradient(circle at 90% 80%, #0ea5e9 0, transparent 40%);
            mix-blend-mode: screen;
        }

        section > .container {
            position: relative;
            z-index: 1;
        }

        /* ===== Navbar ===== */

        /* NAVBAR FINAL — única regla correcta */
        /* NAVBAR PREMIUM — Minimal Glow */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 9999;
            background: rgba(2, 6, 23, 0.85);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            box-shadow: 0 6px 18px rgba(0,0,0,0.35);
        }

        .navbar-inner {
        max-width: 1220px;
        margin: 0 auto;
        padding: 0.9rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }

        .brand-logo-img {
            width: 90px !important;
            height: auto !important;
            object-fit: contain;
        }

        .hero-logo {
            width: 90px;
            height: auto;
            margin-bottom: 1rem;
            object-fit: contain;
        }

        .brand-text-title {
            font-weight: 600;
            letter-spacing: 0.03em;
            font-size: 1rem;
        }

        .brand-text-sub {
            font-size: 0.72rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .nav-links {
        display: flex;
        gap: 1.3rem; /* más compacto */
        font-size: 0.88rem; /* más legible */
        opacity: 0.95;
        }

        .nav-link {
        color: var(--text-muted);
        padding-bottom: 2px;
        border-bottom: 2px solid transparent;
        transition: 0.25s ease;
        }

        .nav-link:hover {
        color: #fff;
        border-color: rgba(14,165,233,0.4);
        }

        .nav-cta {
            border-radius: 999px;
            padding: 0.55rem 1.35rem;
            background: linear-gradient(135deg, #22c55e, #0ea5e9);
            color: #020617;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9);
            transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 40px rgba(15, 23, 42, 1);
            filter: brightness(1.05);
        }

        .nav-cta span.icon {
            font-size: 1rem;
        }

        /* Mobile nav */

        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 1.35rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.75rem 1.5rem 1.25rem;
                background: rgba(2, 6, 23, 0.98);
                border-bottom: 1px solid rgba(15, 23, 42, 0.95);
                transform-origin: top;
                transform: scaleY(0.8);
                opacity: 0;
                pointer-events: none;
                gap: 0.9rem;
                transition: opacity 0.16s ease, transform 0.16s ease;
            }

            .nav-links.open {
                opacity: 1;
                transform: scaleY(1);
                pointer-events: auto;
            }

            .nav-cta {
                width: 100%;
                justify-content: center;
                margin-top: 0.5rem;
            }

            .nav-toggle {
                display: inline-flex;
            }
        }

        /* ===== Utilidades de texto ===== */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.3);
            color: var(--text-muted);
            margin-bottom: 0.85rem;
        }

        .section-label::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: radial-gradient(circle at 30% 30%, #22c55e, #0ea5e9);
        }

        .section-title {
            font-size: clamp(1.7rem, 2.4vw, 2.1rem);
            font-weight: 600;
            margin-bottom: 0.6rem;
        }

        .section-subtitle {
            font-size: 0.98rem;
            color: var(--text-muted);
            max-width: 640px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.75rem;
            border-radius: 999px;
            padding: 0.16rem 0.6rem;
            background: rgba(15, 23, 42, 0.8);
            color: var(--text-muted);
            border: 1px solid rgba(156, 163, 175, 0.3);
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: radial-gradient(circle at 30% 30%, #22c55e, #0ea5e9);
        }

        /* ===== Hero ===== */

        .hero {
            padding: 4.5rem 0 5rem;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
            gap: 3.5rem;
            align-items: center;
        }

        .hero-title {
            font-size: clamp(2.3rem, 3.2vw, 2.9rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 0.7rem;
        }

        .hero-title span.highlight {
            background: linear-gradient(120deg, #0ea5e9, #22c55e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 32rem;
            margin-bottom: 1.4rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            margin-bottom: 1.25rem;
        }

        .btn-primary,
        .btn-ghost {
            border-radius: 999px;
            padding: 0.85rem 1.5rem;
            border: none;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #22c55e, #0ea5e9);
            color: #020617;
            box-shadow: var(--shadow-soft);
            transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            filter: brightness(1.04);
            box-shadow: 0 20px 50px rgba(15, 23, 42, 1);
        }

        .btn-ghost {
            background: rgba(15, 23, 42, 0.9);
            color: var(--text-main);
            border: 1px solid rgba(148, 163, 184, 0.4);
            transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
        }

        .btn-ghost:hover {
            background: rgba(15, 23, 42, 1);
            border-color: rgba(148, 163, 184, 0.7);
            transform: translateY(-1px);
        }

        .hero-note {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .hero-note strong {
            color: var(--text-main);
        }

        .hero-card {
            background: radial-gradient(circle at top, #0b1120 0, #020617 52%, #020617 100%);
            border-radius: var(--radius-xl);
            padding: 1.2rem 1.1rem;
            border: 1px solid rgba(30, 64, 175, 0.7);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: "";
            position: absolute;
            inset: -40%;
            background:
                radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.12), transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(34, 197, 94, 0.12), transparent 50%);
            opacity: 0.9;
            mix-blend-mode: screen;
        }

        .hero-card-inner {
            position: relative;
            z-index: 1;
        }

        .hero-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .hero-card-title {
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.08rem 0.6rem;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.4);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--text-muted);
        }

        .hero-pill-dot {
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: radial-gradient(circle at 30% 30%, #22c55e, #0ea5e9);
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.85rem;
            margin-bottom: 1.05rem;
            font-size: 0.78rem;
        }

        .metric-label {
            color: var(--text-muted);
            margin-bottom: 0.18rem;
        }

        .metric-value {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .metric-tag {
            font-size: 0.7rem;
            padding: 0.08rem 0.45rem;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.5);
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            color: var(--text-muted);
        }

        .hero-status {
            padding: 0.65rem 0.7rem;
            border-radius: 1rem;
            background: rgba(15, 23, 42, 0.95);
            border: 1px dashed rgba(148, 163, 184, 0.4);
            font-size: 0.78rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.7rem;
        }

        .hero-status-label {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .status-dot {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: radial-gradient(circle at 30% 30%, #22c55e, #0ea5e9);
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
        }

        .hero-status-text {
            font-size: 0.76rem;
            color: var(--text-muted);
        }

        .hero-status-text strong {
            color: var(--accent);
        }

        .hero-status-chip {
            font-size: 0.72rem;
            padding: 0.16rem 0.55rem;
            border-radius: 999px;
            background: rgba(34, 197, 94, 0.07);
            border: 1px solid rgba(34, 197, 94, 0.35);
            color: #bbf7d0;
        }

        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: minmax(0, 1fr);
                gap: 2.5rem;
            }

            .hero {
                padding-top: 3.75rem;
            }
        }

        /* ===== Sección: Cómo funciona ===== */

        .steps-grid {
            margin-top: 2.25rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
        }

        .step-card {
            border-radius: 18px;
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(34, 197, 94, 0.45);
            padding: 1.4rem 1.2rem;
            box-shadow: 0 18px 45px rgba(34, 197, 94, 0.25);
            position: relative;
        }

        .simulation-map {
            width: 100%;
            overflow: hidden;
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
            margin-bottom: 0.8rem;
            box-shadow: 0 0 25px rgba(34, 197, 94, 0.25);
        }

        .simulation-map img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 18px;
            transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
        }

        .preview-img {
            width: 100%;
            overflow: hidden;
            border-radius: 18px;
            margin-bottom: 1rem;
            box-shadow: 0 0 25px rgba(34, 197, 94, 0.22);
        }

        @keyframes fadePreview {
            from {
                opacity: 0;
                transform: scale(1.01);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .preview-img img {
            width: 100%;
            height: auto;
            border-radius: inherit;
            display: block;
            opacity: 0.00001;
            animation: fadePreview 0.9s ease-out forwards;
            transition: transform 0.45s ease, filter 0.45s ease;
        }

        .gallery-main {
            margin-bottom: 2.5rem;
        }

        .preview-card {
            border-radius: 18px;
            background: linear-gradient(
                135deg,
                rgba(15, 23, 42, 0.98),
                rgba(15, 23, 42, 0.92)
            );
            border: 1px solid rgba(34, 197, 94, 0.25);
            box-shadow: 0 20px 45px rgba(34, 197, 94, 0.15),
                        inset 0 0 15px rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(4px);
            padding: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .simulation-map:hover img {
            transform: scale(1.025);
            filter: brightness(1.05);
        }

        .simulation-map img {
            opacity: 0;
            animation: fadeInMap 0.9s ease-out forwards;
        }

        @keyframes fadeInMap {
            from { opacity: 0; transform: scale(1.01); }
            to   { opacity: 1; transform: scale(1); }
        }

        @media (max-width: 900px) {
            .simulation-map {
                margin-bottom: 1rem;
                border-radius: 14px;
            }

            .simulation-map img {
                border-radius: 14px;
                transform: none !important;
            }
        }

        @media (max-width: 600px) {
            .simulation-map {
                box-shadow: 0 0 15px rgba(34, 197, 94, 0.18);
            }
        }

        .simulation-card {
           border-radius: 18px;
           background: linear-gradient(
               135deg,
                rgba(15, 23, 42, 0.98),
                rgba(15, 23, 42, 0.92)
             );
            border: 1px solid rgba(34, 197, 94, 0.25);
            box-shadow: 0 20px 45px rgba(34, 197, 94, 0.15),
                        inset 0 0 15px rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(4px);
            padding: 1.5rem;
         }

        .step-number {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .step-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .step-text {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .step-pill {
            position: absolute;
            top: 0.85rem;
            right: 0.85rem;
            font-size: 0.7rem;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            background: rgba(14, 165, 233, 0.12);
            border: 1px solid rgba(14, 165, 233, 0.45);
            color: #7dd3fc;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            font-size: 0.78rem;
            }

        @media (max-width: 900px) {
            .steps-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* ===== Sección: Características ===== */

        .features-grid {
            margin-top: 2.2rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.4rem;
        }

        .feature-card {
            background: rgba(15, 23, 42, 0.96);
            border-radius: var(--radius-lg);
            padding: 1.2rem 1.2rem;
            border: 1px solid rgba(31, 41, 55, 0.9);
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: radial-gradient(circle at 30% 30%, #0ea5e9, #22c55e);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
        }

        .feature-title {
            font-size: 0.98rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .feature-text {
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        @media (max-width: 900px) {
            .features-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* ===== Sección: Capturas ===== */

        .gallery-grid {
            margin-top: 2.2rem;
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
            gap: 1.4rem;
        }

        .gallery-main,
        .gallery-side {
            background: rgba(15, 23, 42, 0.95);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(31, 41, 55, 0.9);
            padding: 1rem;
            min-height: 200px;
            position: relative;
            overflow: hidden;
        }

        .gallery-placeholder {
            border-radius: 0.9rem;
            border: 1px dashed rgba(148, 163, 184, 0.4);
            padding: 1.1rem;
            font-size: 0.86rem;
            color: var(--text-muted);
        }

        .gallery-tag {
            position: absolute;
            top: 0.9rem;
            left: 0.9rem;
            font-size: 0.7rem;
            padding: 0.16rem 0.6rem;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(148, 163, 184, 0.4);
            color: var(--text-muted);
        }

        @media (max-width: 900px) {
            .gallery-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* ===== Sección: Casos de uso ===== */

        .usecases-grid {
            margin-top: 2.2rem;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.4rem;
        }

        .usecase-card {
            border-radius: var(--radius-lg);
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(31, 41, 55, 0.9);
            padding: 1.2rem 1.25rem;
        }

        .usecase-title {
            font-size: 0.98rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .usecase-text {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        @media (max-width: 900px) {
            .usecases-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* ===== Sección: Precios ===== */

        .pricing-grid {
            margin-top: 2.3rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.4rem;
        }

        .pricing-card {
            border-radius: var(--radius-lg);
            background: rgba(15, 23, 42, 0.96);
            border: 1px solid rgba(31, 41, 55, 0.95);
            padding: 1.35rem 1.35rem 1.4rem;
            position: relative;
        }

        .pricing-card.highlight {
            border: 1px solid rgba(34, 197, 94, 0.9);
            box-shadow: 0 18px 45px rgba(34, 197, 94, 0.25);
        }

        .pricing-label {
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--text-muted);
            margin-bottom: 0.4rem;
        }

        .pricing-name {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.35rem;
        }

        .pricing-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
        }

        .pricing-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
        }

        .pricing-list {
            list-style: none;
            margin-bottom: 0.9rem;
            font-size: 0.86rem;
            color: var(--text-muted);
        }

        .pricing-list li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 0.3rem;
        }

        .pricing-list li::before {
            content: "•";
            color: var(--primary);
            font-size: 1.05rem;
        }

        .pricing-chip {
            position: absolute;
            top: 0.9rem;
            right: 0.95rem;
            font-size: 0.7rem;
            padding: 0.16rem 0.6rem;
            border-radius: 999px;
            background: rgba(34, 197, 94, 0.07);
            border: 1px solid rgba(34, 197, 94, 0.45);
            color: #bbf7d0;
        }

        .pricing-btn {
            border-radius: 999px;
            padding: 0.7rem 1.1rem;
            border: none;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
        }

        .pricing-btn.primary {
            background: linear-gradient(135deg, #22c55e, #0ea5e9);
            color: #020617;
        }

        .pricing-btn.ghost {
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.4);
            color: var(--text-main);
        }

        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* ===== Sección: FAQ ===== */

        .faq-grid {
            margin-top: 2.2rem;
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
            gap: 1.6rem;
        }

        .faq-item {
            padding: 0.9rem 1rem;
            border-radius: 1rem;
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(31, 41, 55, 0.9);
            margin-bottom: 0.7rem;
        }

        .faq-question {
            font-size: 0.93rem;
            font-weight: 500;
            margin-bottom: 0.3rem;
        }

        .faq-answer {
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        .faq-note {
            font-size: 0.86rem;
            color: var(--text-muted);
            background: rgba(15, 23, 42, 0.9);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(148, 163, 184, 0.4);
            padding: 1rem 1.05rem;
        }

        @media (max-width: 900px) {
            .faq-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* ===== Sección: Contacto ===== */

        .contact-grid {
            margin-top: 2.2rem;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
            gap: 1.6rem;
        }

        .contact-card {
            border-radius: var(--radius-lg);
            background: rgba(15, 23, 42, 0.96);
            border: 1px solid rgba(31, 41, 55, 0.95);
            padding: 1.4rem 1.3rem;
        }

        .contact-form {
            display: grid;
            gap: 0.85rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .form-label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .form-input,
        .form-textarea {
            border-radius: 0.9rem;
            border: 1px solid rgba(31, 41, 55, 0.9);
            background: rgba(15, 23, 42, 0.98);
            padding: 0.7rem 0.85rem;
            color: var(--text-main);
            font-size: 0.9rem;
            outline: none;
            resize: vertical;
            min-height: 42px;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: rgba(14, 165, 233, 0.8);
            box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.4);
        }

        .form-helper {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .contact-info {
            font-size: 0.9rem;
            color: var(--text-muted);
            display: grid;
            gap: 0.6rem;
        }

        .contact-highlight {
            font-size: 0.9rem;
            padding: 0.8rem 0.9rem;
            border-radius: 0.9rem;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.4);
        }

        .contact-email {
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .contact-email a {
            color: var(--primary);
        }

        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* ===== Footer ===== */

        .footer {
            border-top: 1px solid rgba(15, 23, 42, 0.95);
            background: #020617;
            padding: 1.5rem 0 1.8rem;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .footer-links {
            display: flex;
            gap: 1.25rem;
        }

        .footer-link {
            color: var(--text-muted);
        }

        .footer-link:hover {
            color: var(--text-main);
        }

        @media (max-width: 768px) {
            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* TABLA MODERNA DESCARGAS */
        .downloads-table {
            margin-top: 2rem;
            overflow-x: auto;
        }

        .downloads-table table {
            width: 100%;
            border-collapse: collapse;
            background: #0b1120;
            border-radius: 12px;
            overflow: hidden;
        }

        .downloads-table th {
            background: #111827;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
            color: #38bdf8;
        }

        .downloads-table td {
            padding: 1rem;
            border-top: 1px solid #1e293b;
            font-size: 0.9rem;
            color: #e2e8f0;
        }

        .downloads-table tr:hover {
            background: rgba(56, 189, 248, 0.08);
        }

        .dl-link {
            color: #38bdf8;
            font-weight: 600;
            text-decoration: none;
        }

        .dl-link:hover {
            text-decoration: underline;
        }

        /* ✔ FIX DEFINITIVO — Mantener navbar visible en todos los enlaces */
        section[id] {
            scroll-margin-top: 100px;
        }
        

        /* Ajustar el inner para que el contenido no se deforme */
        .navbar-inner {
            height: 100%;
            display: flex;
            align-items: center;
        }

        /* ===== FIX DEFINITIVO NAVBAR INVISIBLE ===== */

        /* La capa decorativa de las secciones queda detrás */
        section::before {
            z-index: 0 !important;
        }

        /* El contenido de cada sección queda por encima */
        section > .container {
            position: relative;
            z-index: 2 !important;
        }

        /* FIX para evitar que la navbar se descuadre al agregar más enlaces */
        .navbar-inner {
            gap: 2rem; /* separa logo y menú */
        }

        .nav-links {
            gap: 1.6rem; /* reduce un poco el espacio entre enlaces */
        }

        .navbar {
            padding-left: 0.8rem;
            padding-right: 0.8rem;
        }
        
        .plan-price {
        margin-top: 0.8rem;
        text-align: center;
        font-size: 1.25rem;
        font-weight: 600;
        color: #a5f3fc; /* tono celeste suave que combina con el highlight */
        opacity: 0.95;
        }

    

        /* --- Forzar que cada tarjeta distribuya el contenido verticalmente --- */
        .pricing-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* separa contenido del botón */
        }

        /* --- Centrar el botón dentro de cada tarjeta --- */
        .pricing-card .pricing-btn {
            align-self: center; /* centra horizontalmente */
            margin-top: 1.5rem;
        }

        /* ----- AJUSTE RESPONSIVO SOLO PARA MÓVIL (SECCIÓN LICENCIAS) ----- */
        @media (max-width: 768px) {

            /* La grilla de precios pasa a columna */
            .pricing-grid {
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 20px !important;
            }

            /* Cada tarjeta ocupa todo el ancho disponible */
            .pricing-card {
                width: 100% !important;
                max-width: none !important;
                margin: 0 !important;
            }
        }

        /* ===== FIX DEFINITIVO FOOTER DESBORDANDO EN MÓVILES ===== */

        @media (max-width: 600px) {
            .footer .nav-cta {
                max-width: 100%;
                width: 100%;
                text-align: center;
                justify-content: center;
                margin-top: 1rem;
                padding: 0.9rem 1rem;
                font-size: 0.9rem;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 0.8rem;
                width: 100%;
            }

            .footer-inner {
                flex-direction: column;
                align-items: center;
                gap: 1.2rem;
                text-align: center;
            }
        }
        
        /* =========================================
        Alinear y compactar tarjetas de licencias
        ========================================= */

        /* Todas las tarjetas tendrán la misma altura */
        .pricing-card {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding: 24px 32px !important;   /* compactado */
        }

        /* Encabezado compactado */
        .pricing-header {
            margin-bottom: 12px !important;
        }

        /* Título */
        .pricing-card h3 {
            margin-top: 4px !important;
            margin-bottom: 10px !important;
        }

        /* Descripción compactada */
        .pricing-desc {
            line-height: 1.35 !important;
            margin-bottom: 16px !important;
            min-height: 85px;               /* iguala altura entre tarjetas */
        }

        /* Lista de bullets */
        .pricing-list {
            margin-top: 6px !important;
            margin-bottom: 14px !important;
            min-height: 130px;              /* iguala altura también */
        }

        .pricing-list li {
            margin-bottom: 6px !important;
        }

        /* Texto inferior y botón */
        .pricing-meta {
            margin-top: auto !important;
            line-height: 1.35 !important;
        }

        /* Imagen VISA/MASTERCARD */
        .payment-logos {
            margin: 10px auto 0 auto !important;
            max-width: 130px;
        }

