/* ============================================================
   NVHost — Premium Hosting Theme
   Color Palette: Deep Navy (#0F1B2D) + Blue (#2563EB) + White
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary */
    --blue-50:  #EFF6FF;
    --blue-100: #DBEAFE;
    --blue-200: #BFDBFE;
    --blue-300: #93C5FD;
    --blue-400: #60A5FA;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --blue-700: #1D4ED8;
    --blue-800: #1E40AF;
    --blue-900: #1E3A8A;

    /* Dark Navy */
    --navy-900: #0B1120;
    --navy-800: #0F1B2D;
    --navy-700: #162033;
    --navy-600: #1C2A40;
    --navy-500: #243450;
    --navy-400: #334155;

    /* Neutrals */
    --gray-50:  #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;

    /* Feedback */
    --green:  #10B981;
    --red:    #EF4444;
    --yellow: #F59E0B;
    --orange: #F97316;

    /* Spacing */
    --container-max: 1240px;
    --header-height: 64px;
    --topbar-height: 40px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.12);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.18);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.25);

    /* Transitions */
    --ease-out: cubic-bezier(.16,1,.3,1);
    --transition-fast: 180ms var(--ease-out);
    --transition-normal: 280ms var(--ease-out);
    --transition-slow: 400ms var(--ease-out);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background: var(--navy-900);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: var(--navy-800);
    border-bottom: 1px solid rgba(255,255,255,.06);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-badge {
    background: var(--blue-600);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 2px 8px;
    border-radius: 100px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-400);
    padding: 6px 12px;
    border-radius: 6px;
    transition: color var(--transition-fast), background var(--transition-fast);
    font-weight: 500;
}

.topbar-link:hover {
    color: #fff;
    background: rgba(255,255,255,.06);
}

.topbar-link--account {
    color: var(--blue-400);
}

.topbar-link--account:hover {
    color: var(--blue-300);
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(8,14,26,.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 1px 0 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.35), 0 0 0 1px rgba(37,99,235,.08);
    transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
    background: rgba(8,14,26,.98);
    box-shadow: 0 1px 0 0 rgba(255,255,255,.05), 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(37,99,235,.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}


/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: #fff;
}

.logo-highlight {
    color: var(--blue-400);
}


/* ── Navigation ── */
.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    border-radius: 8px;
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #fff;
    background: rgba(255,255,255,.06);
}

.nav-chevron {
    transition: transform var(--transition-fast);
    opacity: .5;
}

.nav-item.active .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    margin-left: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff;
    background: var(--blue-600);
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.nav-cta:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,99,235,.4);
}

.nav-cta:hover::before {
    opacity: 1;
}


/* ── Dropdown ── */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    z-index: 100;
}

.nav-item.active .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown {
    min-width: 680px;
}

.dropdown-inner {
    display: flex;
    gap: 40px;
    background: #0b1120; /* Fundo idêntico ao do topo para transição seamless */
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02);
}

.dropdown-inner--simple {
    flex-direction: column;
    min-width: 320px; /* Um pouco mais largo para acomodar o texto com luxo */
    gap: 8px;
    padding: 24px;
}

/* --- ESTILOS DE MENU VALUEHOST CLONE --- */
.dropdown-inner--vh {
    background: #0d121c; /* Fundo sólido super escuro como na imagem */
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    gap: 0; /* IMPEDE O VAZAMENTO DO GAP GLOBAL DE 40PX DA DROPDOWN-INNER */
}

.vh-link {
    padding: 10px 24px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}

.vh-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vh-link:hover {
    color: #fff;
    background: rgba(59, 130, 246, 0.06);
}

.vh-link:hover .vh-icon {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    transform: scale(1.15) rotate(5deg);
}

.vh-link:hover .vh-link-feature {
    color: #60a5fa !important;
}

.vh-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
    margin: 8px 0;
}

.vh-title {
    padding: 8px 24px 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #475569;
    letter-spacing: 1px;
}

