/* ==========================================================================
   MKTG BRASIL — PREMIUM SYSTEM STYLES (ESTILO SEOWINS)
   ========================================================================== */

/* 1. VARIÁVEIS & IDENTIDADE */
:root {
    --bg-deep: #030712;
    --bg-card: rgba(13, 20, 38, 0.45);
    --border-color: rgba(99, 102, 241, 0.12);
    --border-glow: rgba(37, 99, 235, 0.3);
    --accent-primary: #3b82f6; /* Blue Neon */
    --accent-primary-rgb: 59, 130, 246;
    --accent-indigo: #6366f1; /* Indigo Electric */
    --accent-emerald: #10b981; /* Green Conversion */
    --text-primary: #F9FAFB;
    --text-muted: #9ca3af;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE RESET & EFEITOS DE FUNDO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* 3. IMAGENS ANIMADAS E GLOWS DE FUNDO */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
    z-index: -2;
    animation: float-orbs 25s infinite ease-in-out;
}

.orb-1 {
    top: 5%;
    left: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-indigo) 0%, transparent 70%);
}

.orb-2 {
    top: 35%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    animation-delay: -8s;
}

.orb-3 {
    bottom: 10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-indigo) 0%, transparent 70%);
    animation-delay: -16s;
}

@keyframes float-orbs {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 100px) scale(1.15); }
    66% { transform: translate(-40px, -60px) scale(0.9); }
}

/* Grade 3D em perspectiva animada */
.perspective-grid-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 350px;
    pointer-events: none;
    z-index: -1;
}

.perspective-grid {
    position: absolute;
    bottom: -30%;
    left: -50%;
    width: 200%;
    height: 150%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    transform: rotateX(75deg);
    transform-origin: center bottom;
    animation: grid-scroll 28s linear infinite;
    mask-image: linear-gradient(to top, #000 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(to top, #000 30%, transparent 95%);
}

@keyframes grid-scroll {
    0% { transform: rotateX(75deg) translateY(0); }
    100% { transform: rotateX(75deg) translateY(60px); }
}

/* 4. TIPOGRAFIA & DECORAÇÕES */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

p {
    color: var(--text-muted);
}

.grad-text {
    background: linear-gradient(135deg, #FFF 30%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-text {
    color: var(--accent-indigo);
}

/* 5. ESTRUTURA E COMPONENTES COMUNS */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Efeito de Vidro (Glassmorphism) */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    transition: var(--transition-premium);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #1d4ed8 100%);
    color: #FFF;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Cabeçalhos */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-primary);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    color: #FFF;
}

/* 6. NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-premium);
}

.navbar.scrolled {
    padding: 6px 0;
    background: rgba(3, 7, 18, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: #FFF;
}

.brand-logo {
    height: 34px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-premium);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    color: #FFF;
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-premium);
}

.btn-nav:hover {
    background: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FFF;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 7. HERO SECTION */
.hero {
    position: relative;
    padding: 180px 0 120px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: var(--accent-indigo);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-indigo);
    box-shadow: 0 0 10px var(--accent-indigo);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    line-height: 1.08;
    color: #FFF;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.22rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

/* CTAs do Hero */
.hero-ctas-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.pricing-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.pill-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-emerald);
}

.pill-price {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 800;
    color: #FFF;
}

/* Grid de Benefícios Rápidos */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 540px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
}

.blue-icon {
    color: var(--accent-primary);
    width: 20px;
    height: 20px;
}

/* Coluna Visual do Hero (Especialista e órbitas) */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.specialist-image-container {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3/4;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.specialist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
}

.specialist-image:hover {
    transform: scale(1.03);
}

/* Linhas de órbita circular neon */
.orbit-lines-container {
    position: absolute;
    width: 140%;
    height: 140%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.orbit-line {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1.5px dashed rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.line-1 {
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%) rotateX(65deg) rotateY(10deg) rotateZ(0deg);
    animation: rotate-orbit-1 25s linear infinite;
    border-color: rgba(99, 102, 241, 0.35);
}

.line-2 {
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) rotateX(55deg) rotateY(-15deg) rotateZ(360deg);
    animation: rotate-orbit-2 35s linear infinite;
    border-color: rgba(59, 130, 246, 0.18);
}

