﻿/* =========================================
   VARIABLES DE MARCA – NEXOSTUDIOGT
========================================= */
:root {
    --bg-dark: #050b10;
    --bg-dark-green: #0b1f1a;
    --neon-cyan: #3ddcff;
    --neon-blue: #3a7dff;
    --neon-green: #6dff8b;
    --text-main: #e6fdf5;
    --text-muted: #9fbfb5;
}

/* =========================================
   RESET & BASE
========================================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: radial-gradient(circle at top, #0b1f1a, #050b10 70%);
    color: var(--text-main);
    overflow-x: hidden;
}

    /* Estrellas */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.3), transparent), radial-gradient(1px 1px at 80% 40%, rgba(255,255,255,0.2), transparent), radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.25), transparent);
        opacity: 0.4;
        pointer-events: none;
        z-index: 0;
    }

/* =========================================
   LAYOUT GENERAL
========================================= */
section {
    position: relative;
    padding: 6rem 1rem;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

/* =========================================
   NAVBAR – BASE
========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient( to bottom, rgba(5, 11, 16, 0.9), rgba(5, 11, 16, 0.4) );
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

/* CONTENIDO */
.navbar-content {
    max-width: 1200px;
    margin: auto;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.35s ease;
}

/* IZQUIERDA */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

    .navbar-brand img {
        height: 40px;
        transition: height 0.35s ease;
    }

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* REDES */
.navbar-social {
    display: flex;
    gap: 1rem;
}

    .navbar-social a {
        color: var(--text-muted);
        font-size: 1.05rem;
        transition: all 0.3s ease;
    }

        .navbar-social a:hover {
            color: var(--neon-cyan);
            transform: translateY(-2px);
        }

/* MENU */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .navbar-menu a {
        text-decoration: none;
        color: var(--text-main);
        font-weight: 500;
        position: relative;
    }

        .navbar-menu a::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--neon-cyan);
            transition: width 0.3s ease;
        }

        .navbar-menu a:hover::after {
            width: 100%;
        }

/* BOTON CONTACTO */
.btn-nav {
    padding: 0.55rem 1.6rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    color: #000 !important;
    font-weight: 600;
}

/* =========================================
   NAVBAR – SCROLLED (SHRINK + GLOW)
========================================= */
.navbar.scrolled {
    background: rgba(5, 11, 16, 0.85);
    box-shadow: 0 8px 30px rgba(61, 220, 255, 0.15);
}

    .navbar.scrolled .navbar-content {
        padding: 0.7rem 1.5rem;
    }

    .navbar.scrolled .navbar-brand img {
        height: 32px;
    }

/* =========================================
   HERO
========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    text-align: center;
    background: radial-gradient(circle at top, #0b1f1a, #050b10 70%);
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.3), transparent), radial-gradient(1px 1px at 80% 40%, rgba(255,255,255,0.2), transparent), radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,0.25), transparent);
        opacity: 0.4;
    }

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 160px;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    /* Glow base */
    filter: drop-shadow(0 0 35px rgba(61,220,255,0.45));
    /* Movimiento más evidente */
    animation: heroFloatStrong 3.5s ease-in-out infinite;
}

