/* ===========================================================
   ATÍPICOS — Sistema de Marca (LP)
   Paleta, tipografia e componentes compartilhados (todos os mercados)
   =========================================================== */

:root {
  /* Paleta oficial */
  --violeta: #6B4FFA;
  --lavanda: #9B7DFF;
  --menta: #2EE5A8;
  --navy: #1A1438;
  --navy-deep: #0A0812;
  --offwhite: #FBFAFF;
  --orange: #FF6B35;

  /* Derivados */
  --navy-soft: #241C4D;
  --lavanda-soft: #EDE8FF;
  --texto: #1A1438;
  --texto-suave: #4A4368;
  --linha: #E6E0F5;

  /* Tipografia */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1080px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -18px rgba(26, 20, 56, 0.35);
  --shadow-soft: 0 10px 30px -12px rgba(26, 20, 56, 0.18);
  --grad: linear-gradient(160deg, var(--violeta) 0%, var(--lavanda) 100%);
}

/* Modo calmo (acessibilidade): reduz contraste/saturação, fundo creme */
:root.calmo {
  --offwhite: #F6F1E9;
  --lavanda-soft: #EAE3F5;
  --texto: #2E2A3D;
  --texto-suave: #5A5470;
  --linha: #E3DBCB;
}
:root.calmo body { filter: saturate(0.9); }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--texto);
  background: var(--offwhite);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--texto); }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--texto-suave); }
strong { color: var(--texto); font-weight: 600; }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }

/* ---------- Estrutura ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(56px, 9vw, 110px) 0; }
.center { text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--violeta); background: var(--lavanda-soft);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 20px;
}
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--menta); }

.eyebrow { color: var(--violeta); font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 1.05rem;
  padding: 16px 32px; border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -8px rgba(107, 79, 250, 0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(107, 79, 250, 0.65); }
.btn-ghost { background: transparent; color: var(--violeta); border: 1.5px solid var(--lavanda); }
.btn-ghost:hover { background: var(--lavanda-soft); }
.btn-lg { font-size: 1.15rem; padding: 19px 44px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 255, 0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linha);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: 14px; }

/* Toggle modo calmo */
.calm-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lavanda-soft); color: var(--violeta);
  border: none; border-radius: 100px; padding: 8px 14px;
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem; cursor: pointer;
}
.calm-toggle:hover { background: #e3dcff; }
@media (max-width: 720px) { .header-cta .btn { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--offwhite); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(155, 125, 255, 0.18), transparent 70%),
    radial-gradient(50% 40% at 10% 30%, rgba(46, 229, 168, 0.10), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-top: 64px; padding-bottom: 64px; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 1.18rem; margin: 22px 0 32px; max-width: 32ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 26px; font-size: 0.9rem; color: var(--texto-suave); flex-wrap: wrap; }
.hero__trust .stars { color: #F5A623; letter-spacing: 2px; }

.hero__art { position: relative; }
.mock {
  position: relative;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 14px; border: 1px solid var(--linha); transform: rotate(-2deg);
  overflow: hidden;
}
.mock img {
  width: 100%; border-radius: 8px; display: block;
  max-height: 460px; object-fit: cover; object-position: top;
}
/* fade na base sugerindo que a pagina continua */
.mock::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 14px; height: 90px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(to top, #fff 12%, rgba(255,255,255,0));
  pointer-events: none;
}
.mock__badge {
  position: absolute; bottom: -18px; right: -10px;
  background: var(--navy); color: #fff; border-radius: 14px; padding: 12px 18px;
  font-size: 0.85rem; box-shadow: var(--shadow-soft); transform: rotate(3deg);
}
.mock__badge b { color: var(--menta); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .mock { max-width: 340px; margin: 0 auto; transform: rotate(0); }
}

/* ---------- Faixa de reconhecimento ---------- */
.recog { background: var(--navy); color: #fff; }
.recog h2, .recog h3 { color: #fff; }
.recog p { color: #C9C2E8; }
.recog .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.recog__card {
  background: var(--navy-soft); border: 1px solid rgba(155,125,255,0.18);
  border-radius: var(--radius-sm); padding: 22px 24px;
}
.recog__card h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; margin-bottom: 6px; }
.recog__card p { font-size: 0.96rem; }
@media (max-width: 640px) { .recog .grid { grid-template-columns: 1fr; } }

/* ---------- Insight ---------- */
.insight { background: var(--offwhite); }
.insight .quote {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.3;
  max-width: 20ch; margin: 0 auto; color: var(--texto);
}
.insight .quote .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.insight .sub { max-width: 52ch; margin: 24px auto 0; font-size: 1.08rem; }

/* ---------- O que tem dentro ---------- */
.inside .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.feature {
  background: #fff; border: 1px solid var(--linha); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-soft);
}
.feature__icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--lavanda-soft); margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; stroke: var(--violeta); }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: 0.97rem; }
@media (max-width: 820px) { .inside .grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* lista de bullets acessibilidade */
.acc { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; margin-top: 36px; max-width: 760px; }
.acc li { list-style: none; display: flex; gap: 12px; align-items: flex-start; color: var(--texto-suave); }
.acc li svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.acc li b { color: var(--texto); }
@media (max-width: 640px) { .acc { grid-template-columns: 1fr; } }

/* ---------- Galeria veja por dentro ---------- */
.gallery { background: var(--offwhite); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.shot { margin: 0; }
.shot img {
  width: 100%; display: block; border-radius: 14px;
  border: 1px solid var(--linha); box-shadow: var(--shadow-soft);
  background: #fff; transition: transform .25s ease, box-shadow .25s ease;
}
.shot:hover img { transform: translateY(-6px); box-shadow: var(--shadow); }
.shot figcaption {
  text-align: center; margin-top: 14px; font-size: 0.9rem; font-weight: 600;
  color: var(--violeta); letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .gallery__grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; gap: 30px; }
}

/* ---------- Stats ---------- */
.stats { background: var(--lavanda-soft); }
:root.calmo .stats { background: #efeae0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.stat { text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3rem); color: var(--violeta); line-height: 1; }
.stat p { font-size: 0.92rem; margin-top: 10px; }
@media (max-width: 720px) { .stats .grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; } }

/* ---------- Oferta / preço ---------- */
.offer { background: var(--navy); color: #fff; }
.offer h2 { color: #fff; }
.offer .price-card {
  background: linear-gradient(180deg, #fff, #faf8ff); color: var(--texto);
  border-radius: 24px; padding: 44px 40px; max-width: 480px; margin: 44px auto 0;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5); text-align: center;
  border: 1px solid rgba(155,125,255,0.3);
}
.price-card__tag {
  display: inline-block; background: var(--menta); color: var(--navy);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.price-card__old { color: var(--texto-suave); text-decoration: line-through; font-size: 1.1rem; }
.price-card__now { font-family: var(--serif); font-size: 3.6rem; color: var(--violeta); line-height: 1; margin: 6px 0; }
.price-card__now small { font-size: 1.3rem; }
.price-card__note { font-size: 0.9rem; margin: 4px 0 26px; }
.price-card ul { text-align: left; margin: 0 0 28px; display: grid; gap: 12px; }
.price-card li { list-style: none; display: flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; color: var(--texto); }
.price-card li svg { width: 21px; height: 21px; flex: none; margin-top: 2px; stroke: var(--menta); }
.offer__secure { margin-top: 18px; font-size: 0.85rem; color: #C9C2E8; display: flex; gap: 8px; align-items: center; justify-content: center; }

/* ---------- FAQ ---------- */
.faq .item {
  border-bottom: 1px solid var(--linha); padding: 6px 0;
}
.faq details { padding: 18px 0; }
.faq summary {
  font-family: var(--serif); font-size: 1.18rem; color: var(--texto);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex: none; width: 24px; height: 24px; transition: transform .25s ease; color: var(--violeta); }
.faq details[open] summary .ic { transform: rotate(45deg); }
.faq details p { margin-top: 14px; font-size: 1rem; max-width: 70ch; }
.faq .wrap { max-width: 760px; }

/* ---------- CTA final ---------- */
.final { background: var(--grad); color: #fff; text-align: center; }
.final h2 { color: #fff; max-width: 18ch; margin: 0 auto 18px; }
.final p { color: rgba(255,255,255,0.9); max-width: 48ch; margin: 0 auto 32px; }
.final .btn-primary { background: #fff; color: var(--violeta); }
.final .btn-primary:hover { background: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #8E86B8; padding: 50px 0 36px; font-size: 0.9rem; }
.site-footer .top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.site-footer .brand__name { color: #fff; }
.site-footer a { color: #B7AEE0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer .legal { font-size: 0.82rem; line-height: 1.7; }

/* utilidades de animação suave */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   BLOG — Atípicos
   =========================================================== */
.blog-hero { background: var(--navy); color:#fff; padding: 64px 0 48px; }
.blog-hero h1 { color:#fff; }
.blog-hero p { color:#C9C2E8; max-width:56ch; margin:14px auto 0; }
.blog-hero .center { text-align:center; }

.post-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; padding:56px 0; }
@media (max-width:880px){ .post-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .post-grid{ grid-template-columns:1fr; } }
.post-card {
  display:flex; flex-direction:column; background:#fff; border:1px solid var(--linha);
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-soft);
  text-decoration:none; transition:transform .22s ease, box-shadow .22s ease;
}
.post-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.post-card__top { height:7px; background:var(--grad); }
.post-card__body { padding:24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.post-card__cat { font-size:.74rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--violeta); }
.post-card__title { font-family:var(--serif); font-size:1.22rem; color:var(--texto); line-height:1.25; }
.post-card__excerpt { font-size:.94rem; color:var(--texto-suave); flex:1; }
.post-card__meta { font-size:.82rem; color:var(--texto-suave); display:flex; gap:10px; align-items:center; margin-top:6px; }
.post-card__meta .dotsep { width:3px;height:3px;border-radius:50%;background:var(--lavanda); }

/* Artigo */
.article-hero { background: var(--navy); color:#fff; padding:60px 0 44px; }
.article-hero .wrap { max-width:760px; }
.article-hero .cat { display:inline-block; font-size:.78rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--menta); margin-bottom:14px; }
.article-hero h1 { color:#fff; font-size:clamp(1.8rem,4.2vw,2.7rem); }
.article-hero .meta { color:#9C93C8; font-size:.9rem; margin-top:16px; display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.article-hero .meta .dotsep { width:3px;height:3px;border-radius:50%;background:#6B5CA8; }

.article { padding:50px 0 30px; }
.article .wrap { max-width:720px; }
.article p, .article li { font-size:1.06rem; line-height:1.8; color:var(--texto-suave); }
.article h2 { font-size:clamp(1.4rem,3vw,1.9rem); margin:42px 0 14px; color:var(--texto); }
.article h3 { font-size:1.2rem; margin:28px 0 10px; color:var(--texto); font-family:var(--serif); }
.article p { margin-bottom:18px; }
.article ul, .article ol { margin:0 0 18px 0; padding-left:22px; display:grid; gap:8px; }
.article li::marker { color:var(--violeta); }
.article strong { color:var(--texto); }
.article a { color:var(--violeta); text-decoration:underline; text-underline-offset:2px; }
.article .lead { font-size:1.18rem; color:var(--texto); line-height:1.7; margin-bottom:24px; }
.article blockquote {
  margin:26px 0; padding:18px 24px; border-left:4px solid var(--lavanda);
  background:var(--lavanda-soft); border-radius:0 12px 12px 0;
  font-family:var(--serif); font-style:italic; font-size:1.15rem; color:var(--texto);
}
.article .note {
  font-size:.92rem; color:var(--texto-suave); background:#fff; border:1px dashed var(--linha);
  border-radius:12px; padding:16px 18px; margin:24px 0;
}

/* CTA do planner dentro do artigo */
.cta-box {
  background:var(--grad); color:#fff; border-radius:var(--radius); padding:34px 32px;
  margin:40px 0; text-align:center;
}
.cta-box h3 { color:#fff; font-size:1.5rem; margin-bottom:10px; }
.cta-box p { color:rgba(255,255,255,.92); max-width:46ch; margin:0 auto 22px; }
.cta-box .btn-primary { background:#fff; color:var(--violeta); }

/* FAQ do artigo reaproveita .faq */
.article .faq-block { margin-top:46px; }
.article .faq-block h2 { margin-bottom:8px; }

/* Relacionados */
.related { background:var(--lavanda-soft); padding:56px 0; }
:root.calmo .related { background:#efeae0; }
.related h2 { text-align:center; margin-bottom:34px; }
.related .grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:980px; margin:0 auto; }
@media (max-width:760px){ .related .grid{ grid-template-columns:1fr; max-width:420px; } }

/* breadcrumb */
.crumb { font-size:.85rem; color:#9C93C8; margin-bottom:8px; }
.crumb a { color:#B7AEE0; text-decoration:none; }
.crumb a:hover { color:#fff; }
