/* ============================================================
   Dra. Ana Maria Rossetti — style.css
   Paleta: areia quente, terracota suave, verde-salvia, creme
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --creme:       #faf6f1;
  --areia:       #f0e8dc;
  --areia-md:    #e2d4c4;
  --terracota:   #b5714a;
  --terracota-lt:#d4967a;
  --salvia:      #7a9e87;
  --salvia-lt:   #a8c5b0;
  --texto:       #2c2319;
  --texto-md:    #5a4a3a;
  --texto-lt:    #8a7a6a;
  --branco:      #ffffff;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-full: 999px;

  --shadow-sm:   0 2px 8px rgba(44,35,25,.07);
  --shadow-md:   0 6px 24px rgba(44,35,25,.10);
  --shadow-lg:   0 16px 48px rgba(44,35,25,.13);

  --transition:  .35s cubic-bezier(.4,0,.2,1);
  --section-py:  clamp(4rem, 8vw, 7rem);
  --container:   1160px;
  --px:          clamp(1.25rem, 5vw, 2rem);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--creme);
  color: var(--texto);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- UTILITÁRIOS ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
}

.hero-grid > *,
.sobre-grid > *,
.onco-grid > *,
.cta-grid > *,
.horarios-grid > *,
.footer-inner > * {
  min-width: 0;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--texto);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--terracota); }

.section-sub {
  font-size: 1.05rem;
  color: var(--texto-md);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .section-sub { margin-inline: auto; }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--terracota); outline-offset: 3px; }

.btn-primary {
  background: var(--terracota);
  color: var(--branco);
  box-shadow: 0 4px 18px rgba(181,113,74,.30);
}
.btn-primary:hover {
  background: #9e5e3b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,113,74,.38);
}

.btn-ghost {
  background: transparent;
  color: var(--texto-md);
  border: 1.5px solid var(--areia-md);
}
.btn-ghost:hover {
  background: var(--areia);
  border-color: var(--terracota-lt);
  color: var(--terracota);
}

.btn-cta {
  background: var(--terracota);
  color: var(--branco);
  padding: .65rem 1.4rem;
  font-size: .85rem;
  box-shadow: 0 3px 12px rgba(181,113,74,.25);
}
.btn-cta:hover { background: #9e5e3b; transform: translateY(-1px); }

/* ---------- ANIMAÇÕES ---------- */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right { transform: translateX(28px); }
.reveal.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ---------- HEADER / NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  background: rgba(250,246,241,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 212, 196, 0.7);
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.nav.scrolled {
  background: rgba(250,246,241,.96);
  box-shadow: 0 8px 30px rgba(44,35,25,.08);
  border-bottom-color: var(--areia-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
  transition: height var(--transition);
}
.nav.scrolled .nav-inner {
  height: 64px;
}

/* Logo com Monograma Editorial */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  line-height: 1.1;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--areia);
  border: 1px solid var(--areia-md);
  color: var(--terracota);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.nav-logo:hover .logo-badge {
  background: var(--terracota);
  color: var(--branco);
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--texto);
  letter-spacing: -.01em;
}

.logo-sub {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
}

/* Links do Menu */
.nav-links {
  display: none;
  gap: 2.2rem;
  margin-inline-start: auto;
}

.nav-links a {
  font-size: .86rem;
  font-weight: 500;
  color: var(--texto-md);
  transition: color var(--transition);
  position: relative;
  padding-block: .4rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--terracota);
  transition: width var(--transition), left var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracota);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