/* Badges */
.badge-pill {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.badge-blue {
    background: rgba(30, 58, 138, 0.5); /* fundo escuro */
    color: #60a5fa; /* texto neon */
    font-size: 10px;
    padding: 3px 8px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

/* Coluna de Oferta (Promo Clean) */
.dropdown-promo-col {
    flex: 0 0 240px;
}

.promo-clean {
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.promo-clean::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%);
    pointer-events: none;
}

.promo-clean-tag {
    font-size: 11px;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.promo-clean-title {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 500;
}

.promo-clean-price {
    font-size: 14px;
    color: #fff;
    margin-bottom: 24px;
}

.promo-clean-price strong {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
}

.btn-promo-clean {
    background: #fff;
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-promo-clean:hover {
    background: #e2e8f0;
}

/* Badges */
.dropdown-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    white-space: nowrap;
    background: rgba(59,130,246,.15);
    color: var(--blue-400);
    flex-shrink: 0;
}

.badge-new {
    background: rgba(16,185,129,.15);
    color: var(--green);
}

.badge-discount {
    background: rgba(249,115,22,.15);
    color: var(--orange);
}

.dropdown-promo {
    background: linear-gradient(135deg, var(--blue-800), var(--navy-800));
    border: 1px solid rgba(59,130,246,.2);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.dropdown-promo::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37,99,235,.3) 0%, transparent 70%);
    pointer-events: none;
}

.dropdown-promo-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--blue-300);
    background: rgba(37,99,235,.2);
    padding: 4px 10px;
    border-radius: 100px;
}

.dropdown-promo-title {
    font-size: 13px;
    color: var(--blue-200);
    font-weight: 500;
}



.dropdown-promo-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: #fff;
    color: var(--blue-700);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.dropdown-promo-btn:hover {
    background: var(--blue-50);
    transform: translateY(-1px);
}


/* ── Mobile Toggle ── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    background: var(--navy-900);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1.2;
    min-width: 480px;
    max-width: 640px;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-subtitle strong {
    color: #fff;
}

/* ── Hero Buttons ── */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-radius: 10px;
    padding: 14px 28px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: var(--blue-600);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,99,235,.3);
}

.btn-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 6px 24px rgba(37,99,235,.45);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid rgba(255,255,255,.1);
}

.btn-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.04);
}

/* ── Hero Stats ── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-stat-stars {
    color: var(--yellow);
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.1);
}

/* ── Hero Visual / Mockup ── */
.hero-visual {
    flex: 1;
    max-width: 560px;
    position: relative;
}

/* ============================================================
   HERO ILLUSTRATION (Vetorial)
   ============================================================ */
.hero-illustration-wrapper {
    position: relative;
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-floating {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    animation: float-illustration 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
}

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



/* ── Hero Reference Card ── */
.hero-reference {
    margin-top: 40px;
}

.reference-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 14px 20px;
    backdrop-filter: blur(12px);
}

.reference-icon {
    font-size: 20px;
}

.reference-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reference-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.reference-text span {
    font-size: 12px;
    color: var(--gray-400);
}


/* ============================================================
   COMPACT FEATURE ROW
   ============================================================ */
.features-row-section {
    padding: 20px 0 60px 0;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.features-row-glass {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.feature-item-icon {
    width: 38px;
    height: 38px;
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.feature-item-icon svg {
    width: 18px;
    height: 18px;
}

.feature-item-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.feature-item-content p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.4;
    max-width: 280px;
}

.feature-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 24px;
}

/* Responsivo para Feature Row */
@media (max-width: 992px) {
    .features-row-glass {
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        gap: 20px;
    }
    
    .feature-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
    
    .feature-item-content p {
        max-width: 100%;
    }
    }
}

/* ============================================================
   GLOBAL SECTION HEADER
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 30px auto;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.6;
}

.section-header .highlight {
    color: var(--primary-light);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
    padding: 60px 0;
    margin-top: 20px;
    background: var(--bg-dark);
    position: relative;
}

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.pricing-toggle {
    display: inline-flex;
    background: rgba(15, 23, 42, 0.7);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.toggle-btn {
    background: transparent;
    color: var(--gray-400);
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-btn:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.toggle-btn.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0; /* Remove gap para as linhas se tocarem */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.pricing-card {
    background: transparent; 
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1); /* Apenas linha divisória */
    border-radius: 0;
    padding: 0;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:last-child {
    border-right: none; /* Remove a última linha */
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.05); /* Leve destaque no hover */
    transform: none; /* Sem saltos de caixa */
}