/* Movimiento vertical + micro rotación */
@keyframes heroFloatStrong {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(0.6deg);
    }

    50% {
        transform: translateY(-18px) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-0.6deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

body.scrolling .hero-logo {
    filter: drop-shadow(0 0 55px rgba(61,220,255,0.9));
}

body.scrolling .orbit {
    filter: drop-shadow(0 0 16px rgba(61,220,255,1));
}


@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-gradient {
    background: linear-gradient( 90deg, var(--neon-cyan), var(--neon-blue), var(--neon-green) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 820px;
    margin: 2rem auto 3rem;
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* =========================================
   BOTONES
========================================= */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    color: #000;
    box-shadow: 0 0 35px rgba(77,255,179,0.4);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 50px rgba(77,255,179,0.6);
    }

.btn-secondary {
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

    .btn-secondary:hover {
        background: rgba(61,220,255,0.12);
    }

/* =========================================
   RESPONSIVE – TABLET
========================================= */
@media (max-width: 992px) {

    .hero-logo {
        width: 160px;
    }

    .hero-title {
        font-size: 3.4rem;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 90%;
    }
}

/* =========================================
   RESPONSIVE – MOBILE
========================================= */
@media (max-width: 576px) {

    .hero-section {
        min-height: 100vh;
        padding-top: 110px;
    }

    .hero-logo {
        width: 170px;
    }

    .hero-title {
        font-size: 3.1rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.4rem;
    }

    .btn {
        width: 100%;
        max-width: 360px;
        padding: 1.2rem 0;
    }

    .navbar-content {
        flex-direction: column;
        gap: 0.8rem;
    }

    .navbar-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }
}


/*----------------------------------------------Servicios-------------------------------------*/

/* =========================================
   SERVICIOS – SECTION
========================================= */
.services-section {
    padding: 7rem 1rem;
    position: relative;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4.5rem;
}

.services-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient( 90deg, var(--neon-cyan), var(--neon-blue), var(--neon-green) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* =========================================
   SERVICIOS – GRID
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* =========================================
   SERVICIOS – CARD
========================================= */
.service-card {
    position: relative;
    padding: 2.8rem 2.4rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(61, 220, 255, 0.18);
        border-color: rgba(61, 220, 255, 0.35);
    }

/* =========================================
   SERVICIOS – ICONS
========================================= */
.service-icon {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    filter: drop-shadow(0 0 20px rgba(61,220,255,0.4));
}

/* =========================================
   SERVICIOS – TEXT
========================================= */
.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   RESPONSIVE – SERVICIOS (TABLET)
========================================= */
@media (max-width: 992px) {

    .services-title {
        font-size: 2.6rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* =========================================
   RESPONSIVE – SERVICIOS (MOBILE)
========================================= */
@media (max-width: 576px) {

    .services-title {
        font-size: 2.4rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .service-card {
        padding: 2.6rem 2.2rem;
    }
}


/*---------------------------------------------BENEFICIOS--------------------------------------------------*/
/* =========================================
   BENEFICIOS – SECTION
========================================= */
.benefits-section {
    padding: 7rem 1rem;
    position: relative;
}

.benefits-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4.5rem;
}

.benefits-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* =========================================
   BENEFICIOS – GRID
========================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* =========================================
   BENEFICIOS – CARD
========================================= */
.benefit-card {
    padding: 2.6rem 2.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 55px rgba(61, 220, 255, 0.18);
        border-color: rgba(61, 220, 255, 0.35);
    }

/* =========================================
   BENEFICIOS – ICONS
========================================= */
.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.6rem;
    filter: drop-shadow(0 0 18px rgba(61,220,255,0.35));
}

/* =========================================
   BENEFICIOS – TEXT
========================================= */
.benefit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   RESPONSIVE – BENEFICIOS (TABLET)
========================================= */
@media (max-width: 992px) {

    .benefits-title {
        font-size: 2.6rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }
}

/* =========================================
   RESPONSIVE – BENEFICIOS (MOBILE)
========================================= */
@media (max-width: 576px) {

    .benefits-title {
        font-size: 2.4rem;
    }

    .benefits-subtitle {
        font-size: 1.1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .benefit-card {
        padding: 2.5rem 2.1rem;
    }
}

/*------------------------------------------------------------------PAQUETES------------------------------------------------*/
/* =========================================
   PAQUETES – SECTION
========================================= */
.pricing-section {
    padding: 7rem 1rem;
    position: relative;
}

/* =========================================
   HEADER
========================================= */
.pricing-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4.5rem;
}

.pricing-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
}

/* =========================================
   GRID
========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.6rem;
}

/* =========================================
   CARD BASE
========================================= */
.pricing-card {
    position: relative;
    padding: 3rem 2.6rem;
    border-radius: 26px;
    background: linear-gradient(180deg, #0b1118, #05080d);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .pricing-card:hover {
        transform: translateY(-8px);
    }

    /* =========================================
   START – VERDE
========================================= */
    .pricing-card:nth-child(1) {
        border-color: rgba(0,230,118,.4);
        box-shadow: 0 0 35px rgba(0,230,118,.25), inset 0 0 0 1px rgba(0,230,118,.2);
    }

        .pricing-card:nth-child(1):hover {
            box-shadow: 0 0 55px rgba(0,230,118,.4), inset 0 0 0 1px rgba(0,230,118,.35);
        }

    /* =========================================
   PRO – CYAN (DESTACADO)
========================================= */
    .pricing-card.featured {
        transform: scale(1.05);
        border-color: rgba(61,220,255,.65);
        box-shadow: 0 0 70px rgba(61,220,255,.5), inset 0 0 0 1px rgba(61,220,255,.35);
    }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
            box-shadow: 0 0 90px rgba(61,220,255,.7), inset 0 0 0 1px rgba(61,220,255,.5);
        }

    /* =========================================
   PREMIUM – VIOLETA
========================================= */
    .pricing-card:nth-child(3) {
        border-color: rgba(186,104,200,.5);
        box-shadow: 0 0 45px rgba(186,104,200,.35), inset 0 0 0 1px rgba(186,104,200,.3);
    }

        .pricing-card:nth-child(3):hover {
            box-shadow: 0 0 65px rgba(186,104,200,.55), inset 0 0 0 1px rgba(186,104,200,.45);
        }

/* =========================================
   BADGE
========================================= */
.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5efcff, #35ffb2);
    color: #000;
    padding: .45rem 1.3rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(61,220,255,.7);
}

/* =========================================
   TEXTOS
========================================= */
.pricing-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    margin-bottom: .8rem;
    color: #fff;
}

.pricing-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
}

/* =========================================
   FEATURES
========================================= */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.6rem;
}

    .pricing-features li {
        margin-bottom: .85rem;
        font-size: .95rem;
        color: #fff;
        position: relative;
        padding-left: 1.6rem;
    }

        .pricing-features li::before {
            content: "✔";
            position: absolute;
            left: 0;
        }

/* Colores por plan */
.pricing-card:nth-child(1) .pricing-features li::before {
    color: #00e676;
}

.pricing-card.featured .pricing-features li::before {
    color: #5efcff;
}

.pricing-card:nth-child(3) .pricing-features li::before {
    color: #ba68c8;
}

/* =========================================
   BOTÓN
========================================= */
.pricing-card .btn {
    border-radius: 999px;
    font-weight: 600;
    padding: .85rem 1.6rem;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .pricing-card {
        padding: 2.8rem 2.2rem;
    }
}

/* =========================================
   MODALES PREMIUM – NIVEL AGENCIA
========================================= */

/* ---------- OVERLAY ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient( circle at top, rgba(61,220,255,0.15), rgba(0,0,0,0.9) );
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
}

    .modal-overlay.active {
        display: flex;
    }

/* ---------- MODAL BOX ---------- */
.modal-box {
    width: 100%;
    max-width: 760px;
    max-height: 88vh;
    background: linear-gradient(180deg, #0f172a, #0a0f1e);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 40px 90px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    animation: modalIn 0.45s ease forwards;
}

/* ---------- ANIMACIÓN ---------- */
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ---------- HEADER FIJO ---------- */
.modal-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: linear-gradient(180deg, #0f172a 70%, transparent);
    padding: 1.0rem 1.48rem 0.5rem; /* ⬅ más delgado */
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .modal-header h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.7rem;
        line-height: 1.2;
    }

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.15rem;
}

/* ---------- BOTÓN CERRAR ---------- */
.modal-close {
    position: absolute;
    top: 1.4rem;
    right: 2rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .modal-close:hover {
        background: rgba(61,220,255,0.15);
        border-color: var(--neon-cyan);
        transform: rotate(90deg);
    }

/* ---------- CONTENIDO ---------- */
.modal-content {
    padding: 2.2rem 2.6rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-cyan) transparent;
}

    .modal-content::-webkit-scrollbar {
        width: 6px;
    }

    .modal-content::-webkit-scrollbar-thumb {
        background: linear-gradient(var(--neon-cyan), var(--neon-green));
        border-radius: 10px;
    }

/* ---------- PRECIO ---------- */
.modal-price {
    background: rgba(61,220,255,0.1);
    border: 1px solid rgba(61,220,255,0.3);
    padding: 1.2rem 1.4rem;
    border-radius: 18px;
    margin-bottom: 2rem;
}

/* ---------- TÍTULOS SECCIÓN ---------- */
.modal-content h4 {
    margin: 2rem 0 1rem;
    font-size: 1.15rem;
    position: relative;
}

    .modal-content h4::after {
        content: "";
        display: block;
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, var(--neon-cyan), transparent);
        margin-top: 0.4rem;
    }

/* ---------- LISTAS ---------- */
.modal-content ul {
    padding-left: 1.4rem;
}

    .modal-content ul li {
        margin-bottom: 0.6rem;
        line-height: 1.55;
    }

/* ICONOS AUTOMÁTICOS */
.modal-content h4:contains("Incluye")::before {
    content: "✔ ";
    color: #00e676;
}

.modal-content h4:contains("No incluye")::before {
    content: "✖ ";
    color: #ff5c7c;
}

.modal-content h4:contains("SEO")::before {
    content: "🧠 ";
}

/* ---------- CTA STICKY ---------- */
.modal-cta {
    position: sticky;
    bottom: 0;
    padding: 1.4rem 2.6rem;
    background: linear-gradient(180deg, transparent, #0a0f1e 60%);
    border-top: 1px solid rgba(255,255,255,0.08);
}

    .modal-cta .btn {
        width: 100%;
        font-size: 1.05rem;
        padding: 0.9rem;
    }

/* ---------- MOBILE ---------- */
@media (max-width: 576px) {
    .modal-header,
    .modal-content,
    .modal-cta {
        padding-left: 1.8rem;
        padding-right: 1.8rem;
    }
}

/* =========================================
   MOBILE FIX – CTA MODALES
========================================= */
@media (max-width: 576px) {

    /* Modal un poco más compacta */
    .modal-box {
        max-height: 92vh;
        border-radius: 22px;
    }

    /* Header más compacto */
    .modal-header {
        padding: 1.8rem 1.8rem 1.2rem;
    }

        .modal-header h3 {
            font-size: 1.6rem;
            line-height: 1.2;
        }

    .modal-subtitle {
        font-size: 0.95rem;
    }

    /* Contenido más respirable */
    .modal-content {
        padding: 1.6rem 1.8rem;
    }

    /* CTA sticky optimizado para pulgar */
    .modal-cta {
        padding: 1.2rem 1.4rem 1.4rem;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        background: linear-gradient( 180deg, rgba(10,15,30,0.75), #0a0f1e 70% );
    }

        /* Botón principal */
        .modal-cta .btn.btn-primary {
            font-size: 1rem;
            padding: 0.95rem;
            border-radius: 14px;
        }

        /* Botón WhatsApp */
        .modal-cta .btn.btn-secondary {
            font-size: 0.95rem;
            padding: 0.85rem;
            border-radius: 14px;
            opacity: 0.9;
        }

    /* Evita que el botón cerrar estorbe */
    .modal-close {
        top: 1.4rem;
        right: 1.4rem;
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}

/* =========================================
   GLOW SUAVE – BORDE PREMIUM
========================================= */
.modal-box {
    position: relative;
    isolation: isolate; /* importante para el glow */
}

    .modal-box::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        background: linear-gradient( 135deg, rgba(61,220,255,0.45), rgba(109,255,139,0.25), rgba(186,104,200,0.25) );
        opacity: 0.35;
        filter: blur(14px);
        z-index: -1;
    }

/* =========================================
   HEADER CON GRADIENTE SUTIL
========================================= */
.modal-header {
    background: linear-gradient( 135deg, rgba(61,220,255,0.18), rgba(109,255,139,0.08), rgba(186,104,200,0.10) ), linear-gradient( 180deg, #0f172a 70%, transparent );
}

    /* Línea de acento elegante */
    .modal-header::after {
        content: "";
        position: absolute;
        left: 2.6rem;
        bottom: 0;
        width: 60px;
        height: 2px;
        background: linear-gradient( to right, var(--neon-cyan), transparent );
    }

@media (max-width: 576px) {
    .modal-box::before {
        opacity: 0.25;
        filter: blur(10px);
    }
}

/*---------------------------------------------SECCION PROMOCION---------------------------------------------------------*/
/* =========================================
   PROMOCIONES – SECTION
========================================= */
.enterprise-section {
    padding: 7rem 1rem;
    position: relative;
    background: linear-gradient( 180deg, #05080d, #020407 );
}

/* =========================================
   WRAPPER
========================================= */
.enterprise-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 4.5rem;
    border-radius: 28px;
    background: linear-gradient( 180deg, #0b1118, #070b11 );
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 55px rgba(61,220,255,0.14);
}

/* =========================================
   CONTENT
========================================= */
.enterprise-content {
    max-width: 720px;
}

/* =========================================
   BADGE
========================================= */
.enterprise-badge {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: 0.45rem 1.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5efcff;
    border: 1px solid rgba(61,220,255,0.45);
    border-radius: 999px;
    background: rgba(61,220,255,0.08);
}

/* =========================================
   TITLES & TEXT
========================================= */
.enterprise-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

.enterprise-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.4rem;
}

/* =========================================
   FEATURES
========================================= */
.enterprise-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

    .enterprise-features li {
        position: relative;
        padding-left: 1.6rem;
        margin-bottom: 0.9rem;
        font-size: 1rem;
        color: #fff;
    }

        .enterprise-features li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--neon-cyan);
        }

/* =========================================
   NOTA INFORMATIVA
========================================= */
.enterprise-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* =========================================
   CTA
========================================= */
.enterprise-cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

    .enterprise-cta .btn {
        padding: 0.9rem 1.9rem;
        font-weight: 600;
        border-radius: 999px;
    }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {

    .enterprise-wrapper {
        padding: 3.5rem 3rem;
    }

    .enterprise-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 576px) {

    .enterprise-section {
        padding: 5.5rem 1rem;
    }

    .enterprise-wrapper {
        padding: 3rem 2.2rem;
    }

    .enterprise-title {
        font-size: 2rem;
    }

    .enterprise-subtitle {
        font-size: 1.05rem;
    }

    .enterprise-cta {
        flex-direction: column;
    }

        .enterprise-cta .btn {
            width: 100%;
            text-align: center;
        }
}

/*----------------------------------PROCESO------------------------------------------------*/
/* =========================================
   PROCESO – SECTION
========================================= */
.process-section {
    padding: 8rem 1rem;
    position: relative;
    overflow: hidden;
}

    .process-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 20%, rgba(61,220,255,0.14), transparent 40%), radial-gradient(circle at 85% 80%, rgba(0,0,0,0.9), transparent 45%);
        pointer-events: none;
    }

.process-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 6rem;
}

.process-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* =========================================
   TIMELINE BASE
========================================= */
.process-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

    /* Línea central */
    .process-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100%;
        background: linear-gradient( 180deg, transparent, var(--neon-cyan), var(--neon-green), transparent );
        box-shadow: 0 0 30px rgba(61,220,255,0.6);
    }

/* =========================================
   STEP BASE
========================================= */
.process-step {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 5.5rem;
}

    /* Izquierda */
    .process-step:nth-child(odd) {
        justify-content: flex-end;
        padding-right: 50%;
    }

    /* Derecha */
    .process-step:nth-child(even) {
        justify-content: flex-start;
        padding-left: 50%;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

/* =========================================
   STEP NUMBER
========================================= */
.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 25px rgba(61,220,255,0.8), 0 0 60px rgba(120,255,200,0.5);
}

    .step-number::after {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 1px solid rgba(61,220,255,0.4);
        animation: pulse 2.5s ease-out infinite;
    }

/* =========================================
   CONTENT CARD (MISMO TAMAÑO)
========================================= */
.step-content {
    width: 420px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.4rem 2.6rem;
    border-radius: 22px;
    background: linear-gradient( 145deg, rgba(61,220,255,0.14), rgba(0,0,0,0.88) );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(61,220,255,0.18);
    position: relative;
    transition: all 0.45s ease;
}

    /* Conector horizontal */
    .step-content::before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 55px;
        height: 2px;
        background: linear-gradient( to right, var(--neon-cyan), transparent );
    }

/* Conector según lado */
.process-step:nth-child(odd) .step-content::before {
    right: -55px;
    transform: translateY(-50%) rotate(180deg);
}

.process-step:nth-child(even) .step-content::before {
    left: -55px;
}

/* Hover */
.step-content:hover {
    transform: translateY(-6px);
    border-color: rgba(61,220,255,0.45);
    box-shadow: 0 30px 70px rgba(61,220,255,0.25), inset 0 0 0 1px rgba(61,220,255,0.2);
}

/* =========================================
   TEXT
========================================= */
.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    margin-bottom: 0.6rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(0.6);
    }

    70% {
        opacity: 0;
        transform: scale(1.6);
    }

    100% {
        opacity: 0;
    }
}

/* =========================================
   RESPONSIVE – MOBILE PERFECTO
========================================= */
@media (max-width: 768px) {

    .process-timeline::before {
        left: 24px;
    }

    .process-step {
        padding: 0 !important;
        justify-content: flex-start !important;
        margin-bottom: 4rem;
    }

    .step-number {
        left: 24px;
        transform: none;
    }

    .step-content {
        width: 100%;
        min-height: auto;
        margin-left: 70px;
    }

        .step-content::before {
            left: -46px;
            transform: translateY(-50%);
        }
}

/* =========================================
   FAQ – PREGUNTAS FRECUENTES
========================================= */

.faq-section {
    padding: 6rem 1.5rem;
    background: linear-gradient( to bottom, rgba(5, 11, 16, 0.95), rgba(5, 11, 16, 0.85) );
}

.faq-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.2rem;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

