/* =========================================================
   LOJA WOW — HOME INSTITUTIONAL (Vanilla CSS)
   Extracted for performance (cacheable, non-render-blocking)
========================================================= */

/* =========================================================
   CORE SYSTEM
========================================================= */
:root {
    --brand: #763ebd;
    --brand-light: #9d6df0;
    --brand-glow: rgba(118, 62, 189, 0.4);
    
    --bg: #030305;
    --surface: #0a0a0e;
    --surface-hover: #121218;
    
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --text-main: #ffffff;
    --text-muted: #8a8f98;
    --text-dark: #52525b;
    
    --green-accent: #10b981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* =========================================================
   AMBIENTE E GRID
========================================================= */
.ambient-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 100vh;
    background: radial-gradient(ellipse at top, var(--brand-glow) 0%, transparent 70%);
    z-index: -1; pointer-events: none; filter: blur(80px); opacity: 0.6;
}
.grid-bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

/* =========================================================
   SPLIT SCREEN ARCHITECTURE
========================================================= */
.split-layout { display: flex; min-height: 100vh; width: 100%; }

/* --- LADO ESQUERDO FIXO --- */
.split-left {
    position: sticky; top: 0; left: 0;
    width: 46%; height: 100vh;
    padding: clamp(40px, 5vw, 60px) clamp(30px, 4vw, 80px);
    display: flex; flex-direction: column; justify-content: space-between;
    border-right: 1px solid var(--border);
    background: linear-gradient(135deg, var(--bg) 0%, #0d0a14 100%);
    z-index: 10;
}

.split-left::before {
    content: ''; position: absolute; top: -10%; left: -10%;
    width: 70%; height: 70%;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    filter: blur(90px); z-index: 0; pointer-events: none;
}

.brand-logo { position: relative; z-index: 1; display: block; width: fit-content; }
.brand-logo img { height: 50px; width: auto; object-fit: contain; }

.left-content { position: relative; z-index: 1; margin: auto 0; }

.hero-title {
    font-size: clamp(2.5rem, 3.5vw, 4.5rem); 
    font-weight: 900; line-height: 1.05; margin: 0 0 24px;
}
.hero-title span {
    background: linear-gradient(90deg, #fff 0%, var(--brand-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: 1.1rem; color: var(--text-muted); font-weight: 400;
    max-width: 100%; margin-bottom: 40px; line-height: 1.7;
}

/* Botão Magnético */
.btn-action {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--brand); color: #fff;
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem;
    padding: 18px 40px; border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px var(--brand-glow), inset 0 2px 0 rgba(255,255,255,0.2);
    cursor: pointer; width: fit-content; position: relative; overflow: hidden;
}
.btn-action::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg); transition: 0.5s;
}
.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(118, 62, 189, 0.6), inset 0 2px 0 rgba(255,255,255,0.4);
    background: #8b5cf6;
}
.btn-action:hover::before { left: 200%; }

.action { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; padding-bottom: 25px; }
.action-links { display: flex; gap: 20px; margin-top: 24px; flex-wrap: wrap; }

.btn-ghost {
    background: transparent; color: var(--text-pure);
    font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.95rem;
    padding: 12px 24px; border-radius: 10px;
    border: 1px solid var(--border-subtle); transition: 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.03); border-color: var(--border-hover); color: #fff; }

.trust-badge { position: relative; z-index: 1; color: var(--text-muted); font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.trust-badge i { color: var(--green-accent); font-size: 1rem; }

/* --- LADO DIREITO ROLÁVEL --- */
.split-right {
    width: 60%; 
    padding: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px); 
    position: relative;
}

