/* ==========================================================================
   Dra. Laiz Andrade — Stylesheet de produção (v2, refresh "soft UI")
   Recriado a partir do protótipo Claude Design (Novo-Site/project) com classes
   semânticas (em vez de inline style) para cache, manutenção e performance.
   ========================================================================== */

/* ---------------------------------- RESET -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--creme);
  color: var(--grafite);
  font: 400 var(--text-body)/var(--lh-body) var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cta-azul); }
a:hover { color: var(--grafite); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; }
h1 { font-size: var(--text-h1); line-height: var(--lh-display); }
h2 { font-size: var(--text-h2); line-height: var(--lh-h2); }
h3 { font-size: var(--text-h3); line-height: var(--lh-h3); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--cta-azul); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--grafite); color: var(--creme); padding: 12px 20px;
  border-radius: var(--radius-sm); text-decoration: none; font-weight: 700;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ---------------------------------- LAYOUT -------------------------------- */
.wrap { max-width: var(--max-content); margin-inline: auto; padding-inline: var(--margin-mobile); }
@media (min-width: 860px) { .wrap { padding-inline: var(--margin-desktop); } }

.section { position: relative; overflow: hidden; padding-block: var(--sp-8); }
.section--tight { padding-block: var(--sp-6) var(--sp-8); }
.section--creme { background: var(--creme); }
.section--branco { background: var(--branco); }
.section--rosa-fx { background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--creme) 55%); }
.section--azul-fx { background: linear-gradient(135deg, var(--azul-claro) 0%, var(--creme) 60%); }
.section--verde-fx { background: linear-gradient(135deg, var(--verde-claro) 0%, var(--creme) 60%); }
.section--azul { background: var(--azul-secao); }

.section-head { max-width: 720px; margin-bottom: var(--sp-6); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font: 700 12.5px var(--font-body); letter-spacing: .14em;
  text-transform: uppercase; color: var(--cta-rosa);
}
.eyebrow--azul { color: var(--cta-azul); }
.section-head h2 { margin: 14px 0 18px; }
.section-head p { font-size: 16.5px; }

/* ------------------------------- DECORATIVOS ------------------------------ */
.deco { position: absolute; pointer-events: none; z-index: 0; animation: floaty 8s ease-in-out infinite; }
@keyframes floaty {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) { .deco { animation: none; } }

/* ------------------------------ WORD-IN (hero) ---------------------------- */
.word-in { display: inline-block; opacity: 0; animation: wordIn .55s ease forwards; animation-delay: calc(var(--i, 0) * 80ms); }
@keyframes wordIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .word-in { opacity: 1; animation: none; } }

