/* =============================================
   TREINANDO PARA VIDA — style.css
   Raleway + Nunito | #EFE6D5 / #714B01 / #BC1D07 / #F9B420
   ============================================= */

/* ---- 1. CUSTOM PROPERTIES ---- */
:root {
  --bg:        #EFE6D5;
  --white:     #FFFFFF;
  --brown:     #714B01;
  --brown-lt:  #8C6015;
  --brown-bg:  #E7DAB9;
  --red:       #BC1D07;
  --red-dk:    #9C1806;
  --gold:      #F9B420;
  --yellow:    #E5B037;
  --yellow-dk: #C6952A;
  --text:      #2A2420;
  --text-md:   #5C5347;
  --text-lt:   #8C8275;
  --border:    #DED1B4;

  --font-serif: 'Raleway', sans-serif;
  --font-sans:  'Nunito', system-ui, sans-serif;

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

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

  --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(--brown);
}
h1 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
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(--brown);
  background: var(--brown-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(--brown); outline-offset: 3px; }
.btn--yellow {
  background: var(--yellow);
  color: var(--brown);
  box-shadow: 0 3px 12px rgba(229,176,55,0.35);
}
.btn--yellow:hover { background: var(--yellow-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229,176,55,0.42); }
.btn--yellow:active { transform: translateY(0); opacity: 0.9; }
.btn--outline {
  border: 1.5px solid var(--brown);
  color: var(--brown);
  background: transparent;
}
.btn--outline:hover { background: var(--brown); color: #fff; transform: translateY(-1px); }
.btn--white {
  background: #fff;
  color: var(--brown);
  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(239,230,213,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 768px) {
  .header {
    background: rgba(239,230,213,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; display: flex; align-items: center; }
.header__logo-img { height: 42px; width: auto; }
.header__logo-text { display: none; font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; color: var(--brown); }
.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(--brown);
  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 — tela cheia */
.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px clamp(20px, 5vw, 48px);
  z-index: 99;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.nav-mobile__link {
  display: block;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile__link:hover { color: var(--brown); }

/* ---- 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-color: var(--bg);
  background-image: url('assets/hero-treinando.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: 46%;
  max-width: 520px;
}
.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: 28px; }
.hero__actions {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.hero__actions .btn { justify-content: center; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.hero__badge strong { color: var(--brown); }
.hero__badge .stars { color: var(--gold); letter-spacing: 1px; }
.hero__badge-logo { flex-shrink: 0; display: block; }

/* ---- 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(--brown);
  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;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--brown-bg), #F6EFDD);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.img-frame__fallback { color: var(--brown); opacity: 0.35; }
.img-frame--square { aspect-ratio: 1 / 1; }
.acolhimento__video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

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

.audience-card:nth-child(1) { grid-column: span 2; }
.audience-card:nth-child(4) { grid-column: span 2; }
.audience-card:nth-child(5) { grid-column: span 2; }

.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(46,32,10,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Card destaque — Crianças */
.audience-card:nth-child(1) {
  background: var(--brown);
  border-color: var(--brown);
}
.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.82); font-size: 0.9rem; }

.audience-card:nth-child(5) .audience-card__body { display: contents; }

.audience-card__icon {
  width: 52px; height: 52px;
  background: var(--brown-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 — BENTO ---- */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Bento: linha 1 = grande + média + média · linha 2 = grande + grande · linha 3 = grande + grande */
.specialty-card:nth-child(1) { grid-column: span 2; }
.specialty-card:nth-child(4) { grid-column: span 2; }
.specialty-card:nth-child(5) { grid-column: span 2; }
.specialty-card:nth-child(6) { grid-column: span 2; }
.specialty-card:nth-child(7) { grid-column: span 2; }

.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(113,75,1,0.08);
  line-height: 1;
}
.specialty-card__icon {
  width: 68px; height: 68px;
  background: var(--brown-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; }

/* Card destaque — Psiquiatria */
.specialty-card:nth-child(1) {
  background: var(--brown);
  border-color: var(--brown);
}
.specialty-card:nth-child(1) .specialty-card__num { color: rgba(255,255,255,0.14); }
.specialty-card:nth-child(1) .specialty-card__icon { background: rgba(255,255,255,0.15); }
.specialty-card:nth-child(1) .specialty-card__icon svg { stroke: #fff; }
.specialty-card:nth-child(1) h3 { color: #fff; }
.specialty-card:nth-child(1) p { color: rgba(255,255,255,0.82); }

/* ---- 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(--red);
  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;
  background-size: 12px 12px;
}

/* ---- 14. SINAIS ---- */
.sinais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.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(--brown-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; }

/* ---- 15. PROVA SOCIAL / GOOGLE ---- */
.prova-social__hd {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brown-bg);
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown);
}
.google-badge .stars { color: var(--gold); letter-spacing: 2px; }
.google-badge-logo { flex-shrink: 0; display: block; }

.depoimentos-hd {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}
.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(--brown);
  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(--brown); border-color: var(--brown); 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, var(--white), transparent); }
.depoimentos-track::after  { right: 0; background: linear-gradient(to left,  var(--white), 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: 320px;
  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: var(--gold);
  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(--brown-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brown);
  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); }

/* ---- 15b. VÍDEOS ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(32px, 4vw, 48px);
}
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
}
.video-card__media { display: block; width: 100%; height: auto; }
.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(20,14,4,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.video-card__play svg { margin-left: 3px; }
.video-card__play:hover { background: var(--red); transform: scale(1.06); }
.video-card.is-playing .video-card__play { display: none; }

/* ---- 16. SOBRE ---- */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.sobre__img { width: 100%; }
.sobre__text h2 { margin-block: 8px 20px; }
.sobre__text p + p { margin-top: 12px; }

/* ---- 16b. EQUIPE ---- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: clamp(32px, 4vw, 48px);
}
.team-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px 22px 26px;
  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--placeholder { border: 1.5px dashed var(--border); }
.team-card--placeholder .team-card__role { color: var(--text-lt); background: transparent; }
.team-card--placeholder p { color: var(--text-lt); font-style: italic; }
.team-card--destaque {
  background: var(--white);
  border: 1.5px solid var(--gold);
  box-shadow: 0 6px 24px rgba(249,180,32,0.18);
}
.team-card--destaque:hover { box-shadow: 0 10px 28px rgba(249,180,32,0.24); }
.team-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.team-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(145deg, var(--brown-bg), #F6EFDD);
  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: 4px; }
.team-card__crp { display: block; font-size: 0.72rem; color: var(--text-lt); margin-bottom: 10px; }
.team-card__role {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--brown-bg);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.85rem; line-height: 1.6; }

/* ---- 16c. AMBIENTE / ESPAÇO (GRID UNIFORME + LIGHTBOX) ---- */
/* Grid uniforme, sem blocos de tamanhos diferentes: garante alinhamento
   perfeito em qualquer largura de tela, sem sobras nem buracos. */
.espaco-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}
.espaco-grid__item {
  flex: 1 1 250px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.espaco-grid__item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.espaco-grid__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: linear-gradient(145deg, var(--brown-bg), #F6EFDD);
  cursor: zoom-in;
}
.espaco-grid__fallback { opacity: 0.4; }
.espaco-grid__trigger img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.espaco-grid__trigger:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20,14,4,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. 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(--brown); }
.faq-item__btn[aria-expanded="true"] { color: var(--brown); }
.faq-item__btn[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); color: var(--brown); }
.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); } }