.section-tag {
    color: var(--brand-light); font-family: 'Outfit'; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 12px; display: block;
}
.section-title { font-size: 2.5rem; margin-bottom: 40px; line-height: 1.1; color: #fff; }

/* =========================================================
   FEATURE CARDS (Infraestrutura)
========================================================= */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.feature-card {
    background: linear-gradient(180deg, rgba(20,20,25,0.4) 0%, rgba(10,10,14,0.4) 100%);
    border: 1px solid var(--border-subtle); border-radius: 16px; padding: 32px; transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--border-hover); background: var(--surface-hover);
    transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.f-icon { font-size: 28px; color: var(--brand-light); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; line-height: 1.6; }

/* =========================================================
   PROVA SOCIAL
========================================================= */
.social-proof {
    margin: 60px 0 40px;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(118, 62, 189, 0.06) 0%, rgba(10, 10, 14, 0.4) 100%);
    border: 1px solid rgba(118, 62, 189, 0.15);
    border-radius: 20px;
    text-align: center;
}
.social-proof h3 {
    font-size: 1.6rem; margin-bottom: 8px; color: #fff;
}
.social-proof p {
    color: var(--text-muted); font-size: 1rem; margin: 0 0 28px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.proof-stats {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.proof-stat {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.proof-stat .stat-value {
    font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; color: var(--brand-light); line-height: 1;
}
.proof-stat .stat-label {
    font-size: 0.85rem; color: var(--text-muted); font-weight: 500; white-space: nowrap;
}

/* =========================================================
   BANNER DE SUBDOMÍNIO
========================================================= */
.domain-callout {
    background: linear-gradient(90deg, rgba(118, 62, 189, 0.1) 0%, rgba(10, 10, 14, 0.6) 100%);
    border: 1px solid rgba(118, 62, 189, 0.3);
    border-radius: 16px; padding: 24px 32px;
    display: flex; align-items: center; gap: 24px;
    margin: 40px 0 60px;
}
.domain-callout i { font-size: 2rem; color: var(--brand-light); }
.domain-callout h4 { font-size: 1.2rem; margin-bottom: 4px; color: #fff; }
.domain-callout p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.domain-callout strong { color: #fff; }

/* =========================================================
   PRICING STRIPS
========================================================= */
.pricing-section { padding-top: 20px; border-top: 1px solid var(--border-subtle); }

.price-strip {
    background: var(--bg-panel); backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle); border-radius: 24px;
    padding: 32px 40px; margin-bottom: 24px; transition: all 0.4s;
    position: relative;
}
.price-strip:hover { border-color: rgba(255,255,255,0.15); background: rgba(25, 25, 30, 0.6); }

.price-strip.highlight {
    background: linear-gradient(90deg, rgba(118, 62, 189, 0.1) 0%, var(--bg-panel) 100%);
    border-color: var(--brand); box-shadow: 0 0 30px rgba(118, 62, 189, 0.15);
}

.pro-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--brand); color: #fff; font-family: 'Outfit'; font-size: 0.75rem;
    font-weight: 700; padding: 4px 16px; border-radius: 50px; letter-spacing: 1px;
    white-space: nowrap;
}

.strip-content { width: 100%; }

.strip-top {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 24px; margin-bottom: 24px; gap: 24px;
}

.strip-info { flex: 1 1 200px; }
.strip-info h3 { font-size: 1.6rem; color: #fff; margin-bottom: 4px; white-space: nowrap; }
.strip-info p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.strip-price-block { 
    display: flex; flex-wrap: wrap; align-items: center; gap: 24px; justify-content: flex-end; 
}

.s-price { text-align: right; }
.s-price .val { font-family: 'Outfit'; font-size: 2.8rem; font-weight: 900; line-height: 1; color: #fff; white-space: nowrap; }
.s-price .cur { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }
.s-price .mo { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.s-tax { display: block; font-size: 0.85rem; color: var(--green-accent); font-weight: 600; margin-top: 6px; white-space: nowrap; }
.highlight .s-tax { color: #b28af5; }

.btn-strip { 
    display: inline-block; background: rgba(255,255,255,0.05); color: #fff; 
    border: 1px solid var(--border-subtle); padding: 14px 28px; border-radius: 10px; 
    font-family: 'Outfit'; font-weight: 700; font-size: 1rem; transition: 0.3s; white-space: nowrap; 
}
.btn-strip:hover { background: rgba(255,255,255,0.1); border-color: var(--border-strong); }
.highlight .btn-strip { background: var(--brand); border: none; box-shadow: 0 4px 15px var(--brand-glow); }
.highlight .btn-strip:hover { background: #8b5cf6; transform: translateY(-2px); }

.strip-features {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; list-style: none;
}
.strip-features li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #d4d4d8; }

.feature-limit { color: #fff !important; font-weight: 600; }
.strip-features i.bi-graph-up-arrow, .strip-features i.bi-infinity { color: var(--green-accent); font-size: 1.1rem; }

.strip-features i.bi-check-circle-fill { color: var(--brand-light); font-size: 1.1rem; opacity: 0.8;}

/* =========================================================
   INFO BLOCK (Recursos Comuns)
========================================================= */
.all-features-block {
    margin-top: 40px; padding: 32px; background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-subtle); border-radius: 20px;
}
.all-features-block h4 { color: #fff; font-size: 1.1rem; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.all-features-block h4 i { color: var(--brand-light); }
.all-features-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; }
.all-features-list li { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.all-features-list i { color: var(--text-dark); font-size: 1.1rem; }

/* =========================================================
   FAQ SECTION
========================================================= */
.faq-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}
.faq-grid {
    display: flex; flex-direction: column; gap: 16px;
}
.faq-item {
    background: linear-gradient(180deg, rgba(20,20,25,0.3) 0%, rgba(10,10,14,0.3) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(255,255,255,0.12);
}
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    gap: 16px;
    user-select: none;
}
.faq-question i {
    color: var(--brand-light);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================================
   PARTNER & FOOTER
========================================================= */
.partner-block { margin-top: 80px; padding: 60px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); text-align: center; }

.footer { 
    padding: 40px 0; text-align: center; 
}
.footer-links {
    display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-links a {
    color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--brand-light); }
.footer-copy {
    color: var(--text-dark); font-size: 0.85rem;
}

/* =========================================================
   RESPONSIVIDADE INTELIGENTE
========================================================= */
@media (max-width: 1400px) {
    .split-left { width: 45%; }
    .split-right { width: 55%; }
    
    .features-grid { grid-template-columns: 1fr; }
    .strip-features { grid-template-columns: 1fr; }
    .all-features-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1200px) {
    .split-layout { flex-direction: column; }
    
    .split-left { 
        position: relative; top: auto; width: 100%; height: auto; min-height: auto; 
        padding: 60px 24px; text-align: center; border-right: none; border-bottom: 1px solid var(--border-subtle); align-items: center; 
    }
    .split-left::before { top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 100vw; }
    
    .brand-logo { margin: 0 auto 40px; }
    .left-content { display: flex; flex-direction: column; align-items: center; }
    .hero-desc { margin: 0 auto 32px; text-align: center; }
    .action-links { justify-content: center; }
    .action { align-items: center; }
    
    .split-right { width: 100%; padding: 60px 24px; max-width: 900px; margin: 0 auto; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    
    .proof-stats { gap: 32px; }
}

@media (max-width: 845px) {
    .features-grid { grid-template-columns: 1fr; }
    .domain-callout { flex-direction: column; text-align: center; padding: 30px 20px; }
    
    .strip-top { flex-direction: column; align-items: flex-start; gap: 24px; }
    .strip-info { flex: auto; }
    .strip-info h3 { white-space: normal; }
    
    .strip-price-block {
        display: flex; flex-direction: column; align-items: flex-start; gap: 16px; width: 100%;
    }
    .s-price { text-align: left; }
    .btn-strip { width: 100%; text-align: center; }
    
    .proof-stats { flex-direction: column; gap: 24px; }
    .all-features-list { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; align-items: center; gap: 16px; }
}