/* ---------------------------------- HEADER -------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: var(--creme);
  box-shadow: 0 6px 18px rgba(58, 42, 46, .07);
}
.site-header__bar {
  max-width: var(--max-content); margin-inline: auto; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: 10px var(--margin-mobile);
}
@media (min-width: 860px) { .site-header__bar { padding-block: 12px; } }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 44px; display: block; }
@media (min-width: 860px) { .brand img { height: 54px; } }

.nav-pill {
  display: none; align-items: center; gap: 4px; padding: 6px; border-radius: var(--radius-pill);
  background: var(--creme); box-shadow: var(--shadow-inset);
}
@media (min-width: 860px) { .nav-pill { display: flex; gap: 6px; } }
.nav-pill a {
  font: 600 14px var(--font-body); color: var(--grafite); text-decoration: none;
  padding: 9px 16px; border-radius: var(--radius-pill); transition: background var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.nav-pill a:hover { background: var(--creme-hover); color: var(--grafite); }
.nav-pill a[aria-current="page"] {
  font-weight: 700; color: var(--branco); background: var(--cta-rosa);
  box-shadow: 3px 3px 8px rgba(58, 42, 46, .18);
}

.header-cta {
  flex: none; display: inline-flex; align-items: center; gap: 8px; font: 700 14px var(--font-body);
  color: var(--branco); text-decoration: none; padding: 11px 18px; border-radius: var(--radius-pill);
  background: var(--cta-rosa); box-shadow: var(--shadow-md); transition: background var(--dur-fast) var(--ease-out);
}
.header-cta:hover { background: var(--cta-rosa-hover); color: var(--branco); }
.header-cta:active { transform: scale(.98); }
.header-cta span { display: none; }
@media (min-width: 500px) { .header-cta span { display: inline; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: var(--radius-pill); border: none; background: var(--creme); box-shadow: var(--shadow-sm);
  color: var(--grafite); cursor: pointer; flex: none;
}
@media (min-width: 860px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 20px; height: 20px; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 80; background: var(--creme); padding: 20px var(--margin-mobile);
  transform: translateX(100%); transition: transform var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column;
}
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-5); }
.nav-mobile__top img { height: 34px; }
.nav-mobile__close {
  width: 44px; height: 44px; border-radius: var(--radius-pill); border: none; background: var(--creme-hover);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--grafite);
}
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.nav-mobile a {
  display: block; font: 700 19px var(--font-display); color: var(--grafite); text-decoration: none;
  padding: 14px 8px; border-bottom: 1px solid rgba(58, 42, 46, .08);
}
.nav-mobile a[aria-current="page"] { color: var(--cta-rosa); }
.nav-mobile__cta { margin-top: var(--sp-4); }
@media (min-width: 860px) { .nav-mobile { display: none; } }

/* ---------------------------------- BOTÕES -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 700 15.5px var(--font-body); text-decoration: none; border: none; cursor: pointer;
  padding: 15px 26px; border-radius: var(--radius-pill); transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(.98); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { color: var(--branco); background: var(--cta-rosa); box-shadow: 6px 6px 14px rgba(120, 80, 79, .3), -4px -4px 10px rgba(255, 255, 255, .65); }
.btn--primary:hover { background: var(--cta-rosa-hover); color: var(--branco); }
.btn--azul { color: var(--branco); background: var(--cta-azul); box-shadow: 6px 6px 14px rgba(70, 90, 105, .3), -4px -4px 10px rgba(255, 255, 255, .7); }
.btn--azul:hover { background: var(--cta-azul-hover); color: var(--branco); }
.btn--secondary { color: var(--grafite); background: var(--creme); box-shadow: var(--shadow-md); }
.btn--secondary:hover { color: var(--cta-rosa); }
.btn--on-dark { color: var(--grafite); background: var(--creme); }
.btn--on-dark:hover { background: var(--branco); }
.btn--block { width: 100%; }

/* ---------------------------------- HERO ---------------------------------- */
.hero { display: grid; gap: var(--sp-6); align-items: center; padding-block: var(--sp-7) var(--sp-8); position: relative; z-index: 1; }
@media (min-width: 900px) { .hero { grid-template-columns: minmax(320px, 1.15fr) minmax(280px, .85fr); } }
.hero__badge {
  display: inline-block; font: 700 12.5px var(--font-body); letter-spacing: .14em; text-transform: uppercase;
  color: var(--grafite); background: var(--creme); padding: 9px 18px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md); margin-bottom: var(--sp-3);
}
.hero h1 { margin: 0 0 10px; max-width: 21ch; }
.hero__tagline { font: 600 24px/1.3 var(--font-script); color: var(--cta-rosa); margin: 0 0 18px; }
.hero__lead { font-size: 17px; margin: 0 0 var(--sp-4); max-width: var(--measure); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: var(--sp-4); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; font: 600 13.5px var(--font-body); color: var(--grafite); }
.hero__trust svg { vertical-align: -2px; margin-right: 6px; }
.hero__trust-sep { color: var(--bege); }

.hero__media { position: relative; justify-self: center; width: min(100%, 420px); }
.hero__frame {
  border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--branco) 100%);
  box-shadow: 14px 14px 34px rgba(58, 42, 46, .16), -8px -8px 20px rgba(255, 255, 255, .8);
}
.hero__glass {
  position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: var(--radius-pill); background: rgba(255, 255, 255, .42);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 8px 22px rgba(58, 42, 46, .16); font: 700 13.5px var(--font-body); color: var(--grafite);
}
.hero__glass img { height: 30px; width: auto; }

.hero--center { text-align: center; }
.hero--center .wrap { max-width: 900px; }

/* ---------------------------------- CARDS ---------------------------------- */
.card { border-radius: var(--radius-xl); padding: 38px 36px; box-shadow: var(--shadow-md); }
.card--rosa { background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--branco) 90%); }
.card--azul { background: linear-gradient(135deg, var(--azul-claro) 0%, var(--branco) 90%); }
.card--creme { background: var(--creme); }
.card--lift { box-shadow: var(--shadow-lg); }

.fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--sp-4); margin-top: var(--sp-6); }
.quote-card { position: relative; }
.quote-card__mark { font: 400 64px/1 var(--font-display); color: var(--rosa); position: absolute; top: 18px; left: 28px; }
.quote-card blockquote { margin: 0; padding-top: 34px; font: 400 19px/1.55 var(--font-display); }

