/* =============================================
   ODONTOCLIN — style.css
   Playfair Display + Nunito | #f2f2f2 / #84267C / #0CA84A
   ============================================= */

/* ---- 1. CUSTOM PROPERTIES ---- */
:root {
  --bg:        #f2f2f2;
  --white:     #FFFFFF;
  --purple:    #84267C;
  --purple-lt: #9E3A96;
  --purple-bg: #F5EDF4;
  --green:     #0CA84A;
  --green-dk:  #0A9040;
  --text:      #2A2A2A;
  --text-md:   #555555;
  --text-lt:   #888888;
  --border:    #D9D6D4;

  --font-serif: 'Bricolage Grotesque', sans-serif;
  --font-sans:  'Nunito', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow:    0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.10);

  --header-h: 76px;
  --max-w:    1160px;
  --gap:      clamp(24px, 4vw, 64px);
}

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

/* ---- 3. TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--purple);
}
h1 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; }
p  { color: var(--text-md); font-size: 1rem; }
small { font-size: 0.8rem; }

/* ---- 4. LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.section { padding-block: clamp(64px, 8vw, 100px); }
.section--white { background: var(--white); }

.section__hd {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section__hd h2 { margin-block: 12px 16px; }
.section__hd p { font-size: 1.05rem; }
.section__hd p + p { margin-top: 10px; }

.section__cta { text-align: center; margin-top: clamp(40px, 5vw, 56px); }

/* ---- 5. TAG / LABEL ---- */
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-bg);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

/* ---- 6. BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; }
.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 12px rgba(12,168,74,0.20);
}
.btn--green:hover { background: var(--green-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(12,168,74,0.28); }
.btn--green:active { transform: translateY(0); opacity: 0.9; }
.btn--outline {
  border: 1.5px solid var(--purple);
  color: var(--purple);
  background: transparent;
}
.btn--outline:hover { background: var(--purple); color: #fff; transform: translateY(-1px); }
.btn--white {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 3px 12px rgba(0,0,0,0.10);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.14); }
.btn--lg { font-size: 0.95rem; padding: 14px 32px; }
.btn--full { width: 100%; justify-content: center; }

/* ---- 7. HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(234,232,231,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 768px) {
  .header {
    background: rgba(234,232,231,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}
.header__logo { flex-shrink: 0; }
.header__logo-img { height: 42px; width: auto; }
.header__nav { margin-inline-start: auto; }
.header__nav ul { display: flex; gap: 32px; }
.header__nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--purple);
  transition: width 0.2s ease;
}
.header__nav a:hover::after,
.header__nav a:focus-visible::after { width: 100%; }
/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-inline-start: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.nav-mobile {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px clamp(20px, 5vw, 48px);
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.nav-mobile__link {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile__link:hover { color: var(--purple); }

/* ---- 8. HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 80px;
  overflow: hidden;
  background-image: url('assets/hero-odontoclin.webp');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__mob-img { display: none; }

.hero__content {
  width: 44%;
  max-width: 500px;
}
.hero__content h1 { margin-bottom: 20px; }
.hero__lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.hero__body { margin-bottom: 36px; }
.hero__actions {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__actions .btn { justify-content: center; }
.hero__reg {
  font-size: 0.75rem;
  color: var(--text-lt);
  letter-spacing: 0.03em;
}

/* ---- 9. TRUST BAR / MARQUEE ---- */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 22px;
  overflow: hidden;
}
.marquee { overflow: hidden; width: 100%; }
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-inline: 28px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee__sep {
  color: var(--purple);
  font-size: 1.1rem;
  opacity: 0.4;
  flex-shrink: 0;
  user-select: none;
}

/* ---- 10. ACOLHIMENTO ---- */
.acolhimento__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.acolhimento__text h2 { margin-block: 8px 20px; }
.acolhimento__text p + p { margin-top: 12px; }
.acolhimento__text .btn { margin-top: 28px; }

/* img-frame */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--purple-bg), #EFF9F2);
  box-shadow: var(--shadow);
}
.img-frame img,
.img-frame video { width: 100%; height: 100%; object-fit: cover; }
.img-frame--empty img { display: none; }
.img-frame__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.4);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  padding: 8px 14px;
  text-align: center;
}

/* ---- 11. PARA QUEM É — BENTO ---- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}

/* Posicionamento bento */
.audience-card:nth-child(1) { grid-column: span 2; } /* Bebês — destaque */
.audience-card:nth-child(4) { grid-column: span 2; } /* Adultos */
.audience-card:nth-child(5) { grid-column: span 2; } /* Famílias */

