﻿/* =========================================
   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;
}

.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: var(--text-muted);
}

/* =========================================
   PAQUETES – GRID
========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* =========================================
   PAQUETES – CARD
========================================= */
.pricing-card {
    position: relative;
    padding: 3rem 2.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 65px rgba(61, 220, 255, 0.18);
        border-color: rgba(61, 220, 255, 0.35);
    }

    /* =========================================
   PAQUETE DESTACADO
========================================= */
    .pricing-card.featured {
        transform: scale(1.05);
        border-color: rgba(61, 220, 255, 0.5);
        box-shadow: 0 35px 80px rgba(61, 220, 255, 0.35);
    }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =========================================
   PAQUETES – TEXT
========================================= */
.pricing-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.pricing-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* =========================================
   PAQUETES – FEATURES
========================================= */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

    .pricing-features li {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        color: var(--text-main);
    }

/* =========================================
   RESPONSIVE – PAQUETES (TABLET)
========================================= */
@media (max-width: 992px) {

    .pricing-title {
        font-size: 2.6rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* =========================================
   RESPONSIVE – PAQUETES (MOBILE)
========================================= */
@media (max-width: 576px) {

    .pricing-title {
        font-size: 2.4rem;
    }

    .pricing-subtitle {
        font-size: 1.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 3rem 2.4rem;
    }
}

/*----------------------------------PROCESO------------------------------------------------*/
/* =========================================
   PROCESO – SECTION
========================================= */
.process-section {
    padding: 7rem 1rem;
    position: relative;
}

.process-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 5rem;
}

.process-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* =========================================
   PROCESO – TIMELINE
========================================= */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
}

    .process-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        left: 22px;
        width: 2px;
        height: 100%;
        background: linear-gradient( to bottom, transparent, var(--neon-cyan), transparent );
    }

/* =========================================
   PROCESO – STEP
========================================= */
.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

    .process-step:last-child {
        margin-bottom: 0;
    }

/* =========================================
   PROCESO – NUMBER
========================================= */
.step-number {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(61,220,255,0.6);
}

/* =========================================
   PROCESO – CONTENT
========================================= */
.step-content {
    padding: 2.2rem 2.4rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

    .step-content:hover {
        transform: translateX(6px);
        border-color: rgba(61, 220, 255, 0.35);
        box-shadow: 0 20px 55px rgba(61, 220, 255, 0.18);
    }

    /* =========================================
   PROCESO – TEXT
========================================= */
    .step-content h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.45rem;
        margin-bottom: 0.8rem;
    }

    .step-content p {
        font-size: 1rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

/* =========================================
   RESPONSIVE – PROCESO (TABLET)
========================================= */
@media (max-width: 992px) {

    .process-title {
        font-size: 2.6rem;
    }

    .process-timeline {
        padding-left: 1.5rem;
    }
}

/* =========================================
   RESPONSIVE – PROCESO (MOBILE)
========================================= */
@media (max-width: 576px) {

    .process-title {
        font-size: 2.4rem;
    }

    .process-subtitle {
        font-size: 1.1rem;
    }

    .process-timeline {
        padding-left: 0;
    }

        .process-timeline::before {
            display: none;
        }

    .process-step {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-number {
        margin-left: 0;
    }

    .step-content {
        padding: 2.4rem 2.2rem;
    }
}

/*-------------------------------------------CONTACTO----------------------------------------------*/
/* =========================================
   CONTACTO – SECTION CARD
========================================= */
.contact-section {
    padding: 7rem 1rem;
}

    .contact-section .container {
        max-width: 1200px;
    }

/* Card principal */
.contact-wrapper {
    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;
}

/* =========================================
   CONTACTO – INFO IZQUIERDA
========================================= */
.contact-info {
    max-width: 480px;
}

    .contact-info .contact-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }

    .contact-info .contact-subtitle {
        font-size: 1.15rem;
        color: var(--text-muted);
        margin-bottom: 3rem;
    }

/* =========================================
   CONTACTO – ITEMS (EMAIL / WHATSAPP)
========================================= */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 2rem;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}

    .contact-item:hover {
        transform: translateX(6px);
    }

/* Iconos estilo navbar */
.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    font-size: 1.2rem;
    color: var(--text-main);
    box-shadow: 0 0 22px rgba(61,220,255,0.25);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(61,220,255,0.45);
}

/* WhatsApp glow verde */
.contact-icon.whatsapp {
    box-shadow: 0 0 22px rgba(109,255,139,0.35);
}

.contact-item:hover .contact-icon.whatsapp {
    box-shadow: 0 0 32px rgba(109,255,139,0.6);
}

/* =========================================
   CONTACTO – SOCIAL (IG / FB)
========================================= */
.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.05);
        font-size: 1.15rem;
        color: var(--text-muted);
        transition: all 0.3s ease;
    }

        .contact-social a:hover {
            color: var(--neon-cyan);
            background: rgba(61,220,255,0.15);
            box-shadow: 0 0 25px rgba(61,220,255,0.4);
            transform: translateY(-3px);
        }

/* =========================================
   CONTACTO – FORM CARD DERECHA
========================================= */
.contact-card {
    padding: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

    /* Inputs */
    .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;
        transition: all 0.3s ease;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: var(--text-muted);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--neon-cyan);
            background: rgba(255,255,255,0.07);
            box-shadow: 0 0 0 2px rgba(61,220,255,0.25);
        }

/* Row nombre / email */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

/* Botón enviar */
.contact-form .btn {
    margin-top: 1rem;
    align-self: flex-start;
    padding: 1.15rem 3.2rem;
    font-size: 1.05rem;
}

/* =========================================
   RESPONSIVE – TABLET
========================================= */
@media (max-width: 992px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 4rem 3rem;
        gap: 4rem;
    }

    .contact-info {
        max-width: 100%;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-social {
        justify-content: center;
    }

    .contact-form .btn {
        align-self: center;
    }
}

/* =========================================
   RESPONSIVE – MOBILE
========================================= */
@media (max-width: 576px) {

    .contact-wrapper {
        padding: 3.5rem 2.2rem;
    }

    .contact-info .contact-title {
        font-size: 2.4rem;
    }

    .contact-info .contact-subtitle {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form .btn {
        width: 100%;
        padding: 1.2rem 0;
    }
}

/*------------------------------FOOTER----------------------------------------------------------------------------*/
/* =========================================
   FOOTER – BASE
========================================= */
.footer {
    position: relative;
    padding: 6rem 1rem 0;
    background: linear-gradient( to top, rgba(5, 11, 16, 0.95), rgba(5, 11, 16, 0.6) );
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* =========================================
   FOOTER – CONTAINER
========================================= */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

/* =========================================
   FOOTER – BRAND
========================================= */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

    .footer-logo img {
        width: 42px;
        filter: drop-shadow(0 0 12px rgba(61,220,255,0.4));
    }

    .footer-logo span {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
    }

.footer-description {
    max-width: 380px;
    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.15);
            box-shadow: 0 0 25px rgba(61,220,255,0.4);
            transform: translateY(-3px);
        }

/* =========================================
   FOOTER – LINKS
========================================= */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.4rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .footer-links a:hover {
        color: var(--neon-cyan);
        padding-left: 6px;
    }

/* =========================================
   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);
    }

@media (max-width: 992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@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;
    }
}

/*_____________________________________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));
}