.journey-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--sp-3); }
.journey-card { display: flex; flex-direction: column; gap: 14px; padding: 30px 26px; }
.journey-card__n {
  width: 46px; height: 46px; border-radius: var(--radius-pill); background: var(--cta-azul); color: var(--branco);
  display: inline-flex; align-items: center; justify-content: center; font: 400 19px var(--font-display);
  box-shadow: 4px 4px 10px rgba(58, 63, 70, .22);
}
.journey-card__when { font: 700 11.5px var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--cta-azul); }

.step-row { display: flex; flex-direction: column; gap: 28px; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 30px 30px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--branco) 90%); box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .step { grid-template-columns: 88px 1fr; padding: 36px 38px; } }
.step__n {
  width: 56px; height: 56px; border-radius: var(--radius-pill); background: var(--cta-rosa); color: var(--branco);
  display: inline-flex; align-items: center; justify-content: center; font: 400 24px var(--font-display);
  box-shadow: 5px 5px 12px rgba(58, 42, 46, .25);
}
@media (min-width: 640px) { .step__n { width: 72px; height: 72px; font-size: 30px; } }
.step__eyebrow { font: 700 11.5px var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--cta-rosa); }
.step h3 { margin: 8px 0 12px; }
.step p { font-size: 15.5px; max-width: 66ch; }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-3); }
.value-card {
  display: flex; flex-direction: column; gap: 12px; padding: 30px 26px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--branco) 92%); box-shadow: var(--shadow-md);
}
.value-card__icon {
  width: 46px; height: 46px; border-radius: var(--radius-pill); background: var(--creme); box-shadow: var(--shadow-xs);
  display: inline-flex; align-items: center; justify-content: center;
}
.value-card h3 { margin: 6px 0 0; }
.value-card p { font-size: 14.5px; }

.edu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--sp-3); }
.edu-card { display: flex; flex-direction: column; gap: 12px; padding: 30px 28px; border-radius: var(--radius-xl); background: var(--creme); box-shadow: var(--shadow-md); }
.edu-card__year {
  align-self: flex-start; font: 400 16px var(--font-display); color: var(--branco); background: var(--cta-azul);
  padding: 8px 16px; border-radius: var(--radius-pill); box-shadow: 4px 4px 10px rgba(58, 63, 70, .2);
}
.edu-card h3 { margin: 6px 0 0; }
.edu-card p { font-size: 14.5px; }

/* ----------------------------- PARA QUEM É ---------------------------- */
.fit-card { padding: 38px 36px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.fit-card--yes { background: linear-gradient(135deg, var(--verde-claro) 0%, var(--branco) 92%); }
.fit-card--no { background: var(--creme); }
.fit-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; font-size: 20px; }
.fit-card ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.fit-card li { display: flex; gap: 12px; align-items: flex-start; font: 500 15.5px/1.55 var(--font-body); }
.fit-card li svg { flex: none; margin-top: 2px; }
.fit-card__note { font: 500 13.5px/1.6 var(--font-body); margin: 26px 0 0; padding: 16px 20px; border-radius: var(--radius-md); background: var(--creme); box-shadow: var(--shadow-inset); }