/* Question button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

    .faq-question:hover {
        background: rgba(255,255,255,0.05);
    }

.faq-icon {
    font-size: 1.6rem;
    color: #7ab8ff;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0,0,0,0.15);
}

    .faq-answer p {
        padding: 0 2rem 1.5rem;
        color: rgba(255,255,255,0.75);
        line-height: 1.7;
    }

/* Active state */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* + se vuelve X */
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.3rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.3rem;
    }
}

/*-------------------------------------------CONTACTO----------------------------------------------*/
/* =========================================
   CONTACTO – SECTION
========================================= */
.contact-section {
    padding: 7rem 1rem;
    position: relative;
    overflow: hidden;
}

/* =========================================
   CONTACTO – CARD PRINCIPAL
========================================= */
.contact-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    padding: 4.5rem 4rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
    align-items: center;
    overflow: hidden; /* 🔑 evita la línea derecha */
}

/* =========================================
   INFO
========================================= */
.contact-info {
    max-width: 480px;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* =========================================
   ITEMS (EMAIL / TELÉFONO)
========================================= */
.contact-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

/* Texto */
.contact-text strong {
    display: block;
    font-weight: 600;
}

.contact-text p {
    margin: 0.2rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   ICONOS
========================================= */
.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
    box-shadow: 0 0 22px rgba(61,220,255,0.25);
    flex-shrink: 0;
}

    .contact-icon.whatsapp {
        box-shadow: 0 0 22px rgba(109,255,139,0.35);
    }

/* =========================================
   BOTÓN WHATSAPP
========================================= */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #6dff8b);
    color: #001b10;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(109,255,139,0.4), 0 0 35px rgba(109,255,139,0.25);
    transition: all 0.35s ease;
    white-space: nowrap;
}

    .btn-whatsapp:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 0 25px rgba(109,255,139,0.7), 0 0 55px rgba(109,255,139,0.45);
    }

/* =========================================
   FORM
========================================= */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 1.15rem 1.3rem;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(255,255,255,0.04);
        color: var(--text-main);
        font-size: 1rem;
        outline: none;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 0 2px rgba(61,220,255,0.25);
        }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

/* =========================================
   SUBMIT ANIMADO
========================================= */
.submit-btn {
    position: relative;
    overflow: hidden;
}

/* =========================================
   NEBULOSA SUAVE (CONTROLADA)
========================================= */
.contact-wrapper::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 30% 40%, rgba(61,220,255,0.12), transparent 40%), radial-gradient(circle at 70% 60%, rgba(109,255,139,0.12), transparent 45%);
    animation: nebulaMove 16s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.contact-wrapper > * {
    position: relative;
    z-index: 1;
}

@keyframes nebulaMove {
    from {
        transform: translateY(-15px);
    }

    to {
        transform: translateY(15px);
    }
}

/* =========================================
   RESPONSIVE – TABLET
========================================= */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 4rem 3rem;
        text-align: left;
    }
}

/* =========================================
   RESPONSIVE – MOBILE (FIX CONTACTO)
========================================= */
@media (max-width: 576px) {

    .contact-wrapper {
        padding: 3rem 2rem;
    }

    .contact-title {
        font-size: 2.3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* ITEM: icono + texto alineados como email */
    .contact-item {
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    /* Texto SIEMPRE alineado a la izquierda */
    .contact-text {
        text-align: left;
    }

    /* BOTÓN WHATSAPP: fila completa y centrado */
    .contact-item .btn-whatsapp {
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 0.8rem;
        font-size: 0.85rem;
    }

    /* Redes sociales centradas (opcional pero recomendado) */
    .contact-social {
        justify-content: center;
    }
}

/* ===============================
   FIX ICONOS REDES SOCIALES
   (IG / FB / WhatsApp)
=============================== */
.contact-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 3rem;
}

    .contact-social a {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.06);
        transition: all 0.3s ease;
        text-decoration: none;
    }

        /* ICONO COMO TAL */
        .contact-social a i {
            font-size: 1.2rem;
            line-height: 1;
            color: #cfefff; /* color base limpio */
            transition: all 0.3s ease;
        }

        /* HOVER */
        .contact-social a:hover {
            background: rgba(61,220,255,0.18);
            box-shadow: 0 0 22px rgba(61,220,255,0.45);
            transform: translateY(-3px);
        }

            .contact-social a:hover i {
                color: #3ddcff;
            }

/* =========================================
   CONTACTO – LINKS SEMÁNTICOS
========================================= */

.contact-text a {
    color: inherit; /* hereda color del texto */
    text-decoration: none; /* quita subrayado */
    font-weight: 500;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

    .contact-text a:hover {
        color: #7ab8ff; /* o tu color acento */
        text-shadow: 0 0 8px rgba(122, 184, 255, 0.6);
    }

/*------------------------------FOOTER----------------------------------------------------------------------------*/
/* =========================================
   FOOTER – BASE
========================================= */
.footer {
    position: relative;
    padding: 6rem 1rem 0;
    background: linear-gradient( to top, rgba(5, 11, 16, 0.96), rgba(5, 11, 16, 0.65) );
    border-top: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

    /* Nebulosa sutil */
    .footer::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 20% 30%, rgba(61,220,255,0.08), transparent 40%), radial-gradient(circle at 80% 70%, rgba(109,255,139,0.08), transparent 45%);
        pointer-events: none;
        animation: footerNebula 18s ease-in-out infinite alternate;
    }

@keyframes footerNebula {
    from {
        transform: translateY(-25px);
    }

    to {
        transform: translateY(25px);
    }
}

/* =========================================
   FOOTER – CONTAINER
========================================= */
.footer-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