/* ---- 18. 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(--brown); font-weight: 600; }
.localizacao__address a:hover { text-decoration: underline; }
.localizacao__hours {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--brown-bg);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--brown);
}
.localizacao__hours p { font-size: 0.85rem; color: var(--brown); font-weight: 600; }
.localizacao__hours p + p { margin-top: 4px; }
.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);
}

/* ---- 19. CTA FINAL ---- */
.cta-final {
  position: relative;
  background: var(--red);
  padding-block: clamp(72px, 8vw, 108px);
  overflow: hidden;
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: url('assets/bg-penultima.webp') center/cover no-repeat;
  opacity: 0.14;
  filter: blur(6px) saturate(0.9);
  mix-blend-mode: soft-light;
  -webkit-mask-image: radial-gradient(ellipse 65% 80% at 50% 45%, #000 30%, transparent 74%);
  mask-image: radial-gradient(ellipse 65% 80% at 50% 45%, #000 30%, transparent 74%);
  pointer-events: none;
}
.cta-final__blob {
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(249,180,32,0.10);
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  animation: blob-morph 12s ease-in-out infinite reverse;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; }
  50% { border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
}
.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.82);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ---- 20. FOOTER ---- */
.footer {
  position: relative;
  background: linear-gradient(160deg, #2E2007 0%, #1A1204 78%);
  color: rgba(255,255,255,0.75);
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,180,32,0.5), transparent);
}
.footer__glow {
  position: absolute;
  top: -220px; left: 50%;
  width: 640px; height: 440px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(249,180,32,0.10), transparent);
  pointer-events: none;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: var(--gap);
  padding-block: 72px 48px;
}
.footer__logo { filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__logo-text { display: none; font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 16px; }
.footer__tagline { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 260px; margin-bottom: 22px; }
.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.footer__cta:hover { background: var(--gold); color: #2E2007; transform: translateY(-1px); }
.footer__col h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__col address, .footer__col p { font-size: 0.88rem; line-height: 1.85; }
.footer__col a { color: rgba(255,255,255,0.75); }
.footer__col a:hover { color: var(--gold); }
.footer__hours { margin-top: 10px; color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.88rem; position: relative; }
.footer__links a:hover { padding-left: 4px; }
.footer__pills { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.footer__pill:hover { border-color: var(--gold); background: rgba(249,180,32,0.08); color: var(--gold); }
.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 22px;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.32); }
.footer__bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer__bottom a:hover { color: var(--gold); }

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

/* ---- 22. 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);
}

/* ---- 23. 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); }
  .specialty-card:nth-child(1) { grid-column: span 2; }
  .specialty-card:nth-child(4) { grid-column: span 1; }
  .specialty-card:nth-child(5) { grid-column: span 2; }

  .footer__inner { grid-template-columns: 1fr 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);
  }
  .hero__inner {
    grid-area: 1 / 1;
    align-self: start;
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-h) + 92vw);
    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; }
  .hero__badge { margin-inline: auto; }

  .acolhimento__inner { grid-template-columns: 1fr; }
  .acolhimento__visual { max-width: 380px; margin-inline: auto; }

  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__img { max-width: 380px; margin-inline: auto; }

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

  .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; }
  .specialty-card:nth-child(1),
  .specialty-card:nth-child(4),
  .specialty-card:nth-child(5) { grid-column: span 1; }

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

  .video-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }

  .team-card { flex-basis: calc((100% - 24px) / 2); }

  .espaco-grid__item { flex-basis: 170px; }

  .depoimentos-hd { justify-content: flex-start; }
  .depoimento-card { width: 270px; }

  .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; }
  .footer__tagline { max-width: 100%; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }

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

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

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

  .team-card { flex-basis: 100%; }

  .espaco-grid__item { flex-basis: 140px; }
}

/* ---- 24. BLOG ---- */
.blog-top { padding-top: calc(var(--header-h) + 40px); }

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.blog-filters__pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.blog-filters__pill:hover { border-color: var(--brown); }
.blog-filters__pill.is-active { background: var(--brown); border-color: var(--brown); color: #fff; }

.blog-empty { color: var(--text-lt); padding-block: 24px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__img-link { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--brown-bg); }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__tag { align-self: flex-start; margin-bottom: 0; }
.blog-card__title { font-size: 1.1rem; }
.blog-card__title a:hover { color: var(--brown-lt); }
.blog-card__excerpt { font-size: 0.9rem; flex: 1; }
.blog-card__date { font-size: 0.78rem; color: var(--text-lt); }

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(40px, 5vw, 56px);
}
.blog-pagination__link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
  border: 1px solid var(--border);
  background: var(--white);
}
.blog-pagination__link:hover { border-color: var(--brown); }
.blog-pagination__link.is-active { background: var(--brown); border-color: var(--brown); color: #fff; }

/* ---- artigo individual ---- */
.post__container { max-width: 760px; }
.post__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.post__date { font-size: 0.85rem; color: var(--text-lt); }
.post__title { margin-bottom: 24px; }
.post__cover {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.post__body { font-size: 1.05rem; color: var(--text); }
.post__body > * + * { margin-top: 20px; }
.post__body h2 { font-size: 1.4rem; margin-top: 40px; }
.post__body h3 { font-size: 1.15rem; margin-top: 32px; }
.post__body p { color: var(--text); line-height: 1.8; }
.post__body a { color: var(--brown); text-decoration: underline; }
.post__body ul, .post__body ol { padding-left: 24px; color: var(--text); }
.post__body li { margin-bottom: 8px; }
.post__body img { border-radius: var(--radius-sm); }
.post__body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  color: var(--text-md);
  font-style: italic;
}

.post__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }

.post__cta {
  margin-top: clamp(48px, 6vw, 64px);
  background: var(--brown-bg);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
}
.post__cta h3 { margin-bottom: 10px; }
.post__cta p { margin-bottom: 20px; }

.post__related { margin-top: clamp(56px, 7vw, 80px); }
.post__related h2 { margin-bottom: 24px; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post__body { font-size: 1rem; }
}
