/* ==========================================================================
   E-Chefe — Design system (CSS puro, sem build, sem dependências)
   Cloudflare Pages friendly: um único arquivo, sem CDN de CSS/JS.
   ========================================================================== */

:root {
  --red: #b32828;
  --red-dark: #8f1f1f;
  --red-soft: #fbeaea;
  --blue: #2274a5;
  --blue-dark: #175a82;
  --blue-soft: #e8f2f8;
  --ink: #2b2829;
  --dark: #373435;
  --dark-2: #2a2728;
  --muted: #6a6465;
  --bg: #faf8f5;
  --card: #ffffff;
  --line: #ebe6df;
  --wa: #0f8a3e;
  --wa-dark: #0b7433;
  --accent-light: #ff8f80;
  --blue-light: #7cc4ec;

  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Bitter", Georgia, "Times New Roman", serif;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(43, 40, 41, 0.06), 0 1px 3px rgba(43, 40, 41, 0.05);
  --shadow: 0 8px 24px rgba(43, 40, 41, 0.08);
  --shadow-lg: 0 20px 50px rgba(43, 40, 41, 0.16);
  --container: 1160px;
  --header-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1 0 auto; }
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 0.6em; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; transition: top 0.2s; }
.skip-link:focus { top: 12px; color: #fff; }

.icon { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon-fill { fill: currentColor; stroke: none; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; font-size: 1rem; line-height: 1.2; text-decoration: none; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(15, 138, 62, 0.28); }
.btn-wa:hover { background: var(--wa-dark); color: #fff; box-shadow: 0 12px 26px rgba(15, 138, 62, 0.34); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 17px 32px; font-size: 1.08rem; }
.btn-sm { padding: 10px 20px; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.92); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand span { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; letter-spacing: 0.02em; color: var(--blue); }
.nav-panel { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; gap: 26px; }
.nav-list a { color: var(--muted); font-weight: 500; text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-list a:hover { color: var(--red); }
.nav-list a[aria-current="page"] { color: var(--red); border-bottom-color: var(--red); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); border-radius: 10px; }
.menu-toggle .icon { width: 28px; height: 28px; }
.menu-toggle .i-close { display: none; }
.menu-toggle[aria-expanded="true"] .i-open { display: none; }
.menu-toggle[aria-expanded="true"] .i-close { display: block; }

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav-panel {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch; gap: 8px; padding: 12px 20px 20px;
    display: none;
  }
  .nav-panel.is-open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-list a[aria-current="page"] { border-bottom-color: var(--line); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(34, 116, 165, 0.45), transparent 60%),
    radial-gradient(700px 420px at -5% 105%, rgba(179, 40, 40, 0.38), transparent 60%),
    var(--dark);
  padding: clamp(56px, 9vw, 108px) 0 clamp(64px, 9vw, 112px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 30% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 30%, #000 20%, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.hero h1 { color: #fff; margin-bottom: 0.5em; }
.hero h1 em { font-style: normal; color: var(--accent-light); }
.hero-lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: #d9d4d0; max-width: 40em; font-weight: 300; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: rgba(124, 196, 236, 0.14); color: var(--blue-light); border: 1px solid rgba(124, 196, 236, 0.3); margin-bottom: 22px; }
.eyebrow-light { background: var(--blue-soft); color: var(--blue-dark); border-color: transparent; }
.hero-checks { display: grid; gap: 10px; margin: 26px 0 32px; }
.hero-checks li { display: flex; gap: 12px; align-items: flex-start; color: #efeae6; }
.hero-checks .icon { color: var(--accent-light); margin-top: 3px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin: 18px 0 0; font-size: 0.85rem; color: #b9b2ae; }

.hero-card { position: relative; justify-self: center; width: min(100%, 400px); }
.hero-photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, 0.16); background: var(--dark-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-photo figcaption { position: absolute; inset: auto 0 0 0; padding: 70px 22px 20px; background: linear-gradient(to top, rgba(30, 27, 28, 0.94) 25%, transparent); }
.hero-photo strong { display: block; font-family: var(--font-head); font-size: 1.35rem; }
.hero-photo span { font-size: 0.88rem; color: #d3ccc8; }
.hero-badge { position: absolute; top: -14px; right: -10px; background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 14px; box-shadow: var(--shadow-lg); font-size: 0.82rem; font-weight: 600; line-height: 1.3; display: flex; align-items: center; gap: 10px; }
.hero-badge .icon { color: var(--red); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; width: min(100%, 280px); }
  .hero-photo { aspect-ratio: 1 / 1; }
  .hero-badge { right: -6px; }
}
@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
}

/* ---------- Seções ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: #fff; border-block: 1px solid var(--line); }
.section-head { max-width: 46rem; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; font-weight: 300; margin-bottom: 0; }
.kicker { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.rule { width: 64px; height: 4px; border-radius: 4px; background: var(--red); margin: 0 auto 18px; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #ddd5cb; }
.card p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0; }
.card h3 { margin-bottom: 0.45em; }
.ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: var(--red-soft); color: var(--red); }
.ico .icon { width: 26px; height: 26px; }
.ico-blue { background: var(--blue-soft); color: var(--blue); }

/* Dores */
.pain { border-left: 4px solid var(--red); }
.pain h3 { font-size: 1.12rem; }
.problems-cta { text-align: center; margin-top: 36px; }
.problems-cta p { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 18px; }

/* Pilares */
.pillar ul { margin-top: 16px; display: grid; gap: 9px; }
.pillar li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--ink); }
.pillar li .icon { color: var(--blue); margin-top: 3px; width: 1.1em; height: 1.1em; }
.pillar .card-tag { display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-dark); background: var(--blue-soft); border-radius: 999px; padding: 3px 12px; margin-bottom: 14px; }

/* Faixa Saipos */
.saipos { margin-top: 28px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: 28px 32px; }
.saipos h3 { color: #fff; margin-bottom: 4px; }
.saipos p { margin: 0; color: #cfc8c4; font-size: 0.97rem; }
.saipos .ico { margin: 0; background: rgba(124, 196, 236, 0.16); color: var(--blue-light); }
@media (max-width: 820px) { .saipos { grid-template-columns: 1fr; text-align: left; padding: 26px; } }

/* Logos de clientes */
.logos { padding: 40px 0 44px; background: #fff; border-bottom: 1px solid var(--line); }
.logos-title { text-align: center; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logos-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 14px; align-items: center; }
.logo-item { display: grid; place-items: center; height: 78px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.logo-item img { max-height: 54px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: 0.72; transition: filter 0.25s ease, opacity 0.25s ease; }
.logo-item:hover img { filter: none; opacity: 1; }
@media (max-width: 1080px) { .logos-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 640px) { .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } .logo-item { height: 68px; } }

/* Método / passos */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding: 28px 24px 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; margin-bottom: 16px;
}
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Faixa escura de diferenciais */
.band { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 100% 0%, rgba(34, 116, 165, 0.35), transparent 65%), radial-gradient(500px 300px at 0% 100%, rgba(179, 40, 40, 0.3), transparent 65%); pointer-events: none; }
.band .container { position: relative; }
.band h2, .band h3 { color: #fff; }
.band .section-head p { color: #cfc8c4; }
.band .kicker { color: var(--accent-light); }
.band .rule { background: var(--accent-light); }
.feature { padding: 26px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius); background: rgba(255, 255, 255, 0.04); }
.feature .ico { background: rgba(255, 143, 128, 0.14); color: var(--accent-light); }
.feature h3 { font-size: 1.1rem; }
.feature p { margin: 0; color: #cfc8c4; font-size: 0.94rem; }

/* Público-alvo */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.chip { padding: 9px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 500; font-size: 0.95rem; }
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .icon { color: var(--red); margin-top: 4px; }
@media (max-width: 820px) { .audience { grid-template-columns: 1fr; } }

/* Sobre */
.about { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-photo { width: min(100%, 320px); aspect-ratio: 1; margin-inline: auto; border-radius: 50%; overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about .role { color: var(--red); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; display: block; }
.about p { color: var(--muted); font-size: 1.05rem; }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; text-align: center; } }

/* Aulas teaser */
.teaser { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; background: var(--blue-soft); border: 1px solid #cfe3ef; border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); }
.teaser h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 8px; }
.teaser p { margin: 0; color: #3f5b6c; }
@media (max-width: 720px) { .teaser { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 48rem; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 22px; transition: border-color 0.2s, box-shadow 0.2s; }
.faq details[open] { border-color: #d9cfc3; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--red); flex: none; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 20px; margin: 0; }

/* CTA final */
.cta-final { position: relative; overflow: hidden; text-align: center; color: #fff; padding: clamp(60px, 9vw, 104px) 0; background: radial-gradient(700px 360px at 50% 0%, rgba(179, 40, 40, 0.4), transparent 65%), var(--dark); }
.cta-final h2 { color: #fff; font-size: clamp(1.8rem, 4.2vw, 2.9rem); }
.cta-final p { color: #d3ccc8; max-width: 38rem; margin: 0 auto 30px; font-size: 1.1rem; font-weight: 300; }
.cta-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin: 0 auto 32px; color: #efeae6; font-size: 0.95rem; }
.cta-steps li { display: flex; align-items: center; gap: 8px; }
.cta-steps .icon { color: var(--accent-light); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-2); color: #cfc8c4; padding: 56px 0 28px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.site-footer h3 { color: #fff; font-size: 1.05rem; }
.site-footer p { font-size: 0.93rem; font-weight: 300; }
.site-footer a { color: #cfc8c4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { display: grid; gap: 8px; font-size: 0.94rem; }
.footer-bottom { padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; font-size: 0.85rem; color: #9d9591; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Botão flutuante mobile */
.wa-float { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: none; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 999px; background: var(--wa); color: #fff; font-weight: 600; text-decoration: none; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28); }
.wa-float:hover { background: var(--wa-dark); color: #fff; }
@media (max-width: 860px) { .wa-float { display: inline-flex; } body { padding-bottom: 8px; } }

/* ---------- Páginas internas ---------- */
.page-hero { background: var(--dark); color: #fff; text-align: center; padding: clamp(44px, 7vw, 76px) 0; position: relative; overflow: hidden; background-image: radial-gradient(600px 260px at 50% 0%, rgba(34, 116, 165, 0.4), transparent 70%); }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 0.4em; }
.page-hero p { color: #d3ccc8; max-width: 38rem; margin: 0 auto; font-weight: 300; font-size: 1.1rem; }
.page-hero .rule { background: var(--accent-light); }
.page-body { padding: clamp(44px, 7vw, 80px) 0; }
.group-title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); border-left: 4px solid var(--red); padding-left: 16px; margin-bottom: 26px; }
.group-title.blue { border-left-color: var(--blue); }
.group + .group { margin-top: 56px; }

/* Vídeos (facade — só carrega o YouTube ao clicar) */
.video-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.video-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.yt { position: relative; aspect-ratio: 16 / 9; background: #111; }
.yt img, .yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.yt button { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; background: transparent; display: grid; place-items: center; }
.yt button::before { content: ""; width: 68px; height: 48px; border-radius: 14px; background: rgba(179, 40, 40, 0.95); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35); transition: transform 0.15s, background 0.15s; }
.yt button::after { content: ""; position: absolute; border-style: solid; border-width: 10px 0 10px 17px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.yt button:hover::before { transform: scale(1.08); background: var(--red); }
.video-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.video-body h3 { font-size: 1.08rem; margin: 0; }
.video-body p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.video-meta { margin-top: auto; padding-top: 10px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark); }
.tag-red { background: var(--red-soft); color: var(--red); }

.cta-box { margin-top: 64px; background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 52px); text-align: center; background-image: radial-gradient(500px 240px at 50% 0%, rgba(179, 40, 40, 0.35), transparent 70%); }
.cta-box h2, .cta-box h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-box p { color: #d3ccc8; max-width: 36rem; margin: 0 auto 24px; font-weight: 300; }

/* Blog */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.post-card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--muted); }
.post-card h2 { font-size: 1.25rem; margin: 0; }
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover { color: var(--blue); }
.post-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }
.post-card .more { margin-top: auto; font-weight: 600; text-decoration: none; }

.article { max-width: 46rem; margin-inline: auto; }
.article .meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.article h1 { font-size: clamp(1.8rem, 4.2vw, 2.7rem); }
.prose { font-size: 1.06rem; color: #3b3738; }
.prose .lead { font-size: 1.18rem; font-weight: 500; color: var(--ink); }
.prose h2 { font-size: 1.55rem; color: var(--blue-dark); margin-top: 1.8em; }
.prose ul { list-style: disc; padding-left: 1.4em; display: grid; gap: 8px; margin-bottom: 1.2em; }
.prose li::marker { color: var(--red); }
.article-cta { margin-top: 48px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; text-align: center; box-shadow: var(--shadow); }
.article-cta h3 { font-size: 1.3rem; }
.article-cta p { color: var(--muted); max-width: 32rem; margin: 0 auto 20px; font-size: 0.97rem; }
.back-link { display: inline-block; margin-top: 32px; font-weight: 600; text-decoration: none; }

/* Contato */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.profile { text-align: center; }
.profile .about-photo { width: 200px; margin-bottom: 20px; }
.profile h2 { font-size: 1.8rem; margin-bottom: 4px; }
.profile p { color: var(--muted); }
.contact-list { display: grid; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.93rem; }
.contact-list li { display: flex; align-items: center; justify-content: center; gap: 10px; }
.contact-list .icon { color: var(--blue); }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.contact-card .checklist { margin: 22px 0 28px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* 404 */
.notfound { text-align: center; padding: clamp(64px, 12vw, 140px) 0; }
.notfound .big { font-family: var(--font-head); font-weight: 800; font-size: clamp(4rem, 14vw, 8rem); line-height: 1; color: var(--red); margin: 0 0 12px; }

/* ---------- Animações ---------- */
/* Só esconde se o JS estiver ativo (main.js adiciona .js no <html>); sem JS o conteúdo fica visível. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .wa-float, .cta-final, .hero::before { display: none !important; }
  body { background: #fff; }
}
