/* ===================================================================
   LGPD em Saúde — Denis Carvalho Advocacia
   Folha de estilo única (index, blog, artigos, privacidade, cookies)
   Identidade: navy + dourado + verde-saúde · Playfair Display + Inter
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy:        #0a2240;
  --navy-2:      #0d2a4d;
  --navy-3:      #112f57;
  --navy-deep:   #061528;
  --gold:        #c9a24b;
  --gold-light:  #e2c27a;
  --gold-dark:   #a8842f;
  --teal:        #1fa98f;   /* verde-saúde / proteção */
  --teal-light:  #5fd6bd;
  --teal-dark:   #14826e;
  --ink:         #1c2733;
  --muted:       #5a6776;
  --line:        #e6eaf0;
  --bg:          #ffffff;
  --bg-soft:     #f5f8fc;
  --bg-soft-2:   #eef3f9;
  --white:       #ffffff;
  --radius:      16px;
  --radius-sm:   11px;
  --shadow-sm:   0 2px 10px rgba(10, 34, 64, .06);
  --shadow:      0 14px 40px rgba(10, 34, 64, .10);
  --shadow-lg:   0 30px 70px rgba(10, 34, 64, .18);
  --container:   1180px;
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --wa:          #25d366;
  --wa-dark:     #1ebe5a;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; line-height: 1.16; color: var(--navy); margin: 0; font-weight: 700; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 92%; max-width: var(--container); margin-inline: auto; }
.container--narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--navy-deep);
  display: inline-flex; align-items: center; gap: .55em;
  padding: .85em 1.6em;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: 1rem; line-height: 1;
  border: none; border-radius: 999px; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 8px 22px rgba(201, 162, 75, .28);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 162, 75, .4); }