/* Botão CTA do Header */
.btn-cta {
  background: var(--terracota);
  color: var(--branco);
  padding: .65rem 1.4rem;
  font-size: .85rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(181,113,74,.28);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-cta svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-cta:hover {
  background: #9e5e3b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181,113,74,.38);
}
.btn-cta:hover svg {
  transform: scale(1.1);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-inline-start: auto;
  padding: .4rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texto);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  background: var(--creme);
  border-top: 1px solid var(--areia-md);
  padding: 1.5rem var(--px) 2rem;
  box-shadow: var(--shadow-md);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a { font-size: 1rem; color: var(--texto-md); font-weight: 500; }
.mobile-menu .btn-cta { display: inline-flex; margin-top: .5rem; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  padding-top: calc(68px + clamp(3rem, 5vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 212, 196, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: .73rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 600;
  margin-bottom: .85rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--texto);
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--terracota); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--texto-md);
  max-width: 540px;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

/* Lista de desejos / pilares */
.hero-desejos-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.85rem;
}
.hero-desejos-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--texto);
}
.hero-desejos-list svg {
  color: var(--terracota);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .82rem;
  color: var(--texto-md);
  padding-top: 1rem;
  border-top: 1px solid var(--areia-md);
  max-width: 480px;
}
.hero-stars { color: #d4a843; letter-spacing: 2px; font-size: .9rem; }

/* Imagem Hero com Badges Flutuantes */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(44,35,25,.15));
  z-index: 1;
}

/* ---------- SOBRE ---------- */
.sobre {
  padding-block: var(--section-py);
  background: var(--areia);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sobre-img-col { display: flex; justify-content: center; }
.sobre-img-frame {
  position: relative;
  border-radius: 0 var(--radius-xl) var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.sobre-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.sobre-img-frame img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  object-position: top;
}

.sobre-content p {
  color: var(--texto-md);
  margin-bottom: 1rem;
}

.sobre-editorial-block {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--areia-md);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Credenciais acadêmicas estilo revista */
.sobre-cred-editorial {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--creme);
  border: 1px solid var(--areia-md);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.sobre-cred-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.sobre-cred-tag {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terracota);
}

.sobre-cred-inst {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--texto);
  line-height: 1.1;
}

.sobre-cred-curso {
  font-size: .83rem;
  color: var(--texto-md);
  line-height: 1.4;
}

.sobre-cred-div {
  width: 1px;
  height: 50px;
  background: var(--areia-md);
  flex-shrink: 0;
}

/* Foco de atuação em índice editorial */
.sobre-foco-editorial {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.sobre-foco-label {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--texto-lt);
}

.sobre-foco-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem 1.5rem;
}

.sobre-foco-lista li {
  font-size: .86rem;
  color: var(--texto);
  display: flex;
  align-items: center;
  gap: .6rem;
  padding-block: .35rem;
  border-bottom: 1px dashed var(--areia-md);
}

.sf-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .82rem;
  color: var(--terracota);
  font-weight: 600;
}

@media (max-width: 520px) {
  .sobre-cred-editorial {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .sobre-cred-div {
    width: 100%;
    height: 1px;
  }
  .sobre-foco-lista {
    grid-template-columns: 1fr;
  }
}

/* ---------- MÉTODO / CONSULTA FLOW ---------- */
.metodo {
  padding-block: var(--section-py);
  background: var(--creme);
}

.cf-flow {
  max-width: 740px;
  margin-inline: auto;
}

/* Cada passo */
.cf-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 2rem;
}

.cf-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Número em círculo */
.cf-n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--terracota);
  background: var(--creme);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background var(--transition), color var(--transition);
}
.cf-step:hover .cf-n {
  background: var(--terracota);
  color: var(--branco);
}

/* Linha conectora */
.cf-conector {
  flex: 1;
  width: 1px;
  min-height: 1.5rem;
  background: linear-gradient(to bottom, var(--areia-md) 60%, transparent);
  margin-block: 6px;
  display: block;
}

/* Área de conteúdo */
.cf-main {
  padding-top: 9px;
  padding-bottom: 3rem;
}
.cf-step--last .cf-main { padding-bottom: 0; }

.cf-titulo {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--texto);
  line-height: 1.25;
  margin-bottom: .55rem;
}

.cf-desc {
  font-size: .94rem;
  color: var(--texto-md);
  line-height: 1.75;
}

/* Chips (passo 01) */
.cf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1rem;
}
.cf-chips li {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  background: var(--areia);
  color: var(--texto-md);
  border: 1px solid var(--areia-md);
}

