/* type: uploaded file
fileName: pb_public/style.css
*/
/* =========================================
   1. BASE, VARIÁVEIS E RESET
   ========================================= */
   @import url('https://fonts.googleapis.com/css2?family=Archivo:wght@700;900&family=Inter:wght@300;400;600;800&display=swap');

   :root {
       --bg-dark: #0f172a;           
       --bg-card: rgba(30, 41, 59, 0.6); 
       --text-main: #ffffff;
       --text-muted: #94a3b8;        
       --accent: #10b981;            
       --accent-glow: rgba(16, 185, 129, 0.4);
       --border: rgba(255, 255, 255, 0.1);
   }
   
   * { margin: 0; padding: 0; box-sizing: border-box; }
   
   body {
       background-color: var(--bg-dark);
       color: var(--text-main);
       font-family: 'Inter', -apple-system, sans-serif;
       overflow-x: hidden;
       user-select: none;
       -webkit-user-select: none;
       cursor: default;
   }
   
   input, textarea, select { user-select: text; -webkit-user-select: text; cursor: text; }
   a, button, .clickable { cursor: pointer; }
   
   /* =========================================
      2. LOGO OFICIAL
      ========================================= */
   .logo-wrapper-v {
       font-family: 'Archivo', sans-serif;
       position: relative; display: flex; flex-direction: column; align-items: flex-start;
       user-select: none; line-height: 1; cursor: pointer;
   }
   .brand-sub-v {
       font-size: 1.2em; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
       margin-bottom: 0.65em; margin-left: 0.05em; color: inherit; opacity: 0.7;
   }
   .brand-main-v {
       font-size: 8em; font-weight: 900; letter-spacing: -0.06em; position: relative;
       display: flex; align-items: baseline; line-height: 0.65; color: inherit; 
   }
   .char-o-wrapper-v { position: relative; display: inline-block; margin-left: 0.02em; }
   .accent-v {
       position: absolute; top: -0.20em; left: 50%; transform: translateX(-50%);
       font-size: 0.85em; font-weight: 900; color: var(--accent);
   }
   .dot-v {
       width: 0.15em; height: 0.15em; background-color: var(--accent);
       margin-left: 0.1em; display: inline-block;
   }
   .logo-wrapper-v:hover .accent-v { 
       top: -0.35em; color: #34d399; text-shadow: 0 0 20px var(--accent-glow); 
       transition: all 0.3s ease; 
   }
   .logo-wrapper-v:hover .dot-v { 
       background-color: #34d399; box-shadow: 0 0 20px var(--accent-glow); 
       transition: all 0.3s ease;
   }
   
   /* =========================================
      3. HERO & HOME
      ========================================= */
   .hero-home {
       height: 100vh; display: flex; flex-direction: column;
       justify-content: center; align-items: center; text-align: center; padding: 0 20px;
       position: relative;
   }
   .hero-title {
       font-family: 'Archivo', sans-serif; font-weight: 900;
       background: linear-gradient(to right, #fff, #94a3b8);
       -webkit-background-clip: text; background-clip: text; color: transparent;
       line-height: 1.2;
   }
   .hero-title-home { font-size: 2.5rem; margin-top: 10px; max-width: 700px; }
   .hero-title-page { font-size: 3.5rem; margin-bottom: 20px; }
   
   .scroll-indicator {
       position: absolute; bottom: 40px; color: var(--text-muted);
       font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
       opacity: 0; animation: bounce 2s infinite;
   }
   
   /* =========================================
      4. COMPONENTES
      ========================================= */
   .content-section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
   .section-title {
       font-family: 'Archivo', sans-serif; font-size: 2.5rem; font-weight: 900;
       margin-bottom: 20px; color: white; text-align: center; width: 100%; display: block;
   }
   .section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 60px; font-size: 1.1rem; }
   
   /* Cards */
   .bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
   .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
   
   .card {
       background: var(--bg-card); backdrop-filter: blur(12px);
       border: 1px solid var(--border); padding: 30px; border-radius: 24px;
       transition: all 0.4s; overflow: hidden; position: relative;
   }
   .card:hover { border-color: var(--accent); transform: translateY(-5px); }
   .info-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: white; }
   .info-card p { color: var(--text-muted); line-height: 1.5; font-size: 0.95rem; }
   
   /* Pricing */
   .price-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
   .price { font-size: 3.5rem; font-weight: 900; color: #fff; margin: 20px 0; }
   .tag { background: var(--border); padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; margin-bottom: 20px; color: #fff; }
   .featured-tag { background: var(--accent); color: #000; font-weight: 800; }
   .featured { border: 1px solid var(--accent); background: radial-gradient(circle at top, rgba(16,185,129,0.1), transparent 70%); }
   .features { list-style: none; margin: 30px 0; width: 100%; text-align: left; }
   .features li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #cbd5e1; display: flex; gap: 10px; align-items: center; }
   
   .btn-buy {
       width: 100%; padding: 18px; border-radius: 12px; font-weight: 700; text-decoration: none;
       border: 1px solid var(--text-muted); color: #fff; transition: all 0.3s;
       margin-top: auto; display: block; text-align: center;
   }
   .btn-buy:hover { background: #fff; color: #000; }
   .featured-btn { background: var(--accent); border: none; color: #000; }
   .featured-btn:hover { background: #34d399; box-shadow: 0 0 25px var(--accent-glow); transform: scale(1.02); }
   .card-disabled { opacity: 0.5; filter: grayscale(1); pointer-events: none; }
   
   /* Mockups & Badges */
   .badge-highlight { background-color: var(--accent); color: #000; font-weight: 900; border: none; box-shadow: 0 0 15px var(--accent-glow); }
   .badge-float {
       position: absolute; top: -12px; right: -10px; background-color: var(--accent);
       color: #000; font-size: 10px; font-weight: 900; padding: 4px 10px;
       border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
       z-index: 20; text-transform: uppercase; letter-spacing: 1px;
   }
   .feature-strip {
       background: linear-gradient(90deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 50%, rgba(16, 185, 129, 0.05) 100%);
       border-top: 1px solid rgba(16, 185, 129, 0.2); border-bottom: 1px solid rgba(16, 185, 129, 0.2);
       backdrop-filter: blur(10px);
   }
   
   .browser-mockup { background: #1e293b; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; }
   .browser-header { background: #0f172a; padding: 10px 15px; display: flex; gap: 6px; border-bottom: 1px solid rgba(255,255,255,0.05); }
   .browser-dot { width: 10px; height: 10px; rounded-full; }
   .dot-red { background: #ef4444; } .dot-yellow { background: #f59e0b; } .dot-green { background: #10b981; }
   .mock-input { background: #0f172a; border: 1px solid #334155; border-radius: 6px; height: 30px; width: 100%; margin-bottom: 8px; opacity: 0.7; }
   .mock-btn { background: var(--accent); height: 36px; border-radius: 6px; width: 100%; opacity: 0.9; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: #000; cursor: default; }
   
   /* Tabela */
   .comparison-container { background: rgba(15, 23, 42, 0.6); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; margin-top: 40px; }
   .comp-header, .comp-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 15px; padding: 20px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
   .comp-header { font-weight: 900; text-transform: uppercase; color: var(--text-muted); border-bottom: 2px solid var(--border); font-size: 0.8rem; }
   .comp-col-bad { color: #f87171; text-align: center; }
   .comp-col-good { color: var(--accent); text-align: center; }
   .comp-row:last-child { border-bottom: none; }
   .comp-feature { font-weight: 700; color: #fff; }
   .comp-bad { color: #f87171; text-align: center; }
   .comp-good { color: var(--accent); font-weight: 900; font-size: 1.1rem; text-align: center; }
   
   /* Footer & Nav */
   .footer { text-align: center; padding: 60px 20px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; background-color: rgba(15, 23, 42, 0.5); }
   .footer.footer-connected { margin-top: 0; border-top: 1px solid rgba(255,255,255,0.05); }
   .footer-cnpj { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; color: #64748b; margin-top: 10px; }
   .footer-copy { font-size: 12px; color: #475569; }
   .nav-fixed { position: fixed; bottom: 30px; right: 30px; z-index: 100; }
   .cta-button { background: var(--accent); color: #000; padding: 12px 24px; border-radius: 50px; text-decoration: none; font-weight: 800; display: flex; align-items: center; gap: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.5); transition: transform 0.3s; }
   .cta-button:hover { transform: scale(1.05); }
   
   /* Botão Principal e Efeitos */
   .btn-primary-action { background-color: var(--accent) !important; color: #000 !important; font-weight: 900; border: 2px solid var(--accent); box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
   .btn-primary-action:hover { background-color: #ffffff !important; color: var(--accent) !important; transform: translateY(-3px); border-color: #ffffff; }
   .btn-primary-action:hover .btn-shimmer { animation: shimmer 1s; }
   
   .glow-bg { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(0,0,0,0) 70%); border-radius: 50%; pointer-events: none; z-index: -1; }
   .glow-blue-tint { background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0,0,0,0) 70%); }
   .glow-top-left { top: -10%; left: -10%; position: fixed; }
   .glow-bottom-right { bottom: -10%; right: -10%; position: fixed; }
   @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
   @keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

   /* MOBILE */
   @media (max-width: 768px) {
       .hero-title-home { font-size: 2rem; }
       .hero-title-page { font-size: 2.2rem; }
       .section-title { font-size: 2rem; }
       .comp-header { display: none; }
       .comp-row { grid-template-columns: 1fr 1fr; grid-template-areas: "feat feat" "bad good"; text-align: center; padding: 15px 10px; }
       .comp-feature { grid-area: feat; border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 5px; }
       .comp-bad::before { content: "Outros: "; font-size: 0.8rem; opacity: 0.7; display: block; }
       .comp-good::before { content: "Vitrô: "; font-size: 0.8rem; opacity: 0.7; display: block; }

       /* CORREÇÃO DO BOTÃO MOBILE */
       #btn-whatsapp-buy, .btn-primary-action {
           padding: 15px 20px !important;
           font-size: 0.9rem !important; /* Fonte menor */
           white-space: nowrap !important; /* Sem quebra de linha */
           width: 100% !important;
       }
       #btn-whatsapp-buy svg {
           width: 20px !important; height: 20px !important; /* Ícone menor */
           flex-shrink: 0;
       }
   }

   /* ADD-ON: HELP CENTER ACCORDIONS */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

.faq-group {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-group:hover {
    border-color: var(--accent);
    background: rgba(30, 41, 59, 0.6);
}

.faq-group[open] {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.faq-summary {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: white;
}

.faq-content {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    padding-top: 20px;
}

.faq-icon { transition: transform 0.3s ease; }
details[open] .faq-icon { transform: rotate(180deg); color: var(--accent); }

.tutorial-step {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}
.step-number {
    background: var(--accent);
    color: #000;
    font-weight: 900;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