.btn svg { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

.btn-gold   { --btn-bg: linear-gradient(135deg, var(--gold-light), var(--gold)); --btn-fg: var(--navy-deep); }
.btn-navy   { --btn-bg: var(--navy); --btn-fg: #fff; box-shadow: 0 8px 22px rgba(10, 34, 64, .25); }
.btn-navy:hover { box-shadow: 0 14px 30px rgba(10, 34, 64, .35); }
.btn-whatsapp { --btn-bg: linear-gradient(135deg, #2bdc6e, var(--wa-dark)); --btn-fg: #06351c; box-shadow: 0 8px 22px rgba(37, 211, 102, .3); }
.btn-whatsapp:hover { box-shadow: 0 14px 30px rgba(37, 211, 102, .45); }
.btn-outline {
  --btn-bg: transparent; --btn-fg: #fff;
  border: 1.6px solid rgba(255, 255, 255, .55); box-shadow: none;
}
.btn-outline:hover { background: rgba(255, 255, 255, .1); box-shadow: none; }
.btn-outline--navy { --btn-fg: var(--navy); border-color: rgba(10, 34, 64, .25); }
.btn-outline--navy:hover { background: rgba(10, 34, 64, .05); }
.btn-lg { padding: 1.05em 2em; font-size: 1.06rem; }
.btn-xl { padding: 1.15em 2.4em; font-size: 1.12rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep); color: #c7d3e1;
  font-size: .82rem; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { color: #c7d3e1; transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.tb-item { display: inline-flex; align-items: center; gap: .45em; }
.tb-item svg { width: 15px; height: 15px; color: var(--gold); }
.tb-social { display: inline-flex; align-items: center; gap: 1rem; }
.tb-social svg { width: 17px; height: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
/* backdrop-filter só no desktop: no mobile ele prendia o menu lateral (containing block do fixed) */
@media (min-width: 761px) {
  .site-header { background: rgba(255, 255, 255, .92); backdrop-filter: saturate(180%) blur(10px); }
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .99); }
.site-header .nav { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: 76px; }
.brand { flex: none; display: inline-flex; }
.brand img { height: 50px; width: auto; max-width: none; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a { font-weight: 500; font-size: .96rem; color: var(--ink); position: relative; padding: .35em 0; transition: color .2s; white-space: nowrap; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .8rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  align-items: center; justify-content: center; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 11px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 48%, var(--navy-3) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 75, .22), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(201, 162, 75, .12), transparent 40%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.1rem;
}
.hero__eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--gold); }
.hero__title {
  color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.5rem); margin-bottom: 1.2rem; font-weight: 700;
}
.hero__title span { color: var(--gold-light); font-style: italic; }
.hero__subtitle { font-size: 1.12rem; color: #cdd8e6; max-width: 33em; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.8rem; }
.hero__note { font-size: .9rem; color: #9fb0c4; display: flex; align-items: center; gap: .5em; }
.hero__note svg { width: 16px; height: 16px; fill: var(--gold); flex: none; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 5px solid rgba(255, 255, 255, .08); aspect-ratio: 4 / 3.4; object-fit: cover;
}
.hero__badge {
  position: absolute; left: -18px; bottom: 26px;
  background: #fff; color: var(--navy); border-radius: 14px; padding: .9rem 1.15rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .75rem;
}
.hero__badge strong { font-family: "Playfair Display", serif; font-size: 1.55rem; color: var(--gold-dark); display: block; line-height: 1; }
.hero__badge span { font-size: .78rem; color: var(--muted); line-height: 1.3; }
.hero__badge .b-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-soft); display: grid; place-items: center; }
.hero__badge .b-ic svg { width: 20px; height: 20px; fill: var(--gold); }

/* Trust strip */
.trust { background: var(--navy-deep); border-top: 1px solid rgba(255, 255, 255, .07); }
.trust .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem; padding: 1rem 0; }
.trust span { color: #b9c6d6; font-size: .92rem; display: inline-flex; align-items: center; gap: .5em; }
.trust svg { width: 18px; height: 18px; fill: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--light { background: var(--bg-soft); }
.section--soft2 { background: var(--bg-soft-2); }
.section--navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: #d6e0ee; }
.section--navy .section__title, .section--navy h3 { color: #fff; }
.section--navy .section__lead { color: #c0cde0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: .9rem;
}
.section--navy .eyebrow { color: var(--gold-light); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section__title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.section__title--left { text-align: left; }
.section__lead { font-size: 1.1rem; color: var(--muted); }
.section--navy .section__lead { color: #c0cde0; }
.section__closing { text-align: center; max-width: 720px; margin: 2.6rem auto 0; font-size: 1.05rem; color: var(--muted); }
.section--navy .section__closing { color: #c0cde0; }
.section__cta { text-align: center; margin-top: 2.8rem; }

/* ---------- Cards grid ---------- */
.cards-grid { display: grid; gap: 1.4rem; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d7e0ec; }
.card__icon { width: 50px; height: 50px; padding: 12px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(201, 162, 75, .16), rgba(201, 162, 75, .05));
  fill: var(--gold-dark); margin-bottom: 1.1rem; }
.card h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }
.section--navy .card { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.section--navy .card p { color: #b8c5d8; }
.section--navy .card:hover { border-color: rgba(201, 162, 75, .4); }

/* Doc cards */
.docs-grid { margin-top: .5rem; }
.doc-card {
  background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm); padding: 1.5rem 1.4rem; position: relative;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.doc-card::before {
  content: ""; position: absolute; left: 1.4rem; top: 0; width: 34px; height: 3px;
  background: var(--gold); border-radius: 0 0 3px 3px;
}
.doc-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .08); border-color: rgba(201, 162, 75, .45); }
.doc-card h3 { color: #fff; font-size: 1.08rem; margin-bottom: .5rem; }
.doc-card p { color: #b8c5d8; font-size: .92rem; margin: 0; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 5/4; object-fit: cover; }
.split__list { margin-top: 1.4rem; display: grid; gap: .85rem; }
.split__list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--muted); }
.split__list svg { width: 22px; height: 22px; fill: var(--gold-dark); flex: none; margin-top: 2px; }
.split__list strong { color: var(--navy); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
.about__photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 5px solid rgba(255, 255, 255, .08); }
.about__name { font-size: 1.5rem; color: #fff; margin: .3rem 0; }
.about__oab { color: var(--gold-light); font-weight: 600; margin-bottom: 1.2rem; font-size: .98rem; }
.about__highlights { margin: 1.4rem 0 1.8rem; display: grid; gap: .8rem; }
.about__highlights li { display: flex; gap: .7rem; align-items: center; color: #cdd8e6; }
.about__highlights svg { width: 22px; height: 22px; fill: var(--gold); flex: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1rem; }
.faq__item {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s;
}
.faq__item[open] { box-shadow: var(--shadow); }
.faq__question {
  list-style: none; cursor: pointer; padding: 1.25rem 3rem 1.25rem 1.5rem;
  font-weight: 600; color: var(--navy); position: relative; font-size: 1.04rem;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+"; position: absolute; right: 1.4rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--gold-dark); transition: transform .3s; font-family: "Inter", sans-serif; line-height: 1;
}
.faq__item[open] .faq__question::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { padding: 0 1.5rem 1.4rem; color: var(--muted); }
.faq__answer p { margin: 0; }

/* ---------- Lead capture (slide-in) ---------- */
.leadin {
  position: fixed; right: 0; top: 50%; transform: translate(105%, -50%); z-index: 80;
  width: 340px; max-width: 90vw; background: #fff; border-radius: 16px 0 0 16px;
  box-shadow: var(--shadow-lg); transition: transform .5s var(--ease); overflow: hidden;
}
.leadin.show { transform: translate(0, -50%); }
.leadin__head { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; padding: 1.4rem 1.5rem 1.2rem; position: relative; }
.leadin__head .tag { display: inline-block; background: var(--gold); color: var(--navy-deep); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25em .6em; border-radius: 6px; margin-bottom: .6rem; }
.leadin__head h4 { color: #fff; font-size: 1.2rem; margin-bottom: .3rem; }
.leadin__head p { font-size: .85rem; color: #c7d3e1; margin: 0; }
.leadin__close { position: absolute; top: 10px; right: 12px; width: 28px; height: 28px; border: none; background: rgba(255,255,255,.12); color: #fff; border-radius: 8px; font-size: 1.1rem; cursor: pointer; line-height: 1; }
.leadin__close:hover { background: rgba(255,255,255,.25); }
.leadin__body { padding: 1.3rem 1.5rem 1.5rem; }
.leadin__body label { font-size: .8rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: .3rem; }
.leadin__body input[type=text], .leadin__body input[type=email] {
  width: 100%; padding: .7em .9em; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .95rem; margin-bottom: .9rem; transition: border-color .2s;
}
.leadin__body input:focus { outline: none; border-color: var(--gold); }
.leadin__consent { display: flex; gap: .5rem; align-items: flex-start; font-size: .78rem; color: var(--muted); margin-bottom: 1rem; }
.leadin__consent input { margin-top: 3px; }
.leadin__body .btn { width: 100%; justify-content: center; }
.leadin__tab {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 79;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy-deep);
  writing-mode: vertical-rl; padding: 1rem .55rem; border-radius: 12px 0 0 12px;
  font-weight: 700; font-size: .82rem; letter-spacing: .04em; cursor: pointer; border: none;
  box-shadow: -4px 4px 16px rgba(10, 34, 64, .2); display: flex; align-items: center; gap: .5rem;
}
.leadin__tab svg { width: 18px; height: 18px; fill: var(--navy-deep); transform: rotate(90deg); }

/* ---------- CTA band ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; text-align: center; padding: clamp(3.5rem, 7vw, 5.5rem) 0; position: relative; overflow: hidden;
}
.cta-final::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,162,75,.2), transparent 55%); }
.cta-final > .container { position: relative; z-index: 2; }
.cta-final__title { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 1rem; }
.cta-final__text { color: #cdd8e6; font-size: 1.1rem; max-width: 38em; margin: 0 auto 2rem; }
.cta-final__note { color: #9fb0c4; font-size: .9rem; margin-top: 1.4rem; }

.cta-band { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--navy-deep); text-align: center; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-band h2 { color: var(--navy-deep); font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: .7rem; }
.cta-band p { color: #3a2e10; max-width: 36em; margin: 0 auto 1.8rem; }

/* ---------- Blog ---------- */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff;
  padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(2.6rem, 6vw, 4rem); position: relative; overflow: hidden;
}
.article-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(201,162,75,.18), transparent 45%); }
.article-hero > .container { position: relative; z-index: 2; }
.crumbs { font-size: .85rem; color: #9fb0c4; margin-bottom: 1rem; }
.crumbs a { color: var(--gold-light); }
.article-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); max-width: 16em; margin-bottom: .8rem; }
.article-hero .lead { color: #c7d3e1; font-size: 1.12rem; max-width: 680px; }

.blog { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--bg-soft); }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .thumb {
  position: relative; aspect-ratio: 16/10; display: grid; place-items: center; overflow: hidden;
}
.post .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .thumb img { transform: scale(1.06); }
.post .thumb.g1 { background: linear-gradient(135deg, var(--navy), var(--navy-3)); }
.post .thumb.g2 { background: linear-gradient(135deg, #15406e, #0d2a4d); }
.post .thumb.g3 { background: linear-gradient(135deg, var(--gold-dark), #6c5418); }
.post .thumb > svg { width: 56px; height: 56px; stroke: rgba(255,255,255,.85); }
.post .cat {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  background: rgba(255,255,255,.95); color: var(--navy); font-size: .72rem; font-weight: 700;
  padding: .3em .7em; border-radius: 7px; letter-spacing: .02em;
}
.post .body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post .date { font-size: .8rem; color: var(--muted); margin-bottom: .55rem; }
.post h3 { font-size: 1.18rem; margin-bottom: .55rem; line-height: 1.3; }
.post p { color: var(--muted); font-size: .94rem; flex: 1; }
.post .more { color: var(--gold-dark); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .4em; margin-top: .6rem; }
.post .more svg { width: 17px; height: 17px; stroke: currentColor; fill: none; transition: transform .25s; }
.post:hover .more svg { transform: translateX(4px); }

/* ---------- Article body ---------- */
.article { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); }
.article__wrap { max-width: 760px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; color: var(--muted); font-size: .9rem; margin-bottom: 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.article__meta .pill { background: var(--bg-soft-2); color: var(--navy); padding: .25em .8em; border-radius: 999px; font-weight: 600; font-size: .8rem; }
.article__wrap h2 { font-size: 1.6rem; margin: 2.2rem 0 .9rem; }
.article__wrap h3 { font-size: 1.25rem; margin: 1.8rem 0 .7rem; }
.article__wrap p { color: #34414f; margin-bottom: 1.15rem; }
.article__wrap ul { list-style: disc; padding-left: 1.3rem; margin: 0 0 1.2rem; color: #34414f; }
.article__wrap li { margin-bottom: .5rem; }
.article__wrap blockquote {
  margin: 1.8rem 0; padding: 1.1rem 1.4rem; background: var(--bg-soft);
  border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; color: var(--navy); font-style: italic;
}
.article__wrap strong { color: var(--navy); }
.article__lead { font-size: 1.2rem; color: var(--muted); font-style: italic; }
.article__cta {
  margin-top: 2.6rem; padding: 1.8rem; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); text-align: center;
}
.article__cta h3 { margin-bottom: .6rem; }
.article__cta p { color: var(--muted); margin-bottom: 1.3rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #aebccd; padding: 3.5rem 0 0; }
.footer .grid { display: grid; grid-template-columns: 1.5fr .9fr 1.5fr 1.3fr; gap: 2.4rem; padding-bottom: 2.6rem; }
.footer h4 { color: #fff; font-family: "Inter", sans-serif; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.f-brand img { height: 52px; background: #fff; padding: 8px 12px; border-radius: 10px; margin-bottom: 1rem; }
.f-brand p { font-size: .92rem; max-width: 30ch; }
.footer ul li { margin-bottom: .6rem; }
.footer ul a { font-size: .93rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold-light); }
.f-social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.f-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .2s, transform .2s; }
.f-social a:hover { background: var(--gold); transform: translateY(-2px); }
.f-social svg { width: 18px; height: 18px; color: #fff; }
.f-social a:hover svg { color: var(--navy-deep); }
.f-contact .fc { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .9rem; font-size: .92rem; }
.f-contact .fc svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.f-contact .fc a { color: #aebccd; }
.f-contact .fc a:hover { color: var(--gold-light); }
/* Destaque "Outros sites" — cards coloridos com URL visível */
.f-sites { display: grid; gap: .75rem; margin-top: .2rem; }
.f-site-card {
  display: flex; align-items: center; gap: .75rem; padding: .75rem .85rem; border-radius: 13px;
  background: linear-gradient(135deg, rgba(201,162,75,.16), rgba(201,162,75,.04));
  border: 1px solid rgba(201,162,75,.32);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s, background .25s;
}
.f-site-card:hover { transform: translateY(-2px); border-color: var(--gold); background: linear-gradient(135deg, rgba(201,162,75,.26), rgba(201,162,75,.08)); box-shadow: 0 12px 28px rgba(201,162,75,.22); }
.f-site-ic { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center; background: rgba(201,162,75,.22); }
.f-site-ic svg { width: 21px; height: 21px; color: var(--gold-light); }
.f-site-txt { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.f-site-nm { color: #fff; font-weight: 600; font-size: .94rem; }
.f-site-url { color: var(--gold-light); font-size: .77rem; word-break: break-all; }
.f-site-go { width: 16px; height: 16px; flex: none; color: var(--gold); margin-left: auto; opacity: .65; transition: transform .25s, opacity .25s; }
.f-site-card:hover .f-site-go { transform: translate(2px, -2px); opacity: 1; }
/* Variante "saúde" — destaque em verde-água */
.f-site-card--health { background: linear-gradient(135deg, rgba(45,201,170,.16), rgba(45,201,170,.04)); border-color: rgba(45,201,170,.32); }
.f-site-card--health:hover { border-color: #2dc9aa; background: linear-gradient(135deg, rgba(45,201,170,.26), rgba(45,201,170,.08)); box-shadow: 0 12px 28px rgba(45,201,170,.22); }
.f-site-card--health .f-site-ic { background: rgba(45,201,170,.22); }
.f-site-card--health .f-site-ic svg { color: #7fe6d3; }
.f-site-card--health .f-site-url { color: #7fe6d3; }
.f-site-card--health .f-site-go { color: #2dc9aa; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding: 1.3rem 0; font-size: .85rem; }
.footer-bottom a:hover { color: var(--gold-light); }
.disclaimer { background: #04101f; }
.disclaimer .container { padding: 1rem 0; font-size: .78rem; color: #7d8da3; text-align: center; }

/* ---------- Floating action buttons ---------- */
.fab-stack { position: fixed; right: 20px; bottom: 22px; z-index: 70; display: flex; flex-direction: column; gap: .8rem; align-items: flex-end; }
.fab {
  display: inline-flex; align-items: center; gap: .6rem; padding: .7rem 1rem; border-radius: 999px;
  font-weight: 600; font-size: .92rem; box-shadow: var(--shadow); cursor: pointer; border: none;
  transition: transform .25s var(--ease), box-shadow .25s; color: #fff;
}
.fab svg { width: 22px; height: 22px; flex: none; }
.fab .fab-label { max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0; transition: max-width .35s var(--ease), opacity .25s, margin .35s; }
.fab:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.fab:hover .fab-label { max-width: 240px; opacity: 1; }
.fab-whats { background: linear-gradient(135deg, #2bdc6e, var(--wa-dark)); }
.fab-whats svg { fill: #fff; }
.fab-urgent { background: linear-gradient(135deg, #e0533d, #b8311c); }
.fab-urgent svg { stroke: #fff; fill: none; }
.fab-totop {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0; border-radius: 50%; background: var(--navy);
  opacity: 0; visibility: hidden; transition: opacity .3s, transform .25s, visibility .3s;
}
.fab-totop svg { stroke: #fff; fill: none; }
.fab-totop.show { opacity: 1; visibility: visible; }
/* WhatsApp pulse */
.fab-whats::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px; z-index: -1;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); animation: pulse 2.4s infinite;
}
.fab-whats { position: relative; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 140%); z-index: 95;
  background: var(--navy); color: #fff; padding: .9rem 1.4rem; border-radius: 12px;
  box-shadow: var(--shadow-lg); font-size: .95rem; max-width: 92vw; transition: transform .4s var(--ease);
  display: flex; align-items: center; gap: .6rem;
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; fill: var(--gold-light); flex: none; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 18px; bottom: 18px; z-index: 96; max-width: 380px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.3rem; transform: translateY(150%); transition: transform .45s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie p { font-size: .85rem; color: var(--muted); margin-bottom: .9rem; }
.cookie a { color: var(--gold-dark); text-decoration: underline; }
.cookie__row { display: flex; gap: .6rem; }
.cookie .btn { padding: .6em 1.1em; font-size: .9rem; }
.cookie .btn-ghost { background: var(--bg-soft); color: var(--navy); box-shadow: none; }

/* ---------- Helpers ---------- */
.hide-sm { }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__media { max-width: 460px; }
  .hero__badge { left: 12px; }
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); flex-direction: column;
    align-items: flex-start; gap: .3rem; background: #fff; padding: 6rem 1.6rem 2rem;
    box-shadow: -10px 0 40px rgba(10,34,64,.15); transform: translateX(100%); transition: transform .35s var(--ease); z-index: 45;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-text { display: none; }
  .nav-cta .btn { padding: .7em .9em; }
  .topbar .tb-center, .hide-sm { display: none; }
  .topbar .container { justify-content: space-between; }
  .cards-grid--3, .cards-grid--2 { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .footer .grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .fab .fab-label { display: none; }
  /* botões flutuantes: círculos uniformes e alinhados no celular */
  .fab-stack { right: 14px; bottom: 16px; gap: .6rem; align-items: center; }
  .fab { width: 48px; height: 48px; padding: 0; justify-content: center; }
  .fab svg { width: 23px; height: 23px; }
  .fab-totop { width: 48px; height: 48px; }
  .fab-whats::after { animation: none; }     /* sem halo que vaza na borda */
  .leadin__tab { display: none; }            /* aba do e-book oculta no celular (acessível pelo hero e pela seção E-book) */
  .leadin { width: 300px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  /* botões de ação não podem ultrapassar a largura da tela: permitem quebra e cabem */
  .btn { white-space: normal; max-width: 100%; text-align: center; }
  .btn-lg, .btn-xl { padding: .9em 1.4em; font-size: 1rem; }
  .section__cta .btn, .cta-final .btn, .cta-band .btn, .article__cta .btn { width: 100%; justify-content: center; }
}

/* Esconde aba do e-book e botões flutuantes enquanto o menu mobile está aberto */
body.nav-open .leadin__tab,
body.nav-open .fab-stack { opacity: 0; visibility: hidden; pointer-events: none; }

/* ===================================================================
   COMPONENTES ESPECÍFICOS — LGPD em Saúde
   =================================================================== */

/* ---------- Accent teal helpers ---------- */
.btn-teal { --btn-bg: linear-gradient(135deg, var(--teal-light), var(--teal)); --btn-fg: #04241d; box-shadow: 0 8px 22px rgba(31,169,143,.30); }
.btn-teal:hover { box-shadow: 0 14px 30px rgba(31,169,143,.45); }
.eyebrow--teal { color: var(--teal-dark); }
.section--navy .eyebrow--teal { color: var(--teal-light); }

/* Hero: pílulas de pilares sobre o texto */
.hero__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.4rem 0 0; }
.hero__pills span {
  display: inline-flex; align-items: center; gap: .4em; font-size: .8rem; font-weight: 600;
  color: #dbe6f2; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: .4em .85em; border-radius: 999px;
}
.hero__pills svg { width: 14px; height: 14px; fill: var(--teal-light); }
.hero__badge--teal .b-ic svg { fill: var(--teal); }
.hero__badge--teal strong { color: var(--teal-dark); }

/* ---------- Faixa de estatísticas ---------- */
.stats { background: var(--bg); border-bottom: 1px solid var(--line); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: clamp(2rem,4vw,2.8rem) 0; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: calc(-.75rem - 1px); top: 12%; height: 76%; width: 1px; background: var(--line); }
.stat__num { font-family: "Playfair Display", serif; font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--navy); line-height: 1; }
.stat__num span { color: var(--gold-dark); }
.stat__label { font-size: .9rem; color: var(--muted); margin-top: .5rem; }

/* ---------- Lista de riscos (cartões de alerta) ---------- */
.risk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.risk {
  display: flex; gap: 1rem; align-items: flex-start; background: var(--bg);
  border: 1px solid var(--line); border-left: 4px solid #e0533d; border-radius: var(--radius-sm);
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s;
}
.risk:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.risk__ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(224,83,61,.1); }
.risk__ic svg { width: 22px; height: 22px; stroke: #d8412a; fill: none; stroke-width: 2; }
.risk h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.risk p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- Timeline de implantação ---------- */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--gold), var(--teal)); }
.tl-item { position: relative; padding: 0 0 2.2rem 78px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: var(--gold-light);
  display: grid; place-items: center; font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(10,34,64,.25); border: 2px solid var(--gold);
}
.tl-item h3 { font-size: 1.22rem; margin-bottom: .4rem; }
.tl-item p { color: var(--muted); margin: 0; }
.section--navy .tl-item p { color: #c0cde0; }

/* ---------- Autoridade / Livro + TCC ---------- */
.authority { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; }
.book {
  position: relative; width: 100%; max-width: 320px; margin-inline: auto;
  aspect-ratio: 3/4.3; border-radius: 5px 13px 13px 5px; overflow: hidden;
  background:
    radial-gradient(130% 90% at 78% 8%, rgba(255,255,255,.14), transparent 55%),
    linear-gradient(135deg, #2a5c8f 0%, #1a4470 46%, #103056 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 34px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(201,162,75,.35), inset 0 0 34px rgba(201,162,75,.08);
  color: #fff; padding: 2.4rem 1.8rem 2rem 2.5rem; display: flex; flex-direction: column;
  transform: rotate(-2deg); transition: transform .5s var(--ease);
}
.book:hover { transform: rotate(0deg) translateY(-6px); }
/* lombada dourada */
.book::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 12px;
  background: linear-gradient(var(--gold-light), var(--gold-dark)); box-shadow: inset -3px 0 7px rgba(0,0,0,.5); }
/* brilho fino ao lado da lombada */
.book::after { content: ""; position: absolute; left: 18px; top: 10px; bottom: 10px; width: 2px; background: rgba(255,255,255,.18); }
.book__tag { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 1.3rem; }
.book__title { font-family: "Playfair Display", serif; font-size: 1.75rem; line-height: 1.15; margin-bottom: .8rem; color: #ffffff; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.book__title span { color: var(--gold-light); font-style: italic; }
.book__rule { width: 52px; height: 3px; background: var(--gold); margin: .7rem 0 1rem; }
.book__sub { font-size: .9rem; color: #d6e0ee; margin-top: auto; }
.book__sub strong { color: #fff; display: block; }
.book__badge { position: absolute; right: 14px; bottom: 20px; background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep); font-weight: 800; font-size: .72rem; letter-spacing: .04em; padding: .5em .9em;
  border-radius: 8px; box-shadow: 0 6px 16px rgba(0,0,0,.45); }
.authority__list { margin: 1.4rem 0 1.8rem; display: grid; gap: .85rem; }
.authority__list li { display: flex; gap: .7rem; align-items: flex-start; color: #cdd8e6; }
.authority__list svg { width: 22px; height: 22px; fill: var(--gold); flex: none; margin-top: 2px; }

/* ---------- Rede de sites (ecossistema) ---------- */
.netsites { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.netcard {
  display: flex; gap: 1.1rem; align-items: center; padding: 1.4rem 1.5rem; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.netcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d7e0ec; }
.netcard__ic { flex: none; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(201,162,75,.18), rgba(201,162,75,.05)); }
.netcard__ic svg { width: 26px; height: 26px; stroke: var(--gold-dark); fill: none; stroke-width: 1.8; }
.netcard--health .netcard__ic { background: linear-gradient(135deg, rgba(31,169,143,.18), rgba(31,169,143,.05)); }
.netcard--health .netcard__ic svg { stroke: var(--teal-dark); }
.netcard__txt { min-width: 0; }
.netcard__txt h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.netcard__txt .url { color: var(--gold-dark); font-size: .86rem; font-weight: 600; word-break: break-all; }
.netcard--health .url { color: var(--teal-dark); }
.netcard__txt p { color: var(--muted); font-size: .9rem; margin: .35rem 0 0; }
.netcard--current { border-color: var(--gold); background: linear-gradient(135deg, rgba(201,162,75,.08), #fff); }
.netcard__go { margin-left: auto; flex: none; width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; opacity: .6; transition: transform .25s, opacity .25s; }
.netcard:hover .netcard__go { transform: translate(2px,-2px); opacity: 1; }
.badge-aqui { margin-left: auto; flex: none; background: var(--gold); color: var(--navy-deep); font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: .35em .7em; border-radius: 7px; }

/* ---------- Gestão de cookies (modal de preferências) ---------- */
.cookie__row .btn-link { background: none; box-shadow: none; color: var(--navy); text-decoration: underline; padding: .6em .4em; font-weight: 600; cursor: pointer; border: none; font-size: .9rem; }
.cookie-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.cookie-modal.show { display: flex; }
.cookie-modal__backdrop { position: absolute; inset: 0; background: rgba(6,21,40,.55); }
.cookie-modal__panel { position: relative; z-index: 2; width: 100%; max-width: 540px; max-height: 88vh; overflow-y: auto;
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 1.8rem; }
.cookie-modal__panel h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.cookie-modal__panel > p { color: var(--muted); font-size: .92rem; margin-bottom: 1.3rem; }
.ck-opt { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-top: 1px solid var(--line); }
.ck-opt__txt { flex: 1; }
.ck-opt__txt strong { color: var(--navy); display: block; margin-bottom: .2rem; }
.ck-opt__txt span { color: var(--muted); font-size: .88rem; }
.ck-switch { position: relative; flex: none; width: 46px; height: 26px; }
.ck-switch input { opacity: 0; width: 0; height: 0; }
.ck-track { position: absolute; inset: 0; background: #cdd6e2; border-radius: 999px; transition: background .25s; cursor: pointer; }
.ck-track::before { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .25s; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.ck-switch input:checked + .ck-track { background: var(--teal); }
.ck-switch input:checked + .ck-track::before { transform: translateX(20px); }
.ck-switch input:disabled + .ck-track { background: var(--gold); cursor: not-allowed; }
.cookie-modal__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.cookie-modal__actions .btn { flex: 1; justify-content: center; min-width: 140px; }

/* ---------- Selo de autoridade (faixa UFG/TCC) ---------- */
.credentials { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.cred {
  display: inline-flex; align-items: center; gap: .7rem; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: .8rem 1.1rem; color: #cdd8e6; font-size: .9rem;
}
.cred svg { width: 22px; height: 22px; fill: var(--gold); flex: none; }
.cred strong { color: #fff; }

/* ---------- Responsivo (componentes novos) ---------- */
@media (max-width: 980px) {
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .stat:nth-child(2)::after { display: none; }
  .risk-grid, .netsites { grid-template-columns: 1fr; }
  .authority { grid-template-columns: 1fr; gap: 2.4rem; }
  .book { transform: rotate(0); }
}
@media (max-width: 760px) {
  .stats .container { grid-template-columns: 1fr 1fr; }
  .stat::after { display: none !important; }
  .tl-item { padding-left: 64px; }
  .tl-num { width: 48px; height: 48px; font-size: 1.25rem; }
  .timeline::before { left: 23px; }
  .cookie-modal__actions .btn { flex: 1 1 100%; }
}
