:root{
    /* =====================================================================
       PERSONALIZE AQUI — troque só estas duas variáveis para adaptar
       o site inteiro (menu, botões, cards, callouts) à sua identidade visual.
       ===================================================================== */
    --cor-principal: #F57208;   /* cor de marca / botões principais */
    --cor-destaque: #D9640A;    /* tom mais escuro, usado em hover e ênfase */

    --navy: #131B2E;
    --navy-soft: #1D2740;
    --bg: #F4F6FB;
    --bg-card: #FFFFFF;
    --border: #E6E9F2;
    --text: #131B2E;
    --text-soft: #5B6478;
    --orange: var(--cor-principal);
    --orange-dark: var(--cor-destaque);
    --orange-soft: #FDECDC;
    --orange-softer: #FFF6EE;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --max-width: 1120px;
    --shadow: 0 1px 2px rgba(19,27,46,0.04), 0 8px 24px rgba(19,27,46,0.06);
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  h1,h2,h3, .display{
    font-family: 'Sora', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0;
  }
  p{ margin:0; }
  a{ text-decoration:none; color:inherit; }
  ul{ margin:0; padding:0; list-style:none; }
  img,svg{ display:block; }
  .container{
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
  }
  section{ padding: 96px 0; }
  @media (max-width: 640px){ section{ padding: 64px 0; } }

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* ---------- Botões ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    cursor:pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
  }
  .btn:hover{ transform: translateY(-1px); }
  .btn-primary{ background: var(--orange); color: #fff; box-shadow: 0 6px 16px rgba(242,129,29,0.35); }
  .btn-primary:hover{ background: var(--orange-dark); }
  .btn-ghost{ background: #fff; color: var(--navy); border-color: var(--border); }
  .btn-ghost:hover{ box-shadow: var(--shadow); }
  .btn-dark-ghost{ background: rgba(255,255,255,0.08); color:#fff; border-color: rgba(255,255,255,0.25); }
  .btn-dark-ghost:hover{ background: rgba(255,255,255,0.15); }
  .btn-block{ width:100%; }

  /* ---------- Header ---------- */
  header{
    position: sticky; top:0; z-index: 50;
    background: rgba(244,246,251,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding: 18px 0;
  }
  .logo{ display:flex; align-items:center; gap:2px; font-family:'Sora',sans-serif; font-weight:800; font-size:24px; color: var(--navy); }
  .logo .radar-o{ position:relative; width:22px; height:22px; margin: 0 1px; display:inline-block; }
  .radar-ring{ position:absolute; inset:0; border-radius:50%; border:3.5px solid var(--orange); }
  .radar-ring.inner{ inset:6px; border-width:0; background: var(--orange); }
  .radar-ring.mid{ inset:2.5px; border:2px solid #fff; }

  .nav-links{ display:flex; align-items:center; gap:28px; }
  .nav-links a{ font-size:15px; font-weight:600; color: var(--text-soft); }
  .nav-links a:hover{ color: var(--navy); }
  .nav-cta{ display:flex; align-items:center; gap:12px; }
  .menu-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
  .menu-toggle svg{ width:24px; height:24px; }

  @media (max-width: 980px){
    .nav-links{
      display:flex; flex-direction:column; align-items:flex-start; gap:0;
      position:absolute; top:100%; left:0; right:0;
      background: var(--bg); border-bottom:1px solid var(--border);
      padding: 8px 24px 16px; max-height:0; overflow:hidden;
      transition: max-height .25s ease, padding .25s ease;
    }
    .nav-links.open{ max-height:220px; padding: 16px 24px 20px; }
    .nav-links a{ padding: 12px 0; width:100%; border-bottom:1px solid var(--border); }
    .nav-links a:last-child{ border-bottom:none; }
    .menu-toggle{ display:block; }
    header .nav{ position:relative; }
  }

  /* ---------- Hero ---------- */
  .hero{ padding-top: 72px; padding-bottom: 40px; text-align:center; }
  .hero .eyebrow-pill{
    display:inline-flex; align-items:center; gap:8px;
    background: var(--orange-soft); color: var(--orange-dark);
    padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight:700;
    margin-bottom: 24px;
  }
  .hero-lead{
    max-width: 620px; margin: 0 auto 28px;
    color: var(--text-soft); font-size: 17px;
  }
  .hero h1{ font-size: clamp(34px, 6vw, 58px); line-height:1.08; max-width: 780px; margin: 0 auto; }
  .hero-ctas{ display:flex; gap:14px; justify-content:center; margin-top:32px; flex-wrap:wrap; }

  /* ---------- Mockup do produto ---------- */
  .mockup-wrap{ margin-top: 56px; }
  .mockup{
    max-width: 760px; margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(19,27,46,0.10);
    padding: 32px;
    text-align:left;
  }
  .mockup-title{ font-weight:700; font-size:15px; color:var(--navy); margin-bottom:6px; }
  .mockup-desc{ font-size:14px; color: var(--text-soft); margin-bottom:8px; }
  .mockup-desc b{ color:var(--navy); }
  .mockup-note{
    background: var(--bg); border-radius: var(--radius-sm);
    padding: 12px 14px; font-size: 13px; color: var(--text-soft);
    margin: 14px 0 20px;
  }
  .bar-scale{ display:flex; justify-content:space-between; font-size:11px; color:var(--text-soft); margin-bottom:6px; }
  .bar-track{ height:8px; background:#EDEFF6; border-radius:999px; overflow:hidden; }
  .bar-fill{ height:100%; width:68%; background: linear-gradient(90deg,#2FBE79,#22A968); border-radius:999px; }
  .bar-labels{ display:flex; justify-content:space-between; font-size:11px; font-weight:700; margin-top:6px; }
  .bar-labels .risco{ color:#D64545; } .bar-labels .atencao{ color:var(--orange-dark); } .bar-labels .saudavel{ color:#22A968; }
  .stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:20px; }
  .stat{ background: var(--bg); border-radius: var(--radius-sm); padding: 12px 10px; text-align:center; }
  .stat-label{ font-size:11px; color:var(--text-soft); margin-bottom:4px; }
  .stat-value{ font-size:14px; font-weight:700; color:var(--navy); }
  @media (max-width:560px){ .stat-grid{ grid-template-columns:repeat(2,1fr); } }

  .checklist{ margin-top:24px; display:flex; flex-direction:column; gap:10px; }
  .checklist li{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:14.5px; color:var(--navy); }
  .check-dot{ width:18px; height:18px; border-radius:50%; background:var(--orange-soft); color:var(--orange-dark); display:flex; align-items:center; justify-content:center; font-size:11px; flex-shrink:0; }

  /* ---------- Carrossel do mockup ---------- */
  .carousel-viewport{ position:relative; overflow:hidden; transition: height .4s ease; }
  .carousel-slide{
    position:absolute; top:0; left:0; width:100%;
    opacity:0; transform: translateX(14px);
    transition: opacity .45s ease, transform .45s ease;
    pointer-events:none;
  }
  .carousel-slide.active{ position:relative; opacity:1; transform:none; pointer-events:auto; }
  .carousel-controls{ display:flex; align-items:center; justify-content:center; gap:18px; margin-top:24px; }
  .carousel-arrow{
    width:36px; height:36px; border-radius:50%; border:1px solid var(--border);
    background:#fff; color:var(--navy); font-size:18px; line-height:1;
    display:flex; align-items:center; justify-content:center; cursor:pointer;
    transition: background .15s ease, transform .15s ease;
  }
  .carousel-arrow:hover{ background: var(--orange-soft); transform: translateY(-1px); }
  .carousel-dots{ display:flex; gap:8px; }
  .carousel-dot{ width:8px; height:8px; border-radius:50%; background: var(--border); border:none; cursor:pointer; padding:0; transition: background .2s ease, width .2s ease; }
  .carousel-dot.active{ background: var(--orange); width:22px; border-radius:999px; }

  /* ---------- Slide: comparação de cenários ---------- */
  .scenario-compare{ display:flex; align-items:center; gap:14px; margin-top:20px; }
  .scenario-col{ flex:1; background: var(--bg); border-radius: var(--radius-sm); padding:16px; text-align:center; }
  .scenario-col.highlight{ background: var(--orange-soft); }
  .scenario-label{ font-size:12px; color: var(--text-soft); font-weight:600; margin-bottom:6px; }
  .scenario-value{ font-family:'Sora',sans-serif; font-weight:800; font-size:20px; color:var(--navy); }
  .scenario-caption{ font-size:12px; color: var(--text-soft); margin-top:4px; }
  .delta-up{ color:#22A968; font-weight:700; }
  .scenario-arrow{ font-size:20px; color: var(--orange); flex-shrink:0; }
  @media (max-width:480px){ .scenario-compare{ flex-direction:column; } .scenario-arrow{ transform:rotate(90deg); } }

  /* ---------- Slide: SWOT ---------- */
  .swot-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:20px; }
  @media (max-width:480px){ .swot-grid{ grid-template-columns:1fr; } }
  .swot-card{ background: var(--bg); border-left:3px solid var(--border); border-radius: var(--radius-sm); padding:14px; }
  .swot-card.forcas{ border-color:#22A968; }
  .swot-card.fraquezas{ border-color:#D64545; }
  .swot-card.oportunidades{ border-color:#3B82F6; }
  .swot-card.ameacas{ border-color:var(--orange); }
  .swot-title{ font-size:12.5px; font-weight:700; color:var(--navy); margin-bottom:8px; }
  .swot-tags{ display:flex; flex-wrap:wrap; gap:6px; }
  .swot-tag{ font-size:11.5px; background:#fff; border:1px solid var(--border); border-radius:999px; padding:3px 9px; color: var(--text-soft); }

  /* ---------- Slide: onboarding ---------- */
  .onboard-steps{ display:flex; gap:6px; margin: 4px 0 20px; }
  .onboard-steps span{ height:4px; flex:1; border-radius:999px; background: var(--border); }
  .onboard-steps span.done{ background: var(--orange); }
  .onboard-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
  @media (max-width:480px){ .onboard-grid{ grid-template-columns:1fr; } }
  .onboard-card{ background: var(--bg); border:1.5px solid var(--border); border-radius: var(--radius-sm); padding:18px; text-align:left; }
  .onboard-card.selected{ background: var(--orange-soft); border-color: var(--orange); }
  .onboard-emoji{ font-size:22px; margin-bottom:10px; }
  .onboard-card h4{ font-family:'Sora',sans-serif; font-size:14.5px; color:var(--navy); margin-bottom:6px; }
  .onboard-card p{ font-size:12.5px; color: var(--text-soft); }
  .onboard-badge{ display:inline-block; font-size:10.5px; font-weight:700; color:var(--orange-dark); background:#fff; border-radius:999px; padding:2px 8px; margin-bottom:8px; }
  .onboard-reassure{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
  .onboard-reassure span{ font-size:12.5px; color: var(--text-soft); display:flex; align-items:center; gap:6px; }

  /* ---------- Slide: pró-labore (3 cenários) ---------- */
  .prolabore-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-top:20px; }
  @media (max-width:560px){ .prolabore-grid{ grid-template-columns:1fr; } }
  .prolabore-col{ background: var(--bg); border-radius: var(--radius-sm); padding:14px 10px; text-align:center; border:1.5px solid transparent; }
  .prolabore-col.recommended{ background: var(--orange-soft); border-color: var(--orange); }
  .prolabore-tag{ font-size:10.5px; font-weight:700; color: var(--text-soft); text-transform:uppercase; letter-spacing:.03em; }
  .prolabore-col.recommended .prolabore-tag{ color: var(--orange-dark); }
  .prolabore-value{ font-family:'Sora',sans-serif; font-weight:800; font-size:16px; color:var(--navy); margin:8px 0 4px; }
  .prolabore-pct{ font-size:11.5px; color: var(--text-soft); }

  /* ---------- Section headers ---------- */
  .section-head{ text-align:center; max-width:640px; margin: 0 auto 56px; }
  .section-head h2{ font-size: clamp(28px,4vw,40px); margin-top:10px; line-height:1.15; }
  .section-head p{ color: var(--text-soft); margin-top:16px; font-size:16px; }

  /* ---------- Features grid ---------- */
  .features-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:20px; }
  @media (max-width: 720px){ .features-grid{ grid-template-columns: 1fr; } }
  .feature-card{
    background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius-md);
    padding: 28px; transition: box-shadow .2s ease, transform .2s ease;
  }
  .feature-card:hover{ box-shadow: var(--shadow); transform: translateY(-2px); }
  .feature-icon{
    width:44px; height:44px; border-radius: 12px; background: var(--orange-soft);
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  }
  .feature-card h3{ font-size:18px; margin-bottom:8px; }
  .feature-card p{ color: var(--text-soft); font-size:14.5px; }

  /* ---------- Método ---------- */
  .metodo{ display:flex; flex-direction:column; gap:16px; max-width: 760px; margin: 0 auto; }
  .metodo-step{
    border:1px solid var(--border); border-radius: var(--radius-md);
    padding: 28px 32px; background: var(--bg-card);
  }
  .metodo-step.dark{ background: var(--navy); border-color: var(--navy); color:#fff; }
  .metodo-num{ font-family:'Sora',sans-serif; font-weight:800; color: var(--orange); font-size:14px; margin-bottom:10px; }
  .metodo-step h3{ font-size:19px; margin-bottom:8px; }
  .metodo-step.dark h3{ color:#fff; }
  .metodo-step p{ color: var(--text-soft); font-size:15px; }
  .metodo-step.dark p{ color: rgba(255,255,255,0.72); }
  .metodo-step .btn{ margin-top:20px; }

  /* ---------- Planos ---------- */
  .plans-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; align-items:stretch; }
  @media (max-width: 900px){ .plans-grid{ grid-template-columns: 1fr; max-width:420px; margin:0 auto; } }
  .plan-card{
    display:flex; flex-direction:column;
    background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; position:relative;
  }
  .plan-card.featured{
    background: linear-gradient(180deg, var(--orange-softer), #fff 40%);
    border-color: var(--orange);
    box-shadow: 0 16px 40px rgba(242,129,29,0.18);
  }
  .plan-tag{
    position:absolute; top:-13px; left:32px;
    background: var(--orange); color:#fff; font-size:12px; font-weight:700;
    padding:5px 14px; border-radius:999px;
  }
  .plan-name{ font-size:20px; font-weight:800; font-family:'Sora',sans-serif; color:var(--navy); }
  .plan-desc{ color: var(--text-soft); font-size:14px; margin-top:8px; min-height:38px; }
  .plan-price{ font-family:'Sora',sans-serif; font-weight:800; font-size:38px; color:var(--navy); margin:18px 0 22px; }
  .plan-price span{ font-size:15px; font-weight:600; color: var(--text-soft); }
  .plan-features{ background: var(--bg); border-radius: var(--radius-sm); padding:18px; display:flex; flex-direction:column; gap:11px; flex:1; margin-bottom:24px; }
  .plan-card.featured .plan-features{ background: rgba(242,129,29,0.06); }
  .plan-features li{ display:flex; gap:9px; font-size:14px; color: var(--navy); font-weight:500; }
  .plan-features li svg{ flex-shrink:0; margin-top:2px; }

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 64px 40px; text-align:center; color:#fff;
  }
  .cta-banner h2{ color:#fff; font-size: clamp(26px,4vw,36px); }
  .cta-banner p{ color: rgba(255,255,255,0.72); max-width:520px; margin: 18px auto 0; font-size:16px; }
  .cta-banner .hero-ctas{ margin-top:32px; }

  /* ---------- Footer ---------- */
  footer{ padding: 56px 0 40px; text-align:center; }
  .footer-links{ display:flex; justify-content:center; gap:28px; margin-top:16px; }
  .footer-links a{ color: var(--text-soft); font-size:14px; font-weight:600; }
  .footer-copy{ color: var(--text-soft); font-size:14px; margin-top:6px; }

  .reveal{ opacity:0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:none; }
  @media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* =========================================================================
   ESTILOS DAS PÁGINAS DE ARTIGO (usados em /artigos/index.html e nos posts)
   ========================================================================= */

.breadcrumb{ font-size:14px; color: var(--text-soft); margin-bottom:20px; }
.breadcrumb a{ color: var(--text-soft); font-weight:600; }
.breadcrumb a:hover{ color: var(--orange-dark); }

/* ---------- Listagem de artigos ---------- */
.articles-hero{ text-align:center; max-width:640px; margin: 0 auto 56px; }
.articles-hero h1{ font-size: clamp(30px,5vw,44px); line-height:1.15; margin-top:10px; }
.articles-hero p{ color: var(--text-soft); margin-top:16px; font-size:16px; }

.articles-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
@media (max-width: 900px){ .articles-grid{ grid-template-columns: 1fr; max-width:460px; margin:0 auto; } }
.article-card{
  background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius-md);
  transition: box-shadow .2s ease, transform .2s ease;
  overflow: hidden;
}
.article-card:hover{ box-shadow: var(--shadow); transform: translateY(-2px); }
.article-card-link{
  display:flex; flex-direction:column; height:100%;
  padding: 28px; text-decoration:none; color:inherit;
}
.article-tag{ display:inline-block; font-size:12px; font-weight:700; color: var(--orange-dark); background: var(--orange-soft); padding:4px 12px; border-radius:999px; margin-bottom:16px; width:fit-content; }
.article-card h3{ font-size:19px; margin-bottom:10px; }
.article-card p{ color: var(--text-soft); font-size:14.5px; flex:1; }
.article-meta{ font-size:13px; color: var(--text-soft); margin-top:18px; font-weight:600; }

/* ---------- Página de artigo individual ---------- */
.article-header{ max-width: 720px; margin: 0 auto 40px; text-align:center; }
.article-header h1{ font-size: clamp(28px,5vw,42px); line-height:1.15; margin-top:14px; }
.article-header .article-meta{ margin-top:18px; }

.article-body{ max-width: 680px; margin: 0 auto; }
.article-body h2{ font-size:24px; margin-top:44px; margin-bottom:16px; }
.article-body h3{ font-size:18px; margin-top:28px; margin-bottom:10px; }
.article-body p{ color: var(--text); font-size:16.5px; line-height:1.75; margin-bottom:18px; }
.article-body p.lead{ font-size:18px; color: var(--text-soft); }
.article-body ul, .article-body ol{ margin: 0 0 20px; padding-left: 22px; }
.article-body li{ font-size:16.5px; line-height:1.7; margin-bottom:8px; color: var(--text); }
.article-body strong{ color: var(--navy); }

.formula-box{
  background: var(--navy); color:#fff; border-radius: var(--radius-md);
  padding: 24px 28px; margin: 28px 0; text-align:center;
}
.formula-box .label{ font-size:12.5px; text-transform:uppercase; letter-spacing:.04em; color: rgba(255,255,255,0.6); margin-bottom:10px; }
.formula-box .formula{ font-family:'Sora',sans-serif; font-weight:700; font-size: clamp(17px, 3vw, 22px); }

.example-box{
  background: var(--bg); border:1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px 26px; margin: 24px 0;
}
.example-box .example-label{ font-size:12.5px; font-weight:700; color: var(--orange-dark); text-transform:uppercase; letter-spacing:.03em; margin-bottom:12px; }
.example-row{ display:flex; justify-content:space-between; font-size:15px; padding:6px 0; border-bottom:1px dashed var(--border); }
.example-row:last-child{ border-bottom:none; font-weight:700; color:var(--navy); }
.example-row span:first-child{ color: var(--text-soft); }

.inline-cta{
  background: var(--orange-softer); border:1px solid var(--orange-soft); border-radius: var(--radius-md);
  padding: 24px 28px; margin: 36px 0; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.inline-cta p{ margin:0; font-size:15px; color: var(--navy); font-weight:600; max-width:400px; }
.inline-cta p, .inline-cta div{ margin-bottom:0 !important; }

.related-articles{ max-width: 680px; margin: 56px auto 0; padding-top:40px; border-top:1px solid var(--border); }
.related-articles h4{ font-family:'Sora',sans-serif; font-weight:700; font-size:16px; color:var(--navy); margin-bottom:18px; }
.related-links{ display:flex; flex-direction:column; gap:12px; }
.related-links a{ font-size:15px; font-weight:600; color: var(--navy); display:flex; align-items:center; gap:8px; }
.related-links a:hover{ color: var(--orange-dark); }

/* ---------- Caixa de fontes/referências ---------- */
.sources-box{
  background: var(--bg); border:1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px 26px; margin: 36px 0 12px;
}
.sources-box h4{ font-family:'Sora',sans-serif; font-weight:700; font-size:14px; color:var(--navy); margin-bottom:6px; }
.sources-box .sources-note{ font-size:13px; color: var(--text-soft); margin-bottom:14px; }
.sources-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
.sources-list li{ font-size:13.5px; color: var(--text-soft); display:flex; gap:8px; }
.sources-list li span.num{ color: var(--orange-dark); font-weight:700; flex-shrink:0; }
.sources-list a{ color: var(--navy); font-weight:600; text-decoration: underline; text-decoration-color: var(--border); text-underline-offset:2px; }
.sources-list a:hover{ color: var(--orange-dark); }

/* =========================================================================
   ATUALIZAÇÕES PLG — menu funil, dropdown, CTAs de destaque e footer em colunas
   ========================================================================= */

/* ---------- Botão menor (usado no "Entrar" do menu) ---------- */
.btn-sm{ padding: 9px 20px; font-size: 14px; }
.nav-login{ margin-left: 4px; }
.nav-links a.btn{ color: var(--navy); }

/* ---------- CTA de destaque total (mais chamativo que o btn-primary padrão) ---------- */
.btn-cta{
  box-shadow: 0 8px 22px rgba(242,129,29,0.40);
}
.btn-cta:hover{
  background: var(--orange-dark);
  box-shadow: 0 12px 30px rgba(242,129,29,0.55);
  transform: translateY(-2px) scale(1.02);
}

/* ---------- Item de menu com dropdown ---------- */
.nav-item{ position: relative; }
.nav-dropdown-trigger{
  display:flex; align-items:center; gap:6px;
  background:none; border:none; cursor:pointer;
  font-family:'Inter',sans-serif; font-size:15px; font-weight:600; color: var(--text-soft);
  padding:0;
}
.nav-dropdown-trigger:hover{ color: var(--navy); }
.nav-dropdown-trigger .chevron{ transition: transform .2s ease; }
.nav-dropdown-trigger[aria-expanded="true"] .chevron{ transform: rotate(180deg); }

.nav-dropdown-panel{
  display:none; flex-direction:column;
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%);
  background:#fff; border:1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow); min-width:240px; padding:8px; z-index:60;
}
.nav-dropdown-panel.open{ display:flex; }
.nav-dropdown-panel a{
  padding:11px 14px; border-radius:10px; font-size:14px; font-weight:600; color: var(--text-soft);
  white-space:nowrap;
}
.nav-dropdown-panel a:hover{ background: var(--orange-soft); color: var(--navy); }

@media (max-width: 980px){
  /* Dentro do menu mobile, o dropdown vira uma lista sempre visível (sem precisar clicar) */
  .nav-dropdown-trigger{ pointer-events:none; padding: 12px 0 4px; width:100%; border-bottom:1px solid var(--border); }
  .nav-dropdown-trigger .chevron{ display:none; }
  .nav-dropdown-panel{
    display:flex !important; position:static; transform:none;
    box-shadow:none; border:none; padding: 4px 0 8px 10px; min-width:0;
  }
  .nav-dropdown-panel a{ padding: 9px 0; }
  .nav-login{ margin: 8px 0 4px; width:fit-content; }
}

/* ---------- Footer em colunas ---------- */
.footer-grid{
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap:40px;
  text-align:left; padding: 8px 0 32px;
}
.footer-col h4{
  font-family:'Sora',sans-serif; font-weight:700; font-size:14px; color: var(--navy);
  margin-bottom:16px;
}
.footer-col a{ display:block; font-size:14.5px; color: var(--text-soft); font-weight:600; margin-bottom:12px; }
.footer-col a:hover{ color: var(--orange-dark); }
.footer-col-brand .logo{ margin-bottom:14px; }
.footer-tagline{ font-size:14px; color: var(--text-soft); line-height:1.6; max-width:260px; }
.footer-bottom{ text-align:center; padding-top:28px; border-top:1px solid var(--border); font-size:14px; color: var(--text-soft); }

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap:32px 24px; text-align:left; }
  .footer-col-brand{ grid-column: 1 / -1; text-align:left; }
  .footer-col-brand .logo{ justify-content:flex-start; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- Product Callout Box (interrompe a leitura e joga pro produto) ---------- */
.product-callout{
  position: relative;
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  background: linear-gradient(135deg, #ffffff, var(--orange-softer) 120%);
  border: 1.5px solid var(--orange-soft);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin: 36px 0;
  box-shadow: 0 14px 34px rgba(242,129,29,0.14);
}
.product-callout-icon{
  width:52px; height:52px; border-radius:14px; flex-shrink:0;
  background: var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:24px;
}
.product-callout-text{ flex:1; min-width:220px; }
.product-callout-text p{ margin:0 !important; font-size:15.5px; font-weight:600; color:var(--navy); line-height:1.5; }
.product-callout .btn{ flex-shrink:0; }
@media (max-width:560px){
  .product-callout{ flex-direction:column; align-items:flex-start; }
  .product-callout .btn{ width:100%; justify-content:center; }
}

/* ---------- Calculadora interativa embutida no artigo ---------- */
.calc-widget{
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 28px 30px; margin: 32px 0; color:#fff;
}
.calc-widget .calc-title{ font-family:'Sora',sans-serif; font-weight:700; font-size:16px; margin-bottom:4px; display:flex; align-items:center; gap:8px; }
.calc-widget .calc-sub{ font-size:13.5px; color: rgba(255,255,255,0.6); margin-bottom:22px; }
.calc-fields{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:22px; }
@media (max-width:480px){ .calc-fields{ grid-template-columns:1fr; } }
.calc-field label{ display:block; font-size:12.5px; color: rgba(255,255,255,0.7); margin-bottom:6px; font-weight:600; }
.calc-field .calc-input-wrap{ position:relative; }
.calc-field .calc-input-wrap span{ position:absolute; left:14px; top:50%; transform:translateY(-50%); color: rgba(255,255,255,0.5); font-size:14px; }
.calc-field input{
  width:100%; background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm); padding:12px 14px 12px 32px; color:#fff; font-size:15px;
  font-family:'Inter',sans-serif;
}
.calc-field input:focus{ outline:none; border-color: var(--orange); background: rgba(255,255,255,0.12); }
.calc-field input::placeholder{ color: rgba(255,255,255,0.35); }
.calc-result{
  background: rgba(242,129,29,0.15); border:1px solid rgba(242,129,29,0.35);
  border-radius: var(--radius-sm); padding:18px 20px; text-align:center;
}
.calc-result .calc-result-label{ font-size:12.5px; color: rgba(255,255,255,0.7); margin-bottom:6px; }
.calc-result .calc-result-value{ font-family:'Sora',sans-serif; font-weight:800; font-size:26px; color:#FDECDC; }
.calc-result .calc-result-note{ font-size:12.5px; color: rgba(255,255,255,0.55); margin-top:8px; }
.calc-cta{ margin-top:18px; text-align:center; }
.calc-cta .btn{ width:100%; justify-content:center; }

/* ---------- Toggle de modo da calculadora (% ou R$) ---------- */
.calc-mode-toggle{ display:flex; gap:6px; margin-bottom:8px; }
.calc-mode-btn{
  flex:1; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7); font-size:12.5px; font-weight:600;
  padding:7px 10px; border-radius:8px; cursor:pointer; transition: all .15s ease;
}
.calc-mode-btn.active{ background: var(--orange); border-color: var(--orange); color:#fff; }

/* =========================================================================
   SHOWCASE DE RECURSOS EM DESTAQUE (alternado, para a nova home)
   ========================================================================= */
.showcase-block{
  display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center;
  padding: 56px 0;
}
.showcase-block.reverse .showcase-visual{ order:2; }
.showcase-block.reverse .showcase-text{ order:1; }
@media (max-width: 860px){
  .showcase-block, .showcase-block.reverse{ grid-template-columns:1fr; gap:32px; padding:32px 0; }
  .showcase-block.reverse .showcase-visual, .showcase-block .showcase-visual{ order:1; }
  .showcase-block.reverse .showcase-text, .showcase-block .showcase-text{ order:2; }
}
.showcase-text .eyebrow{ margin-bottom:14px; display:inline-block; }
.showcase-text h3{ font-size: clamp(24px,3.2vw,32px); margin-bottom:16px; line-height:1.2; }
.showcase-text p{ color: var(--text-soft); font-size:16px; line-height:1.7; margin-bottom:20px; }
.showcase-text ul{ display:flex; flex-direction:column; gap:10px; }
.showcase-text ul li{ display:flex; gap:10px; font-size:14.5px; font-weight:600; color:var(--navy); align-items:flex-start; }
.showcase-text ul li .check-dot{ margin-top:2px; }

.showcase-visual{
  background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding:28px; box-shadow: 0 20px 50px rgba(19,27,46,0.08);
}

/* Painel da Lina — análise de Canvas/SWOT (não é chat) */
.lina-panel-header{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.lina-panel-header .lina-avatar{ width:32px; height:32px; border-radius:50%; background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; flex-shrink:0; }
.lina-panel-header .lina-title{ font-size:14px; font-weight:700; color:var(--navy); }
.lina-panel-header .lina-subtitle{ font-size:12px; color:var(--text-soft); }

.lina-progress-row{ display:flex; justify-content:space-between; font-size:12px; color:var(--text-soft); margin-bottom:6px; }
.lina-progress-track{ height:7px; background:#EDEFF6; border-radius:999px; overflow:hidden; margin-bottom:16px; }
.lina-progress-fill{ height:100%; background: linear-gradient(90deg,#F57208,#F2A65A); border-radius:999px; }

.lina-status-badge{ display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700; padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.lina-status-badge.amber{ background:#FEF3C7; color:#92400E; }
.lina-status-badge.emerald{ background:#D1FAE5; color:#065F46; }
.lina-status-badge .dot{ width:7px; height:7px; border-radius:50%; background:currentColor; }

.lina-insight-text{ font-size:13.5px; line-height:1.6; color:var(--navy); background:var(--bg); border-radius:10px; padding:12px 14px; margin-bottom:14px; }
.lina-insight-text b{ color: var(--orange-dark); }

.lina-checklist-item{ display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--border); border-radius:10px; padding:11px 14px; }
.lina-checklist-item .lina-check-icon{ color: var(--text-soft); flex-shrink:0; }
.lina-checklist-item .lina-item-text{ flex:1; }
.lina-checklist-item .lina-item-title{ font-size:13px; font-weight:700; color:var(--navy); }
.lina-checklist-item .lina-item-meta{ font-size:11.5px; color:var(--text-soft); }
.lina-checklist-item .lina-priority{ font-size:10.5px; font-weight:700; padding:3px 9px; border-radius:999px; background:#FDECDC; color:var(--orange-dark); flex-shrink:0; }

/* Central de Decisão — mini cards de ação */
.decision-list{ display:flex; flex-direction:column; gap:10px; }
.decision-card{ display:flex; align-items:center; gap:12px; background: var(--bg); border-radius: var(--radius-sm); padding:14px 16px; }
.decision-impact{ font-size:10.5px; font-weight:700; padding:4px 10px; border-radius:999px; flex-shrink:0; }
.decision-impact.alto{ background:#FDECDC; color: var(--orange-dark); }
.decision-impact.medio{ background:#EAF3FF; color:#2563EB; }
.decision-impact.baixo{ background:#EAF7EE; color:#22A968; }
.decision-card-text{ flex:1; }
.decision-card-text .decision-title{ font-size:14px; font-weight:700; color:var(--navy); }
.decision-card-text .decision-sub{ font-size:12.5px; color: var(--text-soft); }

/* Maturidade + Gamificação */
.maturity-score{ text-align:center; margin-bottom:20px; }
.maturity-ring{ width:120px; height:120px; margin:0 auto 12px; position:relative; }
.maturity-ring svg{ transform: rotate(-90deg); }
.maturity-ring .maturity-value{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-family:'Sora',sans-serif; font-weight:800; font-size:26px; color:var(--navy); }
.maturity-label{ font-size:13px; color: var(--text-soft); font-weight:600; }
.badge-row{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.badge-pill{ display:flex; align-items:center; gap:6px; background: var(--bg); border:1px solid var(--border); border-radius:999px; padding:7px 13px; font-size:12px; font-weight:700; color:var(--navy); }
.badge-pill .dot{ width:8px; height:8px; border-radius:50%; }

/* =========================================================================
   PÁGINA DE FAQ
   ========================================================================= */
.faq-hero{ text-align:center; max-width:600px; margin:0 auto 48px; }
.faq-hero h1{ font-size: clamp(30px,5vw,44px); margin-top:10px; }
.faq-hero p{ color: var(--text-soft); margin-top:16px; font-size:16px; }

.faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius-md); overflow:hidden; }
.faq-question{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding:20px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-family:'Sora',sans-serif; font-weight:700; font-size:16px; color:var(--navy);
}
.faq-question .faq-chevron{ flex-shrink:0; transition: transform .2s ease; color: var(--orange); }
.faq-item.open .faq-chevron{ transform: rotate(180deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-answer-inner{ padding: 0 24px 22px; color: var(--text-soft); font-size:15px; line-height:1.7; }
.faq-cta{ text-align:center; margin-top:48px; }
.faq-cta p{ color: var(--text-soft); margin-bottom:18px; font-size:15.5px; }
