/* ==========================================================================
   Casa Viva Residencial Sênior — Design System
   ========================================================================== */

:root {
  /* Paleta oficial Casa Viva */
  --verde-casa-viva: #123024;
  --verde-profundo: #1f4234;
  --verde-salvia: #6f8067;
  --verde-folha: #a9b98d;
  --dourado-senior: #c9a24b;
  --dourado-claro: #e7d8a9;
  --branco: #ffffff;

  /* Tons neutros derivados para fundo claro */
  --bg-page: #ffffff;
  --bg-tint: #f7f6f0;
  --bg-tint-2: #f1efe4;
  --ink: #1c2620;
  --ink-soft: #4b564e;
  --line: #e6e2d3;

  /* Tipografia */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Espaçamento / forma */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 45px -22px rgba(18, 48, 36, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(18, 48, 36, 0.28);

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--verde-casa-viva); font-weight: 600; text-wrap: pretty; }
p { margin: 0; text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }
.nowrap { white-space: nowrap; }
@media (max-width: 640px) {
  .break-desktop-only { display: none; }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dourado-senior);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--dourado-senior);
  display: inline-block;
}
.eyebrow--light { color: var(--dourado-claro); }

.section { padding: 96px 0; }
.section--tint { background: var(--bg-tint); }
.section--dark {
  background: linear-gradient(160deg, var(--verde-casa-viva), var(--verde-profundo));
  color: var(--branco);
}
.section--dark h2, .section--dark h3 { color: var(--branco); }
.section-head { max-width: 980px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.2; margin-bottom: 18px; text-wrap: pretty; }
.section-head h2.contact-headline { font-size: clamp(0.8rem, calc(-0.6px + 4.19vw), 1.9rem); text-wrap: pretty; }
.section-head h2.contact-headline .nowrap { white-space: nowrap; text-wrap: nowrap; }
@media (min-width: 740px) {
  .section-head h2.contact-headline { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
}

#faq-section .section-head { max-width: 100%; }
.section-head h2.faq-headline { font-size: clamp(1.05rem, 5.4vw, 2.3rem); max-width: 1100px; }

#depoimentos .section-head h2 { font-size: clamp(1.4rem, 6.5vw, 2.6rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; max-width: 90ch; text-align: left; }
.section--dark .section-head p { color: rgba(255,255,255,0.82); }

.lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 90ch; text-align: left; }
.lede + .lede { margin-top: 16px; }

@media (max-width: 780px) {
  .section { padding: 68px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
  background: var(--verde-casa-viva);
  color: var(--branco);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 40px -18px rgba(18,48,36,0.5); background: var(--verde-profundo); }
.btn-gold {
  background: var(--dourado-senior);
  color: var(--verde-casa-viva);
  box-shadow: 0 18px 34px -16px rgba(201,162,75,0.65);
}
.btn-gold:hover { transform: translateY(-2px); background: #d6b263; }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--branco);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--branco); }
.btn-sm { padding: 12px 22px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, padding .3s ease;
  padding: 14px 0;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px -20px rgba(18,48,36,0.4);
  border-color: var(--line);
  padding: 8px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; transition: width .3s ease, height .3s ease; }
.site-header.is-scrolled .brand img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-family: var(--font-display); font-size: 1.08rem; color: var(--verde-casa-viva); }
.brand-text .brand-sub { font-size: 0.72rem; color: var(--verde-salvia); font-weight: 600; letter-spacing: 0.02em; }
.brand-text .brand-city { font-size: 0.72rem; color: var(--verde-salvia); font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--dourado-senior);
  transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--branco);
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle .bar { display: block; width: 20px; height: 2px; background: var(--verde-casa-viva); position: relative; }
.nav-toggle .bar::before, .nav-toggle .bar::after { content:""; position:absolute; left:0; width:20px; height:2px; background: var(--verde-casa-viva); transition: transform .25s ease; }
.nav-toggle .bar::before { top: -6px; }
.nav-toggle .bar::after { top: 6px; }

@media (max-width: 940px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 340px);
    background: var(--verde-casa-viva); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px; gap: 26px; transform: translateX(100%); transition: transform .35s ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { color: var(--branco); font-size: 1.1rem; }
  .main-nav a::after { background: var(--dourado-senior); }
  .header-actions .btn-primary.header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 941px) {
  .nav-scrim { display: none !important; }
}
.nav-scrim {
  position: fixed; inset: 0; background: rgba(18,48,36,0.45); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  color: var(--branco);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,48,36,0.78) 0%, rgba(18,48,36,0.72) 45%, rgba(15,35,27,0.92) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--dourado-claro);
  margin-bottom: 16px;
  max-width: 46ch;
}
.hero h1 {
  color: var(--branco);
  font-size: clamp(1rem, 6vw, 2.1rem);
  line-height: 1.14;
  margin-bottom: 22px;
}
@media (min-width: 561px) {
  .hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
}
.hero h1 em { color: var(--dourado-claro); font-style: italic; }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.08rem; max-width: 60ch; }
.hero p + p { margin-top: 14px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 28px; }
.chip {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.95);
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; align-items: center; }