/* Métricas (passo 02) */
.cf-metricas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-top: 1.1rem;
}
.cf-metrica {
  background: var(--branco);
  border: 1px solid var(--areia-md);
  border-radius: var(--radius-md);
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.cf-metrica strong {
  font-size: .87rem;
  font-weight: 600;
  color: var(--texto);
}
.cf-metrica > span {
  font-size: .73rem;
  color: var(--texto-lt);
}
.cf-metrica--dest {
  background: var(--terracota);
  border-color: transparent;
}
.cf-metrica--dest strong { color: var(--branco); }
.cf-metrica--dest > span { color: rgba(255,255,255,.72); }

/* Caixa de nota (passo 03) */
.cf-nota-box {
  background: var(--areia);
  border-left: 2px solid var(--terracota-lt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.1rem 1.4rem;
}
.cf-nota-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: .4rem;
}
.cf-nota-box .cf-titulo { font-size: 1.1rem; margin-bottom: .35rem; }
.cf-nota-box .cf-desc { font-size: .9rem; }

/* App grid (passo 04) */
.cf-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
  margin-top: 1.1rem;
}
.cf-app-item {
  background: var(--branco);
  border: 1px solid var(--areia-md);
  border-left: 2.5px solid var(--terracota-lt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: .8rem 1rem;
  font-size: .84rem;
  color: var(--texto-md);
  line-height: 1.4;
}

/* Modalidades (passo 05) */
.cf-modalidades {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.1rem;
}
.cf-modalidade {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.cf-mod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--salvia);
  flex-shrink: 0;
  margin-top: 6px;
}
.cf-modalidade strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--texto);
}
.cf-modalidade span {
  font-size: .8rem;
  color: var(--texto-lt);
  line-height: 1.5;
}

/* ---------- NUTRIÇÃO ONCOLÓGICA ---------- */
.onco {
  padding-block: var(--section-py);
  background: var(--areia);
}

.onco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.onco-content p {
  color: var(--texto-md);
  margin-bottom: 1rem;
}

.onco-lead {
  font-size: 1.05rem;
  line-height: 1.75;
}

.onco-side {
  background: var(--branco);
  border: 1px solid var(--areia-md);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.onco-side-label {
  display: block;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--texto-lt);
  margin-bottom: 1.25rem;
}

.onco-lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.onco-lista li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--texto);
  line-height: 1.5;
}
.onco-lista svg {
  color: var(--salvia);
  flex-shrink: 0;
  margin-top: 3px;
}

.onco-cta { width: 100%; justify-content: center; }

@media (min-width: 900px) {
  .onco-grid { grid-template-columns: 1.15fr 1fr; gap: 5rem; }
}

/* ---------- DEPOIMENTOS ---------- */
.depoimentos {
  padding-block: var(--section-py);
  background: var(--areia);
}

.dep-lista {
  display: flex;
  flex-direction: column;
}

.dep-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0 2rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--areia-md);
  align-items: start;
  transition: background var(--transition);
}
.dep-item:last-child { border-bottom: 1px solid var(--areia-md); }
.dep-item:hover { background: rgba(181,113,74,.04); }

.dep-idx {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .88rem;
  color: var(--terracota);
  padding-top: 1.15rem; /* alinha com o texto da citação (abaixo das estrelas) */
  flex-shrink: 0;
  text-align: right;
}

.dep-corpo blockquote { margin: 0; }

/* Estrelas antes de cada citação */
.dep-corpo blockquote::before {
  content: "★★★★★";
  display: block;
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--terracota);
  opacity: .55;
  margin-bottom: .7rem;
}

.dep-corpo blockquote p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--texto);
  line-height: 1.7;
  margin-bottom: .5rem;
}
.dep-corpo blockquote p:last-child { margin-bottom: 0; }

.dep-item--dest .dep-corpo blockquote p {
  font-size: 1.12rem;
}

/* Nome abaixo da citação com traço */
.dep-corpo footer {
  margin-top: .9rem;
}
.dep-corpo footer strong {
  font-family: var(--font-sans);
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--texto-lt);
}

/* ---------- CTA FAIXA / EDITORIAL MANIFESTO ---------- */
.cta-faixa {
  padding-block: var(--section-py);
  background: var(--creme);
}