/* =========================================
   FOOTER – BRAND
========================================= */
.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

    .footer-logo img {
        width: 42px;
        filter: drop-shadow(0 0 14px rgba(61,220,255,0.45));
    }

    .footer-logo span {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.35rem;
        font-weight: 600;
    }

.footer-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================================
   FOOTER – SOCIAL
========================================= */
.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

    .footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.06);
        color: var(--text-muted);
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            color: var(--neon-cyan);
            background: rgba(61,220,255,0.18);
            box-shadow: 0 0 28px rgba(61,220,255,0.45);
            transform: translateY(-3px);
        }

/* =========================================
   FOOTER – LINKS / LEGAL
========================================= */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.4rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    padding-left: 0;
    transition: all 0.3s ease;
}

    .footer-links a::before {
        content: "›";
        position: absolute;
        left: -12px;
        opacity: 0;
        color: var(--neon-cyan);
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--neon-cyan);
        padding-left: 10px;
    }

        .footer-links a:hover::before {
            opacity: 1;
            left: 0;
        }

/* =========================================
   FOOTER – CONTACT
========================================= */
.footer-contact p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

/* =========================================
   FOOTER – BOTTOM
========================================= */
.footer-bottom {
    padding: 1.8rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}

    .footer-bottom p {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

/* =========================================
   RESPONSIVE – TABLET
========================================= */
@media (max-width: 992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin: 0 auto;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* =========================================
   RESPONSIVE – MOBILE
========================================= */
@media (max-width: 576px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-links ul,
    .footer-contact {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* =========================================
   CONTACTO – EMAIL Y TELÉFONO (LINKS SEO)
========================================= */

.contact-text a,
.footer-contact a {
    color: #e8f9ff; /* mismo tono del texto */
    text-decoration: none; /* quita subrayado */
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color .25s ease, text-shadow .25s ease;
}

    /* Hover elegante */
    .contact-text a:hover,
    .footer-contact a:hover {
        color: #5fffd7; /* acento futurista */
        text-shadow: 0 0 8px rgba(95, 255, 215, 0.6);
    }

/* Íconos alineados */
.footer-contact i,
.contact-icon i {
    margin-right: .4rem;
    color: #7ab8ff;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .contact-text a,
    .footer-contact a {
        font-size: 1rem;
    }
}

/*_____________________________________MOBIL progress GLOBAL______________________________________________________*/
/* =====================================================
   FIX GLOBAL MOBILE – CENTRADO Y ESPACIADO
===================================================== */
@media (max-width: 576px) {

    body {
        overflow-x: hidden;
    }

    section {
        padding: 4.5rem 1rem; /* antes 6rem */
    }

    .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .navbar-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }

    .navbar-left {
        flex-direction: column;
        gap: 0.6rem;
    }

    .navbar-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .btn-nav {
        margin-top: 0.5rem;
        padding: 0.7rem 2.2rem;
    }
}

@media (max-width: 576px) {

    .services-grid,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.6rem;
    }

    .service-card,
    .benefit-card,
    .pricing-card {
        padding: 2.4rem 2rem;
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem 1.6rem;
        text-align: center;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .contact-social {
        justify-content: center;
    }

    .contact-card {
        margin-top: 2.5rem;
    }

    .contact-form {
        width: 100%;
    }
}

/* =====================================================
   NAVBAR MOBILE – MINIMAL (LOGO + REDES)
===================================================== */
@media (max-width: 576px) {

    /* Navbar estructura */
    .navbar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.9rem 1rem;
    }

    /* Mantener logo + nombre */
    .navbar-left {
        flex-direction: row;
        gap: 0.6rem;
    }

    .navbar-brand img {
        height: 34px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    /* Mostrar redes */
    .navbar-social {
        display: flex;
        gap: 0.9rem;
    }

    /* ❌ Ocultar menú y botón */
    .navbar-menu,
    .btn-nav {
        display: none !important;
    }
}

/* =====================================================
   FONDO ESPACIAL ULTRA — OVERDRIVE
   + Estrellas x10
   + Fugaces frecuentes
   + Enjambre orbital en logo
===================================================== */

body {
    position: relative;
    overflow-x: hidden;
    background: radial-gradient(circle at top, #061b1f, #010304 75%);
}

    /* ===============================
   ESTRELLAS LEJANAS (MUCHÍSIMAS)
=============================== */
    body::before {
        content: "";
        position: fixed;
        inset: -600%;
        background-image: radial-gradient(1px 1px at 5% 5%, rgba(255,255,255,.5), transparent), radial-gradient(1px 1px at 10% 40%, rgba(255,255,255,.45), transparent), radial-gradient(1px 1px at 20% 80%, rgba(255,255,255,.42), transparent), radial-gradient(1px 1px at 30% 25%, rgba(255,255,255,.48), transparent), radial-gradient(1px 1px at 40% 60%, rgba(255,255,255,.44), transparent), radial-gradient(1px 1px at 50% 15%, rgba(255,255,255,.46), transparent), radial-gradient(1px 1px at 60% 75%, rgba(255,255,255,.43), transparent), radial-gradient(1px 1px at 70% 35%, rgba(255,255,255,.47), transparent), radial-gradient(1px 1px at 80% 55%, rgba(255,255,255,.45), transparent), radial-gradient(1px 1px at 90% 20%, rgba(255,255,255,.5), transparent);
        background-size: 140px 140px;
        animation: starsFar 360s linear infinite;
        opacity: 0.6;
        z-index: 0;
        pointer-events: none;
    }

    /* ===============================
   ESTRELLAS MEDIAS
=============================== */
    body::after {
        content: "";
        position: fixed;
        inset: -600%;
        background-image: radial-gradient(1.8px 1.8px at 10% 30%, rgba(255,255,255,.6), transparent), radial-gradient(1.8px 1.8px at 30% 60%, rgba(255,255,255,.55), transparent), radial-gradient(1.8px 1.8px at 50% 20%, rgba(255,255,255,.58), transparent), radial-gradient(1.8px 1.8px at 70% 75%, rgba(255,255,255,.56), transparent), radial-gradient(1.8px 1.8px at 90% 45%, rgba(255,255,255,.6), transparent);
        background-size: 220px 220px;
        animation: starsMid 240s linear infinite;
        opacity: 0.7;
        z-index: 0;
        pointer-events: none;
    }

/* ===============================
   ESTRELLAS NEON CERCANAS
=============================== */
.stars-neon {
    position: fixed;
    inset: -600%;
    background-image: radial-gradient(2.2px 2.2px at 15% 25%, rgba(61,220,255,.85), transparent), radial-gradient(2.2px 2.2px at 35% 65%, rgba(109,255,139,.75), transparent), radial-gradient(2.2px 2.2px at 55% 15%, rgba(61,220,255,.8), transparent), radial-gradient(2.2px 2.2px at 75% 55%, rgba(109,255,139,.7), transparent), radial-gradient(2.2px 2.2px at 95% 85%, rgba(61,220,255,.78), transparent);
    background-size: 300px 300px;
    animation: starsNear 160s linear infinite;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

/* ===============================
   NEBULOSAS
=============================== */
.space-nebula {
    position: fixed;
    inset: -300%;
    background: radial-gradient(circle at 30% 40%, rgba(61,220,255,0.22), transparent 65%), radial-gradient(circle at 70% 60%, rgba(109,255,139,0.2), transparent 70%), radial-gradient(circle at 50% 20%, rgba(61,220,255,0.18), transparent 75%);
    animation: nebulaMove 200s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

/* ===============================
   ESTRELLAS FUGACES (MÁS Y MÁS)
=============================== */
.shooting-star {
    position: fixed;
    top: -25%;
    width: 2px;
    height: 180px;
    background: linear-gradient(180deg, rgba(61,220,255,1), transparent);
    opacity: 0;
    animation: shoot 8s linear infinite;
    z-index: 0;
    pointer-events: none;
}

    .shooting-star:nth-child(2) {
        left: 15%;
        animation-delay: 2s;
    }

    .shooting-star:nth-child(3) {
        left: 35%;
        animation-delay: 4s;
    }

    .shooting-star:nth-child(4) {
        left: 55%;
        animation-delay: 6s;
    }

    .shooting-star:nth-child(5) {
        left: 75%;
        animation-delay: 8s;
    }

    .shooting-star:nth-child(6) {
        left: 90%;
        animation-delay: 10s;
    }

/* ===============================
   LOGO — ENJAMBRE ORBITAL
=============================== */
.hero-logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-orbit {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    filter: blur(30px);
    background: conic-gradient( rgba(61,220,255,0), rgba(61,220,255,0.7), rgba(109,255,139,0.6), rgba(61,220,255,0) );
    animation: orbit 14s linear infinite;
    z-index: -1;
}

/* Partículas múltiples */
.hero-logo-wrapper span.particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(61,220,255,0.95);
    transform-origin: var(--radius) 0;
    animation: particleOrbit var(--speed) linear infinite;
}

/* ===============================
   ANIMACIONES
=============================== */
@keyframes starsFar {
    to {
        transform: translateY(3000px);
    }
}

@keyframes starsMid {
    to {
        transform: translateY(4200px);
    }
}

@keyframes starsNear {
    to {
        transform: translateY(5600px);
    }
}

@keyframes nebulaMove {
    from {
        transform: translate(0,0) scale(1);
    }

    to {
        transform: translate(-300px,300px) scale(1.25);
    }
}

@keyframes shoot {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(150vh);
    }
}

@keyframes orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes particleOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-logo-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 3rem;
}

/* Base partículas */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff, rgba(255,255,255,0.2));
    transform-origin: -80px center;
    filter: drop-shadow(0 0 10px rgba(61,220,255,0.9));
}

/* Variaciones */
.orbit-1 {
    animation: orbitFast 6s linear infinite;
}

.orbit-2 {
    width: 5px;
    height: 5px;
    transform-origin: -95px center;
    animation: orbitFast 8s linear infinite reverse;
    background: radial-gradient(circle, #6dff8b, rgba(109,255,139,0.2));
}

.orbit-3 {
    width: 4px;
    height: 4px;
    transform-origin: -110px center;
    animation: orbitSlow 12s linear infinite;
}

.orbit-4 {
    width: 3px;
    height: 3px;
    transform-origin: -125px center;
    animation: orbitFast 5s linear infinite reverse;
}

.orbit-5 {
    width: 2.5px;
    height: 2.5px;
    transform-origin: -140px center;
    animation: orbitSlow 14s linear infinite;
}

.orbit-6 {
    width: 2px;
    height: 2px;
    transform-origin: -155px center;
    animation: orbitFast 4s linear infinite;
}

/* Animaciones */
@keyframes orbitFast {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitSlow {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* ===============================
   ANILLO ORBITAL PLANETARIO
================================ */
.planet-ring {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 1.6px solid rgba(61,220,255,0.35);
    filter: drop-shadow(0 0 25px rgba(61,220,255,0.45));
    transform: rotateX(65deg);
    animation: ringRotate 14s linear infinite;
    pointer-events: none;
}

    /* Brillo dinámico del anillo */
    .planet-ring::after {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1px solid rgba(109,255,139,0.35);
        filter: blur(2px);
    }

@keyframes ringRotate {
    from {
        transform: rotateX(65deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(65deg) rotateZ(360deg);
    }
}

/* ===============================
   NEBULOSA PULSANTE
================================ */
.nebula-core {
    position: absolute;
    inset: -80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(61,220,255,0.25), transparent 55%), radial-gradient(circle at 70% 60%, rgba(109,255,139,0.22), transparent 60%), radial-gradient(circle at 50% 50%, rgba(58,125,255,0.18), transparent 65%);
    filter: blur(22px);
    opacity: 0.85;
    animation: nebulaPulse 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes nebulaPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

body.scrolling .nebula-core {
    opacity: 1;
    filter: blur(26px);
}

body.scrolling .planet-ring {
    filter: drop-shadow(0 0 45px rgba(61,220,255,0.9));
}

/* =====================================================
   SUBMIT & VALIDACIONES – CONTACTO
   ESPACIAL PREMIUM – COHETE + PARTÍCULAS + MENSAJE
===================================================== */

/* ===============================
   VALIDACIONES VISUALES
=============================== */

/* Válido */
.contact-form input:valid,
.contact-form textarea:valid {
    border-color: rgba(109,255,139,0.6);
    box-shadow: 0 0 0 2px rgba(109,255,139,0.18);
}

/* Error */
.contact-form input:invalid:focus,
.contact-form textarea:invalid:focus {
    border-color: rgba(255,120,120,0.8);
    box-shadow: 0 0 0 2px rgba(255,120,120,0.25);
    animation: inputShake 0.35s ease;
}

@keyframes inputShake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

/* ===============================
   BOTÓN BASE
=============================== */

.submit-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

    /* Aura energética */
    .submit-btn::before {
        content: "";
        position: absolute;
        inset: -60%;
        background: radial-gradient(circle, rgba(61,220,255,0.45), transparent 60%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .submit-btn:hover::before {
        opacity: 1;
    }

    /* ===============================
   LOADING – MOTOR ESPACIAL
=============================== */

    .submit-btn.loading {
        pointer-events: none;
    }

        .submit-btn.loading::after {
            content: "";
            width: 26px;
            height: 26px;
            border: 3px solid rgba(255,255,255,0.25);
            border-top-color: #3ddcff;
            border-radius: 50%;
            position: absolute;
            inset: 0;
            margin: auto;
            animation: spin 0.9s linear infinite;
            z-index: 4;
        }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===============================
   ÉXITO – COHETE DESPEGANDO
=============================== */

.submit-btn.success {
    background: linear-gradient(135deg, #3ddcff, #6dff8b);
    color: #001010;
    box-shadow: 0 0 35px rgba(61,220,255,0.9), 0 0 80px rgba(109,255,139,0.7);
}

    /* Texto principal se oculta */
    .submit-btn.success span {
        opacity: 0;
    }

    /* ===============================
   MENSAJE ENVIADO AL UNIVERSO
=============================== */

    .submit-btn.success::after {
        content: "Mensaje enviado al universo 🚀";
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        font-weight: 800;
        font-size: 0.95rem;
        color: #00140d;
        animation: messageRise 1.4s ease forwards;
    }

@keyframes messageRise {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }

    30% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.85);
    }
}

/* ===============================
   RASTRO TIPO COHETE
=============================== */

.submit-btn.success::before {
    opacity: 1;
    animation: rocketTrail 1.3s ease forwards;
}

@keyframes rocketTrail {
    0% {
        box-shadow: 0 0 0 rgba(61,220,255,0), 0 0 0 rgba(109,255,139,0);
    }

    25% {
        box-shadow: 0 25px 20px rgba(61,220,255,0.9), 0 45px 30px rgba(109,255,139,0.7), 0 65px 40px rgba(61,220,255,0.5);
    }

    100% {
        box-shadow: 0 140px 80px rgba(61,220,255,0), 0 200px 120px rgba(109,255,139,0);
    }
}

/* ===============================
   MINI PARTÍCULAS ORBITALES
=============================== */

.submit-btn.success {
    animation: microLift 0.9s ease;
}

@keyframes microLift {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

/* ===============================
   MICRO NEBULOSA EN FORM
=============================== */

.contact-form {
    position: relative;
}

    .contact-form::after {
        content: "";
        position: absolute;
        inset: -25%;
        background: radial-gradient(circle at 30% 40%, rgba(61,220,255,0.15), transparent 40%), radial-gradient(circle at 70% 60%, rgba(109,255,139,0.15), transparent 45%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }

    .contact-form:hover::after {
        opacity: 1;
    }

/* ===============================
   LEGAL – TÉRMINOS Y CONDICIONES
=============================== */

.legal-section {
    padding: 8rem 1.5rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(18px);
    border-radius: 26px;
    padding: 4.5rem 4rem;
    box-shadow: 0 40px 90px rgba(0,0,0,0.55);
}

.legal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--neon-cyan);
}

.legal-container p,
.legal-container li {
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-container ul {
    padding-left: 1.2rem;
}

.legal-footer {
    margin-top: 4rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 3rem 2.2rem;
    }

    .legal-title {
        font-size: 2.3rem;
    }
}

/* =========================================
   LINKS SEO PREMIUM (correo / teléfono / guías)
========================================= */
.seo-link,
.contact-link {
    color: #6dff8b;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color .25s ease;
}

    .seo-link::after,
    .contact-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, #3ddcff, #6dff8b);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .seo-link:hover,
    .contact-link:hover {
        color: #3ddcff;
    }

        .seo-link:hover::after,
        .contact-link:hover::after {
            transform: scaleX(1);
        }