/* Ticker rotativo de serviços (substitui os chips estáticos) */
.service-ticker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  margin: 26px 0 28px;
  max-width: 100%;
}
.service-ticker .ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dourado-claro); flex-shrink: 0; }
.service-ticker .ticker-track { position: relative; height: 1.4em; overflow: hidden; flex: 1; min-width: 180px; }
.service-ticker .ticker-item {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.95);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
  white-space: nowrap;
}
.service-ticker .ticker-item.is-active { opacity: 1; transform: translateY(0); }
.service-ticker .ticker-item.is-leaving { opacity: 0; transform: translateY(-14px); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(180deg, rgba(255,255,255,0.9), transparent); animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown { 0% { transform: scaleY(0.2); transform-origin: top; opacity: 0;} 40% {opacity:1; transform: scaleY(1); transform-origin: top;} 100% {transform: scaleY(0.2); transform-origin: bottom; opacity: 0;} }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--branco); padding: 46px 0; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { display: flex; align-items: center; gap: 14px; }
.stat-item .icon-badge { flex-shrink: 0; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--verde-casa-viva); }
.stat-item span { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 54px; height: 54px;
  min-width: 54px; min-height: 54px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-tint);
  color: var(--verde-casa-viva);
}
.icon-badge svg { width: 26px; height: 26px; stroke: currentColor; }
/* Padronizado: todos os ícones seguem o mesmo estilo do ícone de relógio (Cuidados 24h) */
.icon-badge--gold, .icon-badge--sage { background: var(--bg-tint); color: var(--verde-casa-viva); }
.icon-badge--dark { background: rgba(255,255,255,0.12); color: var(--dourado-claro); }
.icon-badge--pin svg { transform: translateY(-1px); }

/* ---------- Two column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 0.95fr 1.05fr; }
.two-col.reverse .two-col-media { order: 2; }
@media (max-width: 900px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse .two-col-media { order: -1; }
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.media-frame.wide img { aspect-ratio: 16/11; }

/* Slideshow de fotos (usado em "Quando procurar") */
.media-frame .slideshow { position: relative; aspect-ratio: 4/5; }
.media-frame.wide .slideshow { aspect-ratio: 16/11; }
.slideshow img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: auto;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slideshow img.is-active { opacity: 1; }
.media-badge {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(18,48,36,0.85);
  color: var(--branco);
  backdrop-filter: blur(6px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 10px;
  max-width: 78%;
}
.media-badge strong { color: var(--dourado-claro); display:block; font-family: var(--font-display); font-size: 1.1rem; }
.media-frame .ring {
  position: absolute; top: -26px; right: -26px;
  width: 120px; height: 120px;
  border: 2px solid var(--dourado-senior);
  border-radius: 50%;
  opacity: .5;
  z-index: -1;
}

/* ---------- Cards grid ---------- */
.card-grid { display: grid; gap: 22px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .cols-4 { grid-template-columns: repeat(2, 1fr); } .cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-4, .cols-3, .cols-2 { grid-template-columns: 1fr; } }

.info-card {
  background: var(--branco);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.info-card .icon-badge { margin-bottom: 18px; }
.info-card h3 { font-size: 1.08rem; margin-bottom: 8px; line-height: 1.3; }
.info-card p { color: var(--ink-soft); font-size: 0.92rem; }

.info-card--warn { border-color: rgba(201,162,75,0.4); background: linear-gradient(180deg, #fffdf7, var(--branco)); }

/* Photo feature card (used in cuidados/modalidades grids) */
.feature-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.feature-card::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,48,36,0) 35%, rgba(15,35,27,0.92) 100%); z-index: -1; }
.feature-card:hover img { transform: scale(1.06); }
.feature-card-body { position: relative; padding: 26px 24px; color: var(--branco); }
.feature-card-body .icon-badge { background: rgba(255,255,255,0.16); color: var(--dourado-claro); margin-bottom: 12px; }
.feature-card-body h3 { color: var(--branco); font-size: 1.15rem; margin-bottom: 8px; }
.feature-card-body p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.feature-card-body ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.feature-card-body li { font-size: 0.85rem; color: rgba(255,255,255,0.85); display: flex; gap: 8px; align-items: flex-start; }
.feature-card-body li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--dourado-claro); }

/* Modalidade card without heavy photo (icon top) */
.modalidade-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .28s ease, box-shadow .28s ease;
}
.modalidade-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.modalidade-card .thumb { height: 170px; overflow: hidden; }
.modalidade-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.modalidade-card .body { padding: 22px 22px 26px; }
.modalidade-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.modalidade-card p { font-size: 0.9rem; color: var(--ink-soft); }
.modalidade-card p.disclaimer { font-size: 0.78rem; color: var(--verde-salvia); margin-top: 8px; font-style: italic; }

.section-head h2.nowrap-until-mobile { white-space: nowrap; text-wrap: nowrap; }
.modalidades-lede { max-width: none; }
@media (max-width: 900px) {
  .section-head h2.nowrap-until-mobile { white-space: normal; text-wrap: pretty; }
}

/* ---------- Diferenciais ---------- */
.diferenciais { margin-top: 56px; }