/* ---------------------------------- BLOG ----------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-4); }
.blog-card {
  text-decoration: none; color: var(--grafite); border-radius: var(--radius-xl); overflow: hidden; background: var(--branco);
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); color: var(--grafite); }
.blog-card__cover { height: 150px; display: flex; align-items: center; justify-content: center; }
.blog-card__cover img { height: 96px; width: auto; opacity: .85; }
.blog-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; }
.blog-card__tag { font: 700 11.5px var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--cta-rosa); }
.blog-card__body h3 { font-size: 18px; }
.blog-card__body p { font-size: 14.5px; opacity: .85; }
.cover--rosa { background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-claro) 100%); }
.cover--azul { background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%); }
.cover--verde { background: linear-gradient(135deg, var(--verde) 0%, var(--verde-claro) 100%); }
.cover--amarelo { background: linear-gradient(135deg, var(--amarelo) 0%, var(--amarelo-claro) 100%); }

/* --------------------------------- ARTIGO ----------------------------------- */
.breadcrumb { font: 600 13.5px var(--font-body); margin-bottom: var(--sp-3); }
.breadcrumb a { text-decoration: none; }
.article-header { max-width: 760px; }
.article-header .eyebrow { display: block; margin-bottom: 14px; }
.article-header h1 { margin: 0 0 20px; }
.article-lead { font-size: 17px; margin-bottom: var(--sp-4); }
.article-cover { border-radius: 200px; height: 200px; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-1); max-width: 760px; }
.article-cover img { height: 120px; width: auto; opacity: .85; }
.article-body { max-width: 760px; margin-inline: auto; }
.article-callout { font: 500 14.5px/1.6 var(--font-body); margin: 0 0 var(--sp-4); padding: 18px 22px; border-radius: var(--radius-md); background: var(--creme); box-shadow: var(--shadow-inset); }
.article-body h2 { font-size: 20px; margin: var(--sp-4) 0 14px; }
.article-body p { font-size: 16px; line-height: 1.75; margin: 0 0 var(--sp-3); }
.article-source { font-size: 13.5px; opacity: .75; margin-top: var(--sp-2); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 0 0 var(--sp-4); }
.check-list li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; border-radius: var(--radius-lg); background: var(--creme); box-shadow: var(--shadow-md); font-size: 15.5px; line-height: 1.6; }
.check-list li svg { flex: none; margin-top: 2px; }
.sign-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 0 0 var(--sp-4); }
.sign-list li { display: flex; gap: 16px; align-items: flex-start; padding: 20px 24px; border-radius: var(--radius-lg); background: var(--creme); box-shadow: var(--shadow-md); }
.sign-list__n { flex: none; width: 32px; height: 32px; border-radius: var(--radius-pill); background: var(--cta-rosa); color: var(--branco); display: inline-flex; align-items: center; justify-content: center; font: 700 14px var(--font-body); }
.sign-list__text { font-size: 15.5px; line-height: 1.6; }
.normal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-2); margin: var(--sp-4) 0; }
.normal-card { padding: 24px; border-radius: var(--radius-lg); background: var(--creme); box-shadow: var(--shadow-md); }
.normal-card h3 { font-size: 16.5px; margin: 0 0 8px; }
.normal-card p { font-size: 14.5px; }
.article-cta { max-width: 760px; margin-inline: auto; padding: 44px 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); text-align: center; }
.article-cta h2 { font-size: 22px; margin: 0 0 14px; }
.article-cta p { font-size: 15.5px; margin: 0 0 26px; }

/* --------------------------------- FAQ -------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 18px; }
.faq-item { border-radius: var(--radius-md); background: var(--creme); box-shadow: var(--shadow-md); padding: 0 26px; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; font: 700 16px/1.4 var(--font-body); list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item__chev { flex: none; transition: transform var(--dur-base) var(--ease-out); }
.faq-item[open] .faq-item__chev { transform: rotate(180deg); }
.faq-item p { font-size: 15px; margin: 0; padding: 0 0 24px; max-width: 68ch; }

/* -------------------------------- LOCALIZAÇÃO -------------------------------- */
.local-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--sp-4); align-items: stretch; }
.local-info dl { list-style: none; margin: 0 0 var(--sp-4); padding: 0; display: flex; flex-direction: column; gap: 20px; }
.local-info dl > div { display: flex; gap: 14px; align-items: flex-start; }
.local-icon { flex: none; width: 42px; height: 42px; border-radius: var(--radius-pill); background: var(--azul-secao); box-shadow: 4px 4px 10px rgba(58, 63, 70, .14), -3px -3px 8px rgba(255, 255, 255, .85); display: inline-flex; align-items: center; justify-content: center; }
.local-info dt { font: 700 15.5px/1.55 var(--font-body); display: inline; }
.local-info dd { display: inline; margin: 0; font: 500 15.5px/1.55 var(--font-body); }
.local-map { border-radius: var(--radius-xl); overflow: hidden; min-height: 260px; box-shadow: var(--shadow-lg); }
.local-map iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }

/* --------------------------------- CONTATO ----------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(280px, .85fr); gap: var(--sp-4); align-items: start; }
.contact-form { padding: 36px; border-radius: var(--radius-xl); background: var(--creme); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font: 700 13.5px var(--font-body); }
.field input, .field textarea {
  width: 100%; border: none; outline: none; font: 500 15px var(--font-body); color: var(--grafite);
  background: var(--creme); padding: 15px 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-inset);
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(58, 42, 46, .45); }
.field input:focus, .field textarea:focus { box-shadow: inset 3px 3px 7px rgba(58, 42, 46, .16), inset -3px -3px 7px rgba(255, 255, 255, .7), 0 0 0 3px rgba(146, 108, 107, .25); }
.form-hint { font: 500 13px var(--font-body); margin: 0; opacity: .65; }
.form-msg { font: 600 14px var(--font-body); margin: 0; }
.form-msg.is-error { color: var(--erro); }
.form-msg.is-success { color: var(--sucesso); }
.contact-info { padding: 32px; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--azul-claro) 0%, var(--branco) 92%); box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 18px; }
.contact-info h3 { font-size: 17px; }
.contact-info a, .contact-info .contact-row { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--grafite); font: 500 14.5px/1.5 var(--font-body); }
.contact-info a:hover { color: var(--cta-rosa); }
.contact-icon { flex: none; width: 38px; height: 38px; border-radius: var(--radius-pill); background: var(--creme); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-xs); }
.contact-crm { font: 700 13px var(--font-body); color: var(--cta-rosa); padding-left: 50px; }

/* --------------------------------- FOOTER ------------------------------------ */
.site-footer { background: var(--grafite); color: var(--creme); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--sp-4); padding-block: var(--sp-7) var(--sp-4); border-bottom: 1px solid rgba(244, 243, 225, .18); }
.footer-brand img { height: 64px; width: auto; margin-bottom: 14px; }
.footer-brand p:first-of-type { font: 400 20px/1.3 var(--font-script); color: var(--rosa); margin: 0 0 6px; }
.footer-brand p:last-of-type { font-size: 13.5px; margin: 0; opacity: .8; }
.site-footer h3 { font: 400 15px var(--font-display); margin: 0 0 16px; color: var(--rosa); }
.footer-nav { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-nav a { font: 500 14px var(--font-body); color: var(--creme); text-decoration: none; }
.footer-nav a:hover { color: var(--rosa); }
.footer-bottom { padding-top: 24px; padding-bottom: var(--sp-3); display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: space-between; font-size: 12.5px; line-height: 1.6; opacity: .75; }

/* ------------------------------ WHATSAPP FLOAT -------------------------------- */
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px; border-radius: var(--radius-pill);
  background: var(--cta-rosa); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-float);
  text-decoration: none; transition: background var(--dur-fast), transform var(--dur-fast);
}
.whatsapp-float:hover { background: var(--cta-rosa-hover); transform: scale(1.05); }
.whatsapp-float:active { transform: scale(.96); }
.whatsapp-float svg { width: 26px; height: 26px; }
@media (min-width: 860px) { .whatsapp-float { width: 62px; height: 62px; right: 22px; bottom: 22px; } }

/* ------------------------------ CONSENT BANNER --------------------------------- */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: var(--grafite); color: var(--creme);
  padding: 18px var(--margin-mobile); transform: translateY(100%); transition: transform var(--dur-base) var(--ease-out);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .18);
}
.consent-banner.is-visible { transform: translateY(0); }
.consent-banner__inner { max-width: var(--max-content); margin-inline: auto; display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); align-items: center; justify-content: space-between; }
.consent-banner p { font-size: 14px; line-height: 1.6; max-width: 62ch; margin: 0; }
.consent-banner a { color: var(--rosa); }
.consent-banner__actions { display: flex; gap: 12px; flex: none; }

/* ---------------------------------- 404 ---------------------------------------- */
.error-page { text-align: center; padding-block: var(--sp-8); max-width: 560px; margin-inline: auto; }
.error-page img { margin: 0 auto var(--sp-3); }
.error-page h1 { margin: 10px 0 14px; }
.error-page .hero__lead { margin-inline: auto var(--sp-4); }
.error-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; justify-content: center; }

/* ----------------------------- POLÍTICAS/TERMOS --------------------------------- */
.policy-header { background: var(--creme); box-shadow: 0 6px 18px rgba(58, 42, 46, .07); }
.policy-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 16px; max-width: 900px; }
.policy-header img { height: 40px; }
.policy-back { font: 700 14px var(--font-body); text-decoration: none; padding: 10px 18px; border-radius: var(--radius-pill); background: var(--creme); box-shadow: var(--shadow-md); }
.policy-main { max-width: 780px; margin-inline: auto; padding: var(--sp-6) var(--margin-mobile) var(--sp-9); }
.policy-section { margin-bottom: var(--sp-7); }
.policy-section h1 { margin: 0 0 8px; }
.policy-kicker { font: 600 14px var(--font-body); color: var(--cta-rosa); margin: 0 0 30px; }
.policy-section h1 + .policy-kicker.azul { color: var(--cta-azul); }
.policy-card { display: flex; flex-direction: column; gap: 22px; padding: 34px 36px; border-radius: var(--radius-lg); background: var(--creme); box-shadow: var(--shadow-md); }
.policy-card h2 { font-size: 17px; margin: 0 0 10px; }
.policy-card p { font-size: 15.5px; line-height: 1.75; }

/* --------------------------------- UTILITÁRIOS ----------------------------------- */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }
.js-only { display: none; }
.js-enabled .js-only { display: block; }