/* Card base */
.audience-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Card destaque — Bebês (roxo) */
.audience-card:nth-child(1) {
  background: var(--purple);
  border-color: var(--purple);
}
.audience-card:nth-child(1) .audience-card__icon {
  background: rgba(255,255,255,0.15);
}
.audience-card:nth-child(1) .audience-card__icon svg { stroke: #fff; }
.audience-card:nth-child(1) h3 { color: #fff; font-size: 1.15rem; }
.audience-card:nth-child(1) p  { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* Card Famílias — vertical, igual aos outros */
.audience-card:nth-child(5) .audience-card__body { display: contents; }

/* Ícone */
.audience-card__icon {
  width: 52px; height: 52px;
  background: var(--purple-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.audience-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 0.85rem;
  color: var(--text-lt);
  line-height: 1.65;
}

/* ---- 12. ESPECIALIDADES ---- */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.specialty-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.specialty-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.specialty-card__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(132,38,124,0.07);
  line-height: 1;
}
.specialty-card__icon {
  width: 68px; height: 68px;
  background: var(--purple-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.specialty-card h3 { margin-bottom: 12px; }
.specialty-card p { font-size: 0.88rem; }

/* ---- 12b. PROCEDIMENTOS EM DESTAQUE ---- */
.procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.procedure-card:first-child { grid-column: span 2; }
.procedure-card {
  background: var(--purple-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.procedure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); background: var(--white); }
.procedure-card__icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.procedure-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.procedure-card p { font-size: 0.88rem; }

/* ---- 12c. VÍDEOS ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
}
.video-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
}
.video-grid__item iframe { border-radius: var(--radius); }

/* ---- 13. DIFERENCIAIS ---- */
.diferenciais__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.diferenciais__text h2 { margin-block: 8px 20px; }
.diferenciais__text p + p { margin-top: 12px; }
.diferenciais__list h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 20px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- 14. SINAIS ---- */
.sinais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
}
.sinal-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sinal-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sinal-item__icon {
  width: 52px; height: 52px;
  background: var(--purple-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sinal-item h3 { font-size: 1rem; margin-bottom: 8px; }
.sinal-item p { font-size: 0.88rem; }

/* ---- 14b. EQUIPE ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(145deg, var(--purple-bg), #EFF9F2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__fallback { opacity: 0.5; }
.team-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.team-card__role {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-bg);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.team-card p { font-size: 0.85rem; }

/* ---- 15. SOBRE ---- */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.sobre__text h2 { margin-block: 8px 20px; }
.sobre__text p + p { margin-top: 12px; }
.sobre__reg {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--purple-bg);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--purple);
}
.sobre__reg p { font-size: 0.85rem; color: var(--purple); font-weight: 600; }
.sobre__reg p + p { margin-top: 4px; }
.sobre__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ---- 16. GALLERY (BENTO) ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 13vw, 200px);
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}
.gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item:nth-child(6),
.gallery__item:nth-child(9) {
  grid-column: span 2;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery__item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery__trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
}
.gallery__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery__trigger:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lb-in 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 9001;
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }

/* ---- 17. DEPOIMENTOS ---- */
.depoimentos-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.depo-arrows { display: flex; gap: 10px; flex-shrink: 0; }
.depo-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  box-shadow: var(--shadow-sm);
}
.depo-arrow:hover { background: var(--purple); border-color: var(--purple); color: #fff; transform: scale(1.07); }
.depo-arrow:disabled { opacity: 0.35; pointer-events: none; }

.depoimentos-track {
  overflow: hidden;
  position: relative;
}
.depoimentos-track::before,
.depoimentos-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.depoimentos-track::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.depoimentos-track::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }

.depoimentos-inner {
  display: flex;
  gap: 20px;
  padding-block: 8px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.depoimento-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  width: 340px;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.depoimento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.depoimento-card__stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
}
.depoimento-card blockquote p {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-md);
  line-height: 1.7;
}
.depoimento-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.depoimento-card__avatar {
  width: 44px; height: 44px;
  background: var(--purple-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--purple);
  font-size: 1rem;
  flex-shrink: 0;
}
.depoimento-card footer strong { font-size: 0.88rem; display: block; color: var(--text); }
.depoimento-card footer small  { color: var(--text-lt); }