/* ---------- Quote / culture band ---------- */
.culture-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 90px 48px;
  margin-top: 72px;
  color: var(--branco);
  min-height: 380px;
  display: flex;
  align-items: center;
}
.culture-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.culture-band::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(18,48,36,0.92) 20%, rgba(18,48,36,0.55) 75%); z-index: 1; }
.culture-band-content { position: relative; z-index: 2; max-width: 640px; }
.culture-band .kicker { color: var(--dourado-claro); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; margin-bottom: 18px; display:block; }
.culture-band h3 { color: var(--branco); font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.28; margin-bottom: 20px; font-style: italic; }
.culture-band p.author { color: rgba(255,255,255,0.82); font-size: .95rem; }
.value-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.value-tags span { font-size: .78rem; padding: 7px 14px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.9); }
@media (max-width: 640px) { .culture-band { padding: 60px 26px; } }

/* ---------- Depoimentos ---------- */
.rating-card {
  background: var(--branco);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}
.rating-score { display: flex; align-items: center; gap: 20px; }
.rating-score .num { font-family: var(--font-display); font-size: 3rem; color: var(--verde-casa-viva); line-height: 1; }
.stars { color: var(--dourado-senior); display: flex; gap: 3px; margin-bottom: 6px; }
.stars svg { width: 20px; height: 20px; }
.rating-score .meta span { display: block; font-size: .88rem; color: var(--ink-soft); }
.google-business-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  color: var(--dourado-senior) !important;
  font-weight: 700;
}
.google-business-badge svg { width: 15px; height: 15px; flex-shrink: 0; }
.rating-card .btn { flex-shrink: 0; }

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  margin-top: 40px;
  scroll-snap-type: x mandatory;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--dourado-claro); border-radius: 10px; }
.gallery-strip figure {
  margin: 0; border-radius: var(--radius-md); overflow: hidden; scroll-snap-align: start;
  position: relative; height: 280px; box-shadow: var(--shadow-card);
}
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; }
.gallery-strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(15,35,27,0.85));
  color: var(--branco); font-size: .82rem; font-weight: 600;
}

/* ---------- Reviews (Google) ---------- */
.reviews-grid { margin-top: 40px; }
.review-card {
  background: var(--branco);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--verde-casa-viva); color: var(--branco);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  flex-shrink: 0;
}
.review-head strong { display: block; font-family: var(--font-display); font-size: 0.98rem; color: var(--verde-casa-viva); }
.review-head .stars { margin-bottom: 0; }
.review-head .stars svg { width: 14px; height: 14px; }
.review-card p { color: var(--ink-soft); font-size: 0.92rem; font-style: italic; }
.reviews-note { font-size: 0.88rem; color: var(--ink-soft); margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 880px; }
.faq-item {
  background: var(--branco);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--verde-casa-viva);
  font-weight: 600;
}
.faq-question .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--verde-casa-viva);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-question .plus::before, .faq-question .plus::after { content:""; position:absolute; background: currentColor; }
.faq-question .plus::before { width: 12px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-question .plus { background: var(--dourado-senior); color: var(--branco); transform: rotate(135deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 26px 24px; color: var(--ink-soft); font-size: .95rem; text-align: left; }
.faq-item.is-open .faq-answer { max-height: 400px; }

/* ---------- Contato / Dark section ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; margin-top: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-list a, .contact-list .row { display: flex; align-items: flex-start; gap: 16px; }
.contact-list .icon-badge { background: rgba(255,255,255,0.1); color: var(--dourado-claro); }
.contact-list strong { display: block; color: var(--branco); font-family: var(--font-display); font-size: 1rem; margin-bottom: 2px; }
.contact-list span, .contact-list p { color: rgba(255,255,255,0.78); font-size: .92rem; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.18); box-shadow: var(--shadow-soft); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(0.15) saturate(1.05); }
.contact-cta-row { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #0e1f17; color: rgba(255,255,255,0.65); padding: 46px 0 26px; font-size: .85rem; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand strong { color: var(--branco); font-family: var(--font-display); font-size: 1rem; display: block; margin-bottom: 2px; }
.footer-sub { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0.02em; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; transition: background .25s ease, border-color .25s ease; }
.footer-social a:hover { background: var(--dourado-senior); border-color: var(--dourado-senior); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--verde-casa-viva);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px -10px rgba(18,48,36,0.55);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; }
@keyframes floatPulse { 0%, 100% { box-shadow: 0 16px 30px -10px rgba(18,48,36,0.55); } 50% { box-shadow: 0 16px 30px -10px rgba(201,162,75,0.65); } }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ---------- CTA blocks ---------- */
.cta-block { margin-top: 36px; }
.always-center { text-align: center; }
@media (max-width: 640px) {
  .cta-block.center-mobile { text-align: center; }
  .hero-cta-row { justify-content: center; text-align: center; }
  .footer-grid { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ---------- Misc ---------- */
.divider-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--dourado-senior); display: inline-block; }
.text-center { text-align: center; }
.mt-lg { margin-top: 56px; }

::selection { background: var(--dourado-claro); color: var(--verde-casa-viva); }