.cta-card {
  background: var(--texto);
  color: var(--branco);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(181,113,74,.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracota-lt);
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--branco);
  margin-bottom: 1.2rem;
}
.cta-title em {
  font-style: italic;
  color: var(--terracota-lt);
}

.cta-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.cta-manifesto-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  backdrop-filter: blur(8px);
}

.cta-manifesto-box p {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.btn-cta-main {
  background: var(--terracota);
  color: var(--branco);
  font-weight: 500;
  padding: .9rem 1.8rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(181,113,74,.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cta-main:hover {
  background: #c67f56;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(181,113,74,.45);
}

.cta-note {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  letter-spacing: .02em;
}

/* ---------- FAQ ---------- */
.faq {
  padding-block: var(--section-py);
  background: var(--creme);
}
.faq-inner { max-width: 760px; margin-inline: auto; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--branco);
  border-radius: var(--radius-md);
  border: 1px solid var(--areia-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-size: .97rem;
  font-weight: 500;
  color: var(--texto);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terracota); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--areia);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--terracota);
  transition: background var(--transition), transform var(--transition);
}
.faq-icon::after { content: '+'; }
.faq-item[open] .faq-icon { background: var(--terracota); color: var(--branco); transform: rotate(45deg); }

.faq-body { padding: 0 1.5rem 1.25rem; }
.faq-body p { font-size: .93rem; color: var(--texto-md); line-height: 1.7; }

/* ---------- HORÁRIOS ---------- */
.horarios {
  padding-block: var(--section-py);
  background: var(--areia);
}
.horarios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.horarios-endereco {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--texto-md);
  font-size: .93rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.horarios-endereco svg { flex-shrink: 0; margin-top: 3px; color: var(--terracota); }

.horarios-tabela {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.horarios-tabela td {
  padding: .7rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--areia-md);
  color: var(--texto-md);
}
.horarios-tabela td:last-child { text-align: right; font-weight: 500; color: var(--texto); }
.horarios-tabela tr.fechado td { color: var(--texto-lt); }
.horarios-tabela tr.fechado td:last-child { color: var(--texto-lt); font-weight: 400; }

.horarios-mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.horarios-mapa iframe { width: 100%; height: 100%; display: block; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--texto);
  color: var(--branco);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .nav-logo { display: inline-flex; margin-bottom: .25rem; }
.footer-brand .logo-name { color: var(--branco); font-family: var(--font-serif); font-size: 1.3rem; }
.footer-brand .logo-sub { color: var(--terracota-lt); }
.footer-brand .logo-badge { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--terracota-lt); }
.footer-brand p { margin-top: .85rem; font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 290px; }

.footer-nav h3, .footer-contato h3 {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-nav ul, .footer-contato ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-nav a, .footer-contato a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-contato a:hover { color: var(--branco); }
.footer-contato address { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }

.footer-bottom {
  padding: 1.25rem var(--px);
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ---------- WHATSAPP FLUTUANTE ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  background: #25d366;
  color: var(--branco);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Mobile (< 900px) */
@media (max-width: 899px) {
  .nav-inner > .btn-cta { display: none; }
}

/* Mobile Small (< 600px) */
@media (max-width: 599px) {
  .cta-card {
    padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.1rem, 4vw, 1.5rem);
    border-radius: var(--radius-lg);
  }
  .cta-manifesto-box {
    padding: 1.35rem 1rem;
  }
  .cta-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .cta-lead, .cta-manifesto-box p {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* Desktop (900px+) */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }

  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }

  .sobre-grid { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
  .sobre-img-frame { max-width: 100%; }

  .cf-metricas { grid-template-columns: repeat(4, 1fr); }

  .cta-grid { grid-template-columns: 1.25fr 1fr; gap: 4rem; }

  .horarios-grid { grid-template-columns: 1fr 1.3fr; }

  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* Large (1200px+) */
@media (min-width: 1200px) {
  .hero-grid { gap: 6rem; }
  .sobre-grid { gap: 6rem; }
}