.pricing-card-content {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Plano Destacado */
.pricing-card.popular {
    background: rgba(37, 99, 235, 0.05); /* Azul bem sutil */
    box-shadow: inset 0 0 40px rgba(37, 99, 235, 0.1);
    z-index: 1;
}

.plan-badge {
    position: absolute;
    top: 20px;
    left: 30px; /* Alinhado à esquerda com o texto */
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-align: left;
}

.plan-price-box {
    text-align: left;
    margin-bottom: 30px;
    width: 100%;
}

.plan-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-400);
    vertical-align: top;
    position: relative;
    top: 8px;
    margin-right: 4px;
}

.plan-price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.plan-price-cents {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-400);
    vertical-align: top;
    position: relative;
    top: 8px;
}

.plan-period {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 500;
    margin-left: 5px;
}

/* Pills Tags */
.plan-tags {
    display: flex;
    flex-direction: column; /* Coloca uma tag embaixo da outra para um visual mais vertical/coluna */
    gap: 12px;
    margin-bottom: 40px;
}

.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 500;
}

.pill-tag svg {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

/* Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--gray-400);
    text-align: left;
}

.check-icon {
    color: var(--primary-color);
    font-weight: 800;
}

/* Footer Button CTA - Integrado ao design de coluna */
.plan-cta {
    width: calc(100% - 60px); /* Padding lateral */
    margin: 0 30px 40px 30px;
    padding: 16px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.pricing-card.popular .plan-cta {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.pricing-card.popular .plan-cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Responsivo Pricing */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE — Tablet & Mobile
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 100%;
    }
}

/* ── CONTROLE GLOBAL DE VISIBILIDADE ── */
.mobile-side-nav, 
.mobile-overlay-new {
    display: none !important;
}

/* ── ESTILOS MOBILE (768px) ── */
@media (max-width: 768px) {
    .header .nav, .topbar {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
        position: relative;
        z-index: 10000;
    }

    .mobile-side-nav {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; 
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #0b1120 !important;
        z-index: 100000 !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        flex-direction: column !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5) !important;
    }

    .mobile-side-nav.open {
        right: 0 !important;
    }

    .mobile-overlay-new.open {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0,0,0,0.6) !important;
        backdrop-filter: blur(4px) !important;
        z-index: 99999 !important;
    }

    /* Ajustes Hero Mobile */
    .hero { padding: 40px 0 20px; }
    .hero-inner { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content { min-width: 100%; max-width: 100%; }
    .hero-title { font-size: 32px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    /* Partners */
    .partners-track {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ── ESTILOS DO MENU MOBILE (COMPONENTES) ── */
.mobile-nav-header {
    padding: 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.mobile-nav-body {
    padding: 10px 0;
    overflow-y: auto;
}

.m-item { border-bottom: 1px solid rgba(255,255,255,0.03); }

.m-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
}

.m-submenu { display: none; background: rgba(0,0,0,0.2); }
.m-item.active .m-submenu { display: block; padding: 5px 0; }
.m-submenu a {
    display: block;
    padding: 12px 40px;
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
}

.m-cta-btn {
    display: block;
    margin: 25px 24px;
    padding: 16px;
    background: #3b82f6;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

/* Footer Pricing */
.pricing-footer {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.view-all-features {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 100px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.view-all-features:hover {
    color: #fff;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.view-all-features svg {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.view-all-features:hover svg {
    transform: rotate(90deg);
}

/* FAQ Section - Split Layout */
.faq-section {
    padding: 120px 0;
    background: #080e1a;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.faq-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.faq-highlight {
    color: #3b82f6;
}

.faq-subtitle {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    max-width: 360px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(59, 130, 246, 0.4);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    color: #64748b;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .faq-split { grid-template-columns: 1fr; gap: 50px; }
    .faq-title { font-size: 36px; }
}

/* Why Section - Split Layout */
.why-section {
    padding: 100px 0;
    background: #080e1a;
    border-top: 1px solid rgba(255,255,255,0.03);
}

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

.why-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #60a5fa;
    margin-bottom: 14px;
    opacity: 0.8;
}

.why-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.why-highlight {
    color: #3b82f6;
    background: linear-gradient(120deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.why-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
}

.why-subtitle {
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 440px;
}



/* 2x2 Cards Grid */
.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.why-card-icon {
    color: #60a5fa;
    margin-bottom: 24px;
    display: inline-flex;
    padding: 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.why-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-split { grid-template-columns: 1fr; gap: 50px; }
    .why-title { font-size: 32px; }
}

@media (max-width: 640px) {
    .why-cards { grid-template-columns: 1fr; }
    .why-card { padding: 22px; }
}



.stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Steps Section */
.steps-section {
    padding: 100px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.steps-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.steps-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.steps-highlight {
    color: #3b82f6;
}

.steps-subtitle {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    max-width: 440px;
}

/* Timeline */
.steps-timeline {
    display: flex;
    flex-direction: column;
}

.step-item {
    display: flex;
    gap: 30px;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-icon {
    width: 54px;
    height: 54px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: #3b82f6;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.step-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.2), transparent);
    margin: 4px 0;
}

.step-content {
    padding-bottom: 50px;
}

.step-item:last-child .step-content {
    padding-bottom: 0;
}

.step-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.step-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    max-width: 480px;
}

@media (max-width: 1024px) {
    .steps-split { grid-template-columns: 1fr; gap: 60px; }
    .steps-title { font-size: 34px; }
    .step-line { height: 60px; }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.stat-unit {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}

/* Features Split */
.features-split {
    padding: 120px 0;
    background: #0a1428;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 130px;
}

.split-row:last-child { margin-bottom: 0; }

.split-reversed { direction: rtl; }
.split-reversed > * { direction: ltr; }

.split-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.split-title {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.split-desc {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 36px;
}

.split-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.split-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.5;
}

.split-list li svg {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Mockup Chat */
.mockup-chat, .mockup-terminal {
    background: #111827;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,235,0.1);
    overflow: hidden;
}

.mockup-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.topbar-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.mockup-chat-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mc-msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.mc-user { flex-direction: row-reverse; }

.mc-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.mc-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 80%;
}

.mc-agent .mc-bubble {
    background: rgba(255,255,255,0.05);
    color: #e2e8f0;
    border-bottom-left-radius: 4px;
}

.mc-user .mc-bubble {
    background: var(--primary-color);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.mc-status {
    font-size: 12px;
    color: var(--gray-500);
    padding-left: 42px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mc-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

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

/* Mockup Terminal */
.terminal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.terminal-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-label {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 600;
    width: 52px;
    flex-shrink: 0;
}

.t-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.t-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 10px;
}

.t-fill.t-green {
    background: linear-gradient(90deg, #059669, #10b981);
}

.t-val {
    font-size: 12px;
    color: #94a3b8;
    width: 70px;
    text-align: right;
    flex-shrink: 0;
}

.terminal-ping {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #10b981;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ping-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@media (max-width: 1024px) {
    .split-row { grid-template-columns: 1fr; gap: 50px; }
    .split-reversed { direction: ltr; }
    .stats-inner { flex-wrap: wrap; }
    .stat-divider { display: none; }
}

/* Reinvented Premium Footer */
.footer-premium {
    background: #0B1120;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05) 0%, #0B1120 40%);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: visible;
}

/* CTA Area */
.footer-cta {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -80px; /* Overlap effect */
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.footer-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.footer-cta-desc {
    font-size: 17px;
    color: #94a3b8;
    max-width: 550px;
    line-height: 1.6;
}

.footer-cta .btn-primary {
    background: #3b82f6;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.footer-cta .btn-primary:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

/* Location Badges */
.badge-ca, .badge-br {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 8px;
    display: inline-block;
}

.badge-ca { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.badge-br { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }

/* Main Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 32px;
    margin-bottom: 24px;
    display: block;
}

.brand-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 280px;
}

/* Social Buttons */
.footer-social-new {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
    transform: translateY(-8px) rotate(8deg);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

/* Links Columns */
.col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    opacity: 0.9;
}

.links-list {
    list-style: none;
    padding: 0;
}

.links-list li {
    margin-bottom: 16px;
}

.links-list a {
    font-size: 14px;
    color: #64748b;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.links-list a:hover {
    color: #fff;
    transform: translateX(6px);
}

/* Contact Item */
.contact-item {
    margin-bottom: 24px;
}

.contact-item .label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 500;
}

/* Bottom Bar V2 */
.footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-v2 {
    font-size: 13px;
    color: #475569;
}

.payment-badges-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-legal-v2 a {
    font-size: 13px;
    color: #64748b;
    transition: color 0.2s ease;
}

.footer-legal-v2 a:hover {
    color: #fff;
}

.legal-dot {
    width: 3px;
    height: 3px;
    background: #334155;
    border-radius: 50%;
}

@media (max-width: 1200px) {
    .footer-main-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .footer-links-col:last-child { display: none; }
    .why-split { gap: 50px; }
    .steps-split { gap: 50px; }
}

@media (max-width: 992px) {
    /* Footer */
    .footer-cta { flex-direction: column; text-align: center; gap: 30px; padding: 40px 30px; margin-top: -40px; }
    .footer-cta-title { font-size: 28px; }
    .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-links-col:last-child { display: block; }

    /* Why Section */
    .why-split { grid-template-columns: 1fr; gap: 40px; }
    .why-title { font-size: 32px; }

    /* Steps Section */
    .steps-split { grid-template-columns: 1fr; gap: 40px; }
    .steps-title { font-size: 32px; }

    /* Global */
    .section-header { margin-bottom: 40px; }
    .container { padding: 0 24px; }
}

@media (max-width: 768px) {
    /* FAQ */
    .faq-section { padding: 80px 0; }
    .faq-split { grid-template-columns: 1fr; gap: 30px; }
    .faq-title { font-size: 32px; }
    .faq-subtitle { max-width: 100%; }
    .faq-question { padding: 20px; font-size: 15px; }
    .faq-answer p { padding: 0 20px 20px; font-size: 14px; }

    /* Why */
    .why-section { padding: 80px 0; }
    .why-title { font-size: 28px; }
    .why-card { padding: 28px; }

    /* Steps */
    .steps-section { padding: 80px 0; }
    .steps-title { font-size: 28px; }
    .step-item { padding: 24px; }
    .step-item h3 { font-size: 18px; }

    /* Footer */
    .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-cta { padding: 30px 24px; margin-top: -30px; margin-bottom: 30px; border-radius: 16px; }
    .footer-cta-title { font-size: 24px; }
    .footer-cta-desc { font-size: 15px; }
    .footer-bottom-v2 { flex-direction: column; gap: 16px; text-align: center; }
    .footer-legal-v2 { justify-content: center; }
    .col-title { margin-bottom: 20px; font-size: 12px; }
    .brand-desc { max-width: 100%; }

    /* Pricing */
    .pricing { padding: 80px 0; }

    /* Features Split */
    .features-split { padding: 80px 0; }
    .split-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
    .split-reversed { direction: ltr; }

    /* Global typography */
    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 15px; }
}

@media (max-width: 480px) {
    /* FAQ */
    .faq-section { padding: 60px 0; }
    .faq-title { font-size: 28px; letter-spacing: -1px; }
    .faq-question { padding: 16px; font-size: 14px; }
    .faq-answer p { padding: 0 16px 16px; font-size: 13px; }

    /* Why */
    .why-section { padding: 60px 0; }
    .why-card { padding: 20px; }

    /* Steps */
    .steps-section { padding: 60px 0; }
    .step-item { padding: 20px; }

    /* Footer */
    .footer-main-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-cta { margin-top: -20px; padding: 24px 20px; }
    .footer-cta-title { font-size: 22px; }
    .footer-cta .btn-primary { width: 100%; justify-content: center; padding: 14px 24px; }
    .social-btn { width: 38px; height: 38px; }

    /* Pricing */
    .pricing-grid { gap: 20px; }

    /* Global */
    .container { padding: 0 16px; }
    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 14px; }
    .hero-title { font-size: 28px; }
}

/* =========================================
   COMPARE TABLE (Hospedagem)
   ========================================= */
.compare-table-wrapper {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  margin-top: 60px;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  min-width: 800px;
}

.compare-table th {
  padding: 18px 12px;
  font-weight: 700;
  color: #f1f5f9;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.compare-table .feature-col {
  text-align: left;
  width: 28%;
  padding-left: 20px;
}

.compare-table .popular-col {
  background: rgba(59, 130, 246, 0.04);
}

.compare-table td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.compare-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .feature-name {
  text-align: left;
  font-weight: 600;
  color: #cbd5e1;
  padding-left: 20px;
}

.compare-table .check-green {
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
}

/* =========================================
   P�GINA SOBRE N�S
   ========================================= */
.about-hero {
  position: relative;
  padding: 120px 0 80px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-hero .hero-bg-orbs {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
}
.about-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.about-hero .orb-1 {
  width: 400px; height: 400px;
  background: var(--primary);
  top: -100px; left: -100px;
}
.about-hero .orb-2 {
  width: 300px; height: 300px;
  background: #3b82f6;
  bottom: -50px; right: -50px;
}
.about-hero .hero-content {
  position: relative;
  z-index: 1;
}
.about-section {
  position: relative;
}
/* -- AUTH PAGES (Login/Register) ---------------------------------- */
.auth-page {
  display: flex;
  min-height: 100vh;
  background: #060c18;
  font-family: 'Inter', sans-serif;
  color: #f8fafc;
}
.auth-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: radial-gradient(circle at 0% 0%, rgba(37,99,235,0.15) 0%, transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(139,92,246,0.1) 0%, transparent 50%),
              #030712;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/grid-pattern.svg') center/cover;
  opacity: 0.15;
  pointer-events: none;
}
.auth-logo {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 140px;
}
.auth-left-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.auth-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.auth-desc {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
}
.auth-right {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #0f172a;
  box-shadow: -20px 0 50px rgba(0,0,0,0.5);
}
.auth-form-container {
  width: 100%;
  max-width: 380px;
}
.auth-form-header {
  margin-bottom: 40px;
}
.auth-form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.auth-form-header p {
  color: #94a3b8;
  font-size: 15px;
}
.auth-form-group {
  margin-bottom: 24px;
}
.auth-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.auth-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}
.auth-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
  background: rgba(15,23,42,0.9);
}
.auth-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37,99,235,0.3);
  margin-top: 10px;
}
.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.4);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.auth-links {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}
.auth-links a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.auth-links a:hover {
  color: #93c5fd;
}
.auth-mobile-logo {
  display: none;
  width: 120px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .auth-page { flex-direction: column; }
  .auth-left { display: none; }
  .auth-right { width: 100%; min-height: 100vh; padding: 40px 20px; background: #060c18; box-shadow: none; }
  .auth-mobile-logo { display: block; }
}

/* Scroll customizado para o form longo */
.auth-form-scroll {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 10px;
}
.auth-form-scroll::-webkit-scrollbar {
  width: 6px;
}
.auth-form-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.02);
}
.auth-form-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}
.auth-form-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.form-col {
  flex: 1;
}
.auth-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.auth-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
  background-color: rgba(15,23,42,0.9);
}
.auth-select option {
  background: #0f172a;
  color: #fff;
}
.pass-strength {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.pass-strength-bar {
  height: 100%;
  width: 0%;
  background: #ef4444;
  transition: all 0.3s ease;
}
.auth-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.toggle-checkbox {
  display: none;
}
.toggle-checkbox:checked + .toggle-switch {
  background: #10b981;
}
.toggle-checkbox:checked + .toggle-switch::after {
  transform: translateX(20px);
}
.auth-box-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.auth-box-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
}
.input-with-icon {
  position: relative;
}
.input-with-icon .auth-input {
  padding-left: 48px;
}
.input-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #94a3b8;
}
.auth-right {
  width: 600px; /* Slightly wider for the register form */
}