@keyframes rotate-orbit-1 {
    0% { transform: translate(-50%, -50%) rotateX(65deg) rotateY(10deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(65deg) rotateY(10deg) rotateZ(360deg); }
}

@keyframes rotate-orbit-2 {
    0% { transform: translate(-50%, -50%) rotateX(55deg) rotateY(-15deg) rotateZ(360deg); }
    100% { transform: translate(-50%, -50%) rotateX(55deg) rotateY(-15deg) rotateZ(0deg); }
}

/* Tags Flutuantes com logos */
.floating-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(59, 130, 246, 0.05);
    z-index: 5;
    animation: float-tag 6s infinite ease-in-out;
}

@keyframes float-tag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.tag-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.tag-icon {
    width: 16px;
    height: 16px;
}

.tag-icon.chatgpt { color: #10b981; }
.tag-icon.instagram { color: #ec4899; }
.tag-icon.perplexity { color: #22d3ee; }

.tag-google { top: 5%; right: -5%; animation-delay: 0s; }
.tag-chatgpt { top: 35%; left: -15%; animation-delay: -1.5s; }
.tag-meta { bottom: 20%; right: -10%; animation-delay: -3s; }
.tag-perplexity { bottom: 5%; left: -5%; animation-delay: -4.5s; }


/* 8. SEÇÃO DE SOLUÇÕES / SERVIÇOS */
.solutions {
    padding: 100px 0;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.solution-card {
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon-container {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-premium);
}

.card-icon {
    width: 24px;
    height: 24px;
}

.solution-card h3 {
    font-size: 1.35rem;
    color: #FFF;
    margin-bottom: 14px;
}

.solution-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(59, 130, 246, 0.05);
}

.solution-card:hover .card-icon-container {
    background: var(--accent-primary);
    color: #FFF;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.45);
}


/* 9. SEÇÃO SHOWCASE / MOCKUP LAPTOP */
.showcase {
    padding: 100px 0;
    position: relative;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-visual {
    display: flex;
    justify-content: center;
}

.laptop-wrapper {
    width: 100%;
    max-width: 520px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.laptop-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.showcase-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: #FFF;
    margin-bottom: 32px;
}

.checklist-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checklist-items li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-circle i {
    width: 14px;
    height: 14px;
    stroke-width: 3px;
}

.checklist-items h4 {
    font-size: 1.05rem;
    color: #FFF;
    margin-bottom: 4px;
}

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


/* 10. SEÇÃO DE PROVA SOCIAL & DEPOIMENTOS */
.social-proof {
    padding: 100px 0;
}

.proof-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.proof-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: #FFF;
    margin-bottom: 20px;
}

.proof-left p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.stat-col h3 {
    font-size: 2.1rem;
    color: #FFF;
    margin-bottom: 6px;
}

.stat-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card Depoimento Premium */
.testimonial-card-premium {
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.stars-row {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.testimonial-card-premium blockquote {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    width: 100%;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-indigo) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 700;
}

.author-profile h4 {
    font-size: 1rem;
    color: #FFF;
}

.author-profile p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.quote-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: rgba(99, 102, 241, 0.08);
}


/* 11. CAIXA DE CTA DE FECHAMENTO (SEOWINS STYLE) */
.final-cta-box-section {
    padding: 80px 0;
}

.final-cta-box {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 60px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.final-cta-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.cta-box-left h3 {
    font-size: 1.6rem;
    color: #FFF;
    margin-bottom: 12px;
}

.cta-box-left p {
    font-size: 0.95rem;
    max-width: 500px;
}

.cta-box-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 20px;
}

.price-strike {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-emerald);
}

.cta-box-right {
    display: flex;
    justify-content: flex-end;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
}


/* 12. FOOTER */
.footer {
    background: #050811;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: #FFF;
}

.footer-logo img {
    height: 34px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links-col h4 {
    color: #FFF;
    margin-bottom: 24px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-col a {
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: var(--transition-premium);
}

.footer-links-col a:hover {
    color: #FFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.social-icons-row {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-premium);
}

.social-circle:hover {
    background: var(--accent-primary);
    color: #FFF;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}


/* 13. RESPONSIVIDADE (MEDIA QUERIES) */

@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
    }
    
    .final-cta-box {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .cta-box-center {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px 0;
    }
    
    .cta-box-right {
        justify-content: center;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-ctas-group {
        justify-content: center;
    }
    
    .hero-features-grid {
        margin: 0 auto;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .showcase-content {
        align-items: center;
        text-align: center;
    }
    
    .proof-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(3, 7, 18, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px 24px;
        transition: var(--transition-premium);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .btn-nav {
        display: none;
    }
    
    .floating-tag {
        display: none; /* Ocultar tags flutuantes no mobile para limpar visual */
    }
    
    .orbit-lines-container {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas-group .btn,
    .pricing-pill {
        width: 100%;
        text-align: center;
    }
}