/* ---- 18. FAQ ---- */
.faq__inner { max-width: 760px; margin-inline: auto; }
.faq-list { margin-top: clamp(32px, 4vw, 48px); }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-item__btn:hover { color: var(--purple); }
.faq-item__btn[aria-expanded="true"] { color: var(--purple); }
.faq-item__btn[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); color: var(--purple); }
.faq-item__icon {
  flex-shrink: 0;
  color: var(--text-lt);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item__body {
  padding-bottom: 20px;
  animation: faq-in 0.25s ease;
}
.faq-item__body p { font-size: 0.95rem; color: var(--text-md); }
@keyframes faq-in { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* ---- 19. LOCALIZAÇÃO ---- */
.localizacao__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap);
  align-items: center;
  margin-top: clamp(32px, 4vw, 48px);
}
.localizacao__address p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-md);
  margin-bottom: 16px;
  line-height: 1.7;
}
.localizacao__address svg { flex-shrink: 0; margin-top: 3px; }
.localizacao__address a { color: var(--purple); font-weight: 600; }
.localizacao__address a:hover { text-decoration: underline; }
.localizacao__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.localizacao__map iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ---- 20. CTA FINAL ---- */
.cta-final {
  position: relative;
  background: var(--purple);
  padding-block: clamp(72px, 8vw, 108px);
  overflow: hidden;
  text-align: center;
}
.cta-final__blob {
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  animation: blob-morph 12s ease-in-out infinite reverse;
}
.cta-final__inner { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; }
.cta-final__inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.cta-final__inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ---- 21. FOOTER ---- */
.footer { background: #1E1E1E; color: rgba(255,255,255,0.75); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--gap);
  padding-block: 56px 40px;
}
.footer__logo { filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer__reg { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 8px; }
.footer__col h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__col address, .footer__col p { font-size: 0.88rem; line-height: 1.8; }
.footer__col a { color: rgba(255,255,255,0.75); }
.footer__col a:hover { color: #fff; }
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer__insta:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 20px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; }
.footer__bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer__bottom a:hover { color: rgba(255,255,255,0.75); }

/* ---- 22. FLOATING ELEMENTS ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(12,168,74,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(12,168,74,0.5); }
.whatsapp-float:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }


/* ---- 23. SCROLL ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- 24. RESPONSIVE ---- */

/* Tablet landscape */
@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-card:nth-child(1) { grid-column: span 2; }
  .audience-card:nth-child(4) { grid-column: span 1; }
  .audience-card:nth-child(5) { grid-column: span 2; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .procedure-grid { grid-template-columns: repeat(2, 1fr); }
  .procedure-card:first-child { grid-column: span 2; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .header__nav { display: none; }
  .hamburger { display: flex; }

  .hero {
    display: grid;
    align-items: start;
    background-image: none;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }
  .hero__mob-img {
    display: block;
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    margin-top: var(--header-h);
    object-fit: cover;
    object-position: top center;
  }
  .hero__inner {
    grid-area: 1 / 1;
    align-self: start;
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-h) + 82vw);
    padding-bottom: 52px;
  }
  .hero__content { width: 100%; max-width: 100%; text-align: center; }
  .hero__actions { display: flex; flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .trust-bar__list { flex-direction: column; align-items: flex-start; padding-inline: clamp(20px,5vw,48px); }
  .trust-sep { display: none; }
  .trust-item { padding: 4px 0; }

  .acolhimento__inner,
  .diferenciais__inner,
  .sobre__inner { grid-template-columns: 1fr; }
  .acolhimento__visual { max-width: 380px; margin-inline: auto; }
  .about__counter { justify-self: center; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-card:nth-child(1),
  .audience-card:nth-child(4),
  .audience-card:nth-child(5) { grid-column: span 1; }

  .specialty-grid { grid-template-columns: 1fr; }

  .procedure-grid { grid-template-columns: 1fr; }
  .procedure-card:first-child { grid-column: span 1; }
  .video-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .sinais-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(140px, 30vw, 220px); }

  .depoimentos-hd { flex-direction: column; align-items: flex-start; gap: 16px; }
  .depoimento-card { width: 280px; }

  .localizacao__inner { grid-template-columns: 1fr; }
  .localizacao__btns { flex-direction: column; }
  .localizacao__btns .btn { width: 100%; justify-content: center; }
  .localizacao__map iframe { height: 260px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .whatsapp-float { bottom: 28px; }
}

/* Mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.45rem; }

  .hero { padding-top: 0; padding-bottom: 0; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-card:nth-child(1),
  .audience-card:nth-child(4),
  .audience-card:nth-child(5) { grid-column: 1; }

  .sinais-grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: clamp(160px, 60vw, 280px); }
  .gallery__item:first-child,
  .gallery__item:nth-child(6),
  .gallery__item:nth-child(9) { grid-column: span 1; }

}
