:root {
    --bg-main: #030712;
    --bg-surface: #0b1329;
    --bg-card: rgba(15, 23, 42, 0.75);
    --primary: #38bdf8;
    --primary-glow: #0284c7;
    --accent-purple: #818cf8;
    --accent-emerald: #34d399;
    --text-white: #ffffff;
    --text-dim: #94a3b8;
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(56, 189, 248, 0.5); 
    --radius-pill: 9999px;
    --radius-lg: 28px;
    --radius-md: 16px;
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Canvas Animado */
#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Header Transparente Glassmorphism */
header {
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
}

.logo span {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-header {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.1));
    border: 1px solid var(--border-glow);
    color: var(--text-white);
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.btn-header:hover {
    background: var(--primary);
    color: var(--bg-main);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
}

/* HERO SECTION ELEVADA */
.hero {
    position: relative;
    padding: 7rem 8% 3.5rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid var(--border-glow);
    padding: 0.5rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-title span.glow-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #34d399 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 820px;
    margin: 0 auto 2.8rem;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.7);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    padding: 1.1rem 2.4rem;
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-white);
}

/* MÉTRICAS EM DESTAQUE */
.metrics-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3.5rem auto 0;
    padding: 2rem 2.5rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(2, 132, 199, 0.15);
}

.metric-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.metric-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 600;
}

/* SEÇÃO DE RECURSOS */
.section-padding {
    padding: 3rem 4% 5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.8rem;
    white-space: nowrap;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.15rem;
    white-space: nowrap;
    margin: 0 auto;
}

/* GRID DE 2 COLUNAS DE CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid var(--primary-glow);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(16px);
    box-shadow: 0 0 30px rgba(2, 132, 199, 0.15);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.18) 50%, 
        transparent 70%
    );
    transform: rotate(25deg);
    transition: all 0.8s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 50px rgba(2, 132, 199, 0.35);
}

/* LAYOUT DO CABEÇALHO DO CARD (ÍCONE + TÍTULO AO LADO) */
.card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.card-icon-tech {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(129, 140, 248, 0.15));
    border: 1px solid var(--border-glow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.glass-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 0;
}

.glass-card p {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* SEÇÃO DE ASSINATURA FLAT RATE */
.pricing-section {
    padding: 5rem 8%;
    background: linear-gradient(180deg, var(--bg-main) 0%, #081026 100%);
    border-top: 1px solid var(--border-glass);
    position: relative;
}

.pricing-box {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid var(--primary-glow);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 0 80px rgba(2, 132, 199, 0.25);
    backdrop-filter: blur(20px);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--accent-emerald), #059669);
    color: #000000;
    font-weight: 900;
    padding: 0.5rem 1.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pricing-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.pricing-box p.subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 3.5rem;
}

/* CARDS DE CHECKLIST COM NEON FIXO + EFEITO ESPELHO */
.pricing-feature-item {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(56, 189, 248, 0.6);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.pricing-feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.22) 50%, 
        transparent 70%
    );
    transform: rotate(25deg);
    transition: all 0.7s ease;
    pointer-events: none;
}

.pricing-feature-item:hover::before {
    left: 100%;
}

.pricing-feature-item:hover {
    border-color: rgba(56, 189, 248, 1);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.45);
    transform: translateY(-3px);
}

.pricing-feature-item span {
    color: var(--accent-emerald);
    font-size: 1.3rem;
}

/* RODAPÉ COMPACTO */
footer {
    text-align: center;
    padding: 1.2rem 2rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-dim);
    font-size: 0.85rem;
    background: rgba(3, 7, 18, 0.95);
}

@media (max-width: 1200px) {
    .section-header h2, .section-header p {
        white-space: normal;
    }
}

@media (max-width: 868px) {
    header { padding: 0.8rem 5%; }
    .hero { padding-top: 6rem; padding-bottom: 2rem; }
    .hero-title { font-size: 2.4rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .btn-primary-glow, .btn-glass { width: 100%; text-align: center; }
    .cards-grid { grid-template-columns: 1fr; }
    .pricing-features-grid { grid-template-columns: 1fr; }
    .pricing-box { padding: 2.5rem 1.2rem; }
}