/* =====================================================================
   VARIATION 3: MESCLADA — best of both
   - Base branca com seções creme alternadas (Sereno)
   - Curvas orgânicas + blobs + retratos circulares (Acolhedor)
   - Tipografia Poppins (regular + medium)
   - Espaçamento generoso, header limpo, form minimalista
===================================================================== */

.v3-root {
  --v3-olive: #6c6c44;
  --v3-olive-deep: #4f5031;
  --v3-olive-soft: #8a8a5e;
  --v3-cream: #efece2;
  --v3-cream-soft: #f5f2ea;
  --v3-sand: #dacaab;
  --v3-paper: #ffffff;
  --v3-off: #fbfaf6;
  --v3-ink: #2a2a1f;
  --v3-ink-muted: #74715f;
  --v3-line: rgba(108, 108, 68, 0.14);

  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--v3-ink);
  background: var(--v3-paper);
  line-height: 1.6;
  font-size: 16px;
}

.v3-root *, .v3-root *::before, .v3-root *::after { box-sizing: border-box; }
.v3-root img { display: block; max-width: 100%; }
.v3-root a { color: inherit; text-decoration: none; }
.v3-root button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.v3-root ul, .v3-root ol { list-style: none; margin: 0; padding: 0; }
.v3-root h1, .v3-root h2, .v3-root h3, .v3-root h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; }
.v3-root p { margin: 0; }

.v3-container { width: min(100% - 64px, 1240px); margin-inline: auto; }

/* =====================================================================
   BUTTONS
===================================================================== */
.v3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 220ms ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.v3-btn--sm { padding: 11px 20px; font-size: 13px; }
.v3-btn--full { width: 100%; padding: 17px; }
.v3-btn--mt { margin-top: 24px; }
.v3-btn--primary {
  background: var(--v3-olive);
  color: var(--v3-paper);
  box-shadow: 0 12px 24px -10px rgba(108,108,68,0.4);
}
.v3-btn--primary:hover {
  background: var(--v3-olive-deep);
  transform: translateY(-2px);
}
/* Fix: browser button reset overrides .v3-btn--primary background */
.v3-root button.v3-btn--primary {
  background: var(--v3-olive);
  color: var(--v3-paper);
  box-shadow: 0 12px 24px -10px rgba(108,108,68,0.4);
}
.v3-root button.v3-btn--primary:hover {
  background: var(--v3-olive-deep);
}
  background: transparent;
  color: var(--v3-olive);
  border-color: var(--v3-olive);
}
.v3-btn--outline:hover { background: var(--v3-olive); color: var(--v3-paper); }
.v3-btn--white { background: var(--v3-paper); color: var(--v3-olive-deep); }
.v3-btn--white:hover { transform: translateY(-2px); }
/* CTA section — outlined white button readable on olive bg */
.v3-btn--cta-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.v3-btn--cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* =====================================================================
   HEADER
===================================================================== */
.v3-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  transition: all 220ms ease;
}
.v3-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--v3-line);
}
.v3-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}
.v3-brand img { height: 44px; }
.v3-nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: var(--v3-ink-muted);
  font-weight: 400;
}
.v3-nav a { transition: color 200ms; }
.v3-nav a:hover { color: var(--v3-olive); }

/* ── Header actions: social icons + hamburger ── */
.v3-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.v3-header__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--v3-ink-muted);
  transition: color 200ms ease, background 200ms ease;
  flex-shrink: 0;
}
.v3-header__social:hover {
  color: var(--v3-olive);
  background: var(--v3-cream);
}

/* ── Hamburger button (mobile only) ── */
.v3-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background 200ms ease;
  margin-left: 4px;
}
.v3-hamburger:hover { background: var(--v3-cream); }
.v3-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--v3-ink);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 200ms ease, width 200ms ease;
  transform-origin: center;
}
/* Animated X state */
.v3-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v3-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.v3-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ── */
.v3-mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--v3-line);
  overflow: hidden;
  max-height: 0;
  transition: max-height 380ms cubic-bezier(0.4, 0, 0.2, 1);
}
.v3-mobile-nav.is-open {
  max-height: 420px;
}
.v3-mobile-nav .v3-container {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 12px;
}
.v3-mobile-nav__link {
  display: flex;
  align-items: center;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 400;
  color: var(--v3-ink);
  border-bottom: 1px solid var(--v3-line);
  transition: color 200ms ease, padding-left 200ms ease;
}
.v3-mobile-nav__link:last-child { border-bottom: none; }
.v3-mobile-nav__link:hover {
  color: var(--v3-olive);
  padding-left: 8px;
}

/* =====================================================================
   EYEBROW + SECTIONS
===================================================================== */
.v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v3-olive);
  font-weight: 500;
  margin-bottom: 26px;
}
.v3-eyebrow__line { width: 30px; height: 1px; background: var(--v3-olive); }
.v3-eyebrow--light { color: var(--v3-cream); }
.v3-eyebrow--light .v3-eyebrow__line { background: var(--v3-cream); }

.v3-section { padding: 150px 0; position: relative; }
.v3-section--cream { background: var(--v3-cream); }
.v3-section--cream-soft { background: var(--v3-cream-soft); }

.v3-section-head { max-width: 760px; margin-bottom: 80px; }
.v3-section-head--center { text-align: center; margin-inline: auto; }
.v3-section-head--center .v3-eyebrow { justify-content: center; }
.v3-section-title {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--v3-ink);
  margin-bottom: 22px;
}
.v3-section-lead {
  font-size: 17px;
  color: var(--v3-ink-muted);
  line-height: 1.65;
  max-width: 620px;
}
.v3-section-head--center .v3-section-lead { margin-inline: auto; }

/* =====================================================================
   HERO — Sereno layout (text left, photo right) + Acolhedor curves
===================================================================== */
.v3-hero {
  padding: 80px 0 0;
  background: var(--v3-paper);
  position: relative;
  overflow: hidden;
}
.v3-hero__blob {
  position: absolute;
  width: 720px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.v3-hero__blob--1 { color: var(--v3-olive); top: -200px; right: -160px; }
.v3-hero__blob--2 { color: var(--v3-sand); bottom: -180px; left: -200px; opacity: 0.35; }

.v3-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 88px;
  align-items: center;
  padding-bottom: 110px;
  position: relative;
  z-index: 1;
}
.v3-hero__content { max-width: 600px; }
.v3-hero__title {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 28px;
}
.v3-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--v3-ink-muted);
  max-width: 540px;
  margin-bottom: 36px;
}
.v3-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.v3-hero__note {
  font-size: 13px;
  color: var(--v3-ink-muted);
  margin-top: 8px;
}

/* hero photo column — single arc-topped photo + floating badge */
.v3-hero__media {
  position: relative;
  min-height: 580px;
}
.v3-hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 240px 240px 28px 28px;
  overflow: hidden;
  background: var(--v3-cream);
  box-shadow: 0 30px 60px -28px rgba(74, 80, 49, 0.25);
}
.v3-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Hero Slideshow ── */
.v3-hero__slider { overflow: hidden; }
.v3-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1s ease;
  border-radius: inherit;
}
.v3-slide.is-active { opacity: 1; z-index: 1; }

/* Slide dots */
.v3-slide-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.v3-slide-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 300ms ease;
}
.v3-slide-dot.is-active {
  background: #ffffff;
  width: 26px;
}
.v3-hero__badge {
  position: absolute;
  bottom: 32px;
  left: -28px;
  background: var(--v3-paper);
  padding: 18px 22px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 36px -16px rgba(74, 80, 49, 0.28);
  z-index: 2;
}
.v3-hero__badge-num {
  font-size: 38px;
  font-weight: 500;
  color: var(--v3-olive);
  letter-spacing: -0.04em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.v3-hero__badge strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--v3-ink);
}
.v3-hero__badge span {
  display: block;
  font-size: 12px;
  color: var(--v3-ink-muted);
}

/* hero pillars row */
.v3-hero__pillars { background: var(--v3-cream); border-top: 1px solid var(--v3-line); position: relative; z-index: 1; }
.v3-hero__pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.v3-pillar {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  color: var(--v3-ink);
}
.v3-pillar + .v3-pillar::before {
  content: "";
  position: absolute;
  left: 0; top: 28px; bottom: 28px;
  width: 1px;
  background: var(--v3-line);
}
.v3-pillar svg { color: var(--v3-olive); }
.v3-pillar strong {
  font-size: 17px;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: -0.015em;
}
.v3-pillar span {
  font-size: 13.5px;
  color: var(--v3-ink-muted);
  line-height: 1.55;
}

/* =====================================================================
   PROJETO — kept Acolhedor's quote card on photo
===================================================================== */
.v3-projeto { display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: center; }
.v3-projeto__media { position: relative; }
.v3-projeto__photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--v3-cream);
  box-shadow: 0 30px 60px -30px rgba(74, 80, 49, 0.3);
}
.v3-projeto__photo img { width: 100%; height: 100%; object-fit: cover; }
.v3-projeto__quote {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--v3-olive);
  color: var(--v3-paper);
  padding: 24px 28px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 340px;
  box-shadow: 0 24px 40px -16px rgba(74, 80, 49, 0.3);
}
.v3-projeto__quote p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
}
.v3-projeto__copy { padding-left: 16px; }
.v3-projeto__lead {
  font-size: 17px;
  color: var(--v3-ink-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.v3-projeto__list { display: grid; gap: 14px; }
.v3-projeto__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--v3-ink);
  line-height: 1.5;
}
.v3-projeto__list li > span {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--v3-olive);
  color: var(--v3-paper);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 500;
}

/* =====================================================================
   CUIDADOS — Acolhedor tabs
===================================================================== */
.v3-phase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}
.v3-phase-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--v3-paper);
  color: var(--v3-ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--v3-line);
  transition: all 220ms ease;
}
.v3-phase-tab__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--v3-cream);
  display: grid; place-items: center;
  color: var(--v3-olive);
  transition: all 220ms ease;
}
.v3-phase-tab:hover { border-color: var(--v3-olive); }
.v3-phase-tab.is-active { background: var(--v3-olive); color: var(--v3-paper); border-color: var(--v3-olive); }
.v3-phase-tab.is-active .v3-phase-tab__icon { background: rgba(255,255,255,0.2); color: var(--v3-paper); }

.v3-phase-panel { animation: v3FadeIn 360ms ease; }
@keyframes v3FadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.v3-phase-headline {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-align: center;
  max-width: 760px;
  width: 100%;
  margin: 0 auto 56px !important;
  color: var(--v3-ink);
}
.v3-phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.v3-phase-card {
  background: var(--v3-paper);
  padding: 34px 30px;
  border-radius: 20px;
  transition: all 280ms ease;
  border: 1px solid var(--v3-line);
}
.v3-phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px rgba(74, 80, 49, 0.18);
  border-color: transparent;
}
.v3-phase-card__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--v3-olive);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.v3-phase-card h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.v3-phase-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--v3-ink-muted);
}

/* =====================================================================
   JORNADA — Acolhedor cards 2x3
===================================================================== */
.v3-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.v3-timeline__item {
  background: var(--v3-paper);
  padding: 34px;
  border-radius: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 280ms ease;
  border: 1px solid var(--v3-line);
}
.v3-timeline__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -20px rgba(74,80,49,0.2);
  border-color: transparent;
}
.v3-timeline__num {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--v3-olive);
  color: var(--v3-paper);
  display: grid; place-items: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.v3-timeline__body h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.v3-timeline__body p {
  font-size: 14.5px;
  color: var(--v3-ink-muted);
  line-height: 1.6;
}

.v3-jornada-cta {
  margin-top: 60px;
  background: var(--v3-paper);
  border: 1px solid var(--v3-line);
  border-radius: 24px;
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.v3-jornada-cta p {
  font-size: 15px;
  color: var(--v3-ink);
  max-width: 600px;
  line-height: 1.6;
}

/* =====================================================================
   PARA QUEM
===================================================================== */
.v3-paraquem { display: grid; grid-template-columns: 1fr 1.2fr; gap: 88px; align-items: start; }
.v3-paraquem__head { padding-top: 8px; }
.v3-paraquem__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v3-paraquem__list li {
  background: var(--v3-paper);
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--v3-ink);
  line-height: 1.5;
  transition: all 220ms ease;
  border: 1px solid var(--v3-line);
}
.v3-paraquem__list li:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 28px -16px rgba(74,80,49,0.18);
  border-color: transparent;
}
.v3-paraquem__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--v3-olive);
  color: var(--v3-paper);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 500;
}

/* =====================================================================
   EQUIPE — circular portraits with stagger animation
===================================================================== */
.v3-team-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v3-olive);
  font-weight: 500;
  margin-bottom: 40px;
}
.v3-team-section-label--mt { margin-top: 80px; }
.v3-team-section-label > span { width: 32px; height: 1px; background: var(--v3-olive); }

.v3-team-grid { display: grid; gap: 32px; }
.v3-team-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 40px; }
.v3-team-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Stagger card entrance animation */
@keyframes v3CardIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.v3-team-card {
  text-align: center;
  animation: v3CardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.v3-team-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--v3-cream);
  margin-bottom: 24px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 320ms ease;
  box-shadow: 0 8px 24px -12px rgba(74, 80, 49, 0.18);
}
.v3-team-card.is-large .v3-team-card__photo { max-width: 240px; margin-inline: auto; }
.v3-team-card:not(.is-large) .v3-team-card__photo { max-width: 180px; margin-inline: auto; }
.v3-team-card:hover .v3-team-card__photo {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(74, 80, 49, 0.28);
}
.v3-team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.v3-team-card__ig-overlay { display: none; }

/* Role / specialty */
.v3-team-card__role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v3-olive);
  font-weight: 500;
  margin-bottom: 8px;
}
.v3-team-card__name {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.v3-team-card__cred {
  font-size: 12px;
  color: var(--v3-ink-muted);
  margin-bottom: 12px;
  text-align: center;
}
.v3-team-card__bio {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--v3-ink-muted);
  margin: 0 0 16px;
  padding: 0 12px;
  text-align: center;
}

/* Instagram handle with icon */
.v3-team-card__handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #6c6c44;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid rgba(108, 108, 68, 0.22);
  border-radius: 999px;
  transition: all 220ms ease;
  margin-top: 4px;
}
.v3-team-card__handle:hover {
  background: rgba(108, 108, 68, 0.08);
  border-color: #6c6c44;
}
/* Equipe multidisciplinar — uniform photo size */
#team-multi .v3-team-card__photo { max-width: 200px; margin-inline: auto; }
#team-multi .v3-team-card__cred  { text-align: center; }

/* =====================================================================
   FAQ
===================================================================== */
.v3-faq { display: grid; grid-template-columns: 1fr 1.4fr; gap: 88px; align-items: start; }
.v3-faq__list { display: grid; gap: 12px; }
.v3-faq__item {
  background: var(--v3-paper);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 300ms ease, border-color 300ms ease;
  border: 1px solid var(--v3-line);
}
.v3-faq__item.is-open { box-shadow: 0 16px 32px -16px rgba(74,80,49,0.2); border-color: transparent; }
.v3-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  text-align: left;
}
.v3-faq__qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--v3-ink);
  letter-spacing: -0.01em;
}
.v3-faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--v3-cream);
  color: var(--v3-olive);
  display: grid; place-items: center;
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}
/* CSS-only chevron arrow */
.v3-faq__icon::after {
  content: "";
  display: block;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.v3-faq__item.is-open .v3-faq__icon { background: var(--v3-olive); color: var(--v3-paper); }
.v3-faq__item.is-open .v3-faq__icon::after {
  transform: rotate(-135deg) translate(-1px, -2px);
}
/* Smooth expand/collapse using grid */
.v3-faq__a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms cubic-bezier(0.4, 0, 0.2, 1);
}
.v3-faq__item.is-open .v3-faq__a-wrap { grid-template-rows: 1fr; }
.v3-faq__a {
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--v3-ink-muted);
  padding: 0 26px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 300ms ease 60ms, transform 300ms ease 60ms;
}
.v3-faq__item.is-open .v3-faq__a {
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   CONTATO — minimal Sereno-style form
===================================================================== */
.v3-contato-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.v3-contato-info {
  background: var(--v3-cream);
  padding: 44px 38px;
  border-radius: 24px;
}
.v3-contato-info h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.v3-contato-info__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--v3-line);
}
.v3-contato-info__item:last-of-type { border-bottom: 0; }
.v3-contato-info__item strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v3-olive);
  font-weight: 500;
  margin-bottom: 6px;
}
.v3-contato-info__item span {
  font-size: 14.5px;
  color: var(--v3-ink);
  line-height: 1.5;
}

.v3-form {
  display: grid;
  gap: 26px;
}
.v3-form h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.v3-field { display: grid; gap: 10px; }
.v3-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.v3-field label {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v3-ink-muted);
  font-weight: 500;
}
.v3-field input, .v3-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid var(--v3-line);
  background: transparent;
  padding: 10px 0;
  font-size: 15.5px;
  color: var(--v3-ink);
  outline: none;
  font-family: inherit;
  border-radius: 0;
  transition: border-color 200ms ease;
}
.v3-field textarea { min-height: 80px; resize: vertical; }
.v3-field input:focus, .v3-field textarea:focus {
  border-color: var(--v3-olive);
}
.v3-field input::placeholder, .v3-field textarea::placeholder {
  color: rgba(116,113,95,0.55);
}
.v3-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.v3-chip {
  padding: 9px 18px;
  font-size: 13px;
  border: 1.5px solid var(--v3-line);
  border-radius: 999px;
  background: transparent;
  color: var(--v3-ink);
  transition: all 200ms ease;
}
.v3-chip:hover { border-color: var(--v3-olive); }
.v3-chip.is-active {
  background: var(--v3-olive);
  color: var(--v3-paper);
  border-color: var(--v3-olive);
}
.v3-form__lgpd {
  font-size: 11.5px;
  color: var(--v3-ink-muted);
  line-height: 1.5;
}

/* =====================================================================
   CTA FINAL
===================================================================== */
.v3-cta-final {
  background: var(--v3-olive);
  color: var(--v3-paper);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.v3-cta-final__blob {
  position: absolute;
  width: 800px;
  color: var(--v3-sand);
  opacity: 0.13;
  top: -200px;
  right: -200px;
}
.v3-cta-final__inner {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
}
.v3-cta-final__inner h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 12px 0 26px;
}
.v3-cta-final__inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 600px;
  margin-inline: auto;
}

/* =====================================================================
   FOOTER — Sereno structured
===================================================================== */
.v3-footer {
  background: var(--v3-paper);
  padding: 90px 0 44px;
  border-top: 1px solid var(--v3-line);
}
.v3-footer__top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--v3-line);
}
.v3-footer__logo-link { display: inline-block; }
.v3-footer__brand img { height: 64px; margin-bottom: 18px; }
.v3-footer__tribo-link { color: var(--v3-olive); text-decoration: underline; text-underline-offset: 3px; transition: color 200ms; }
.v3-footer__tribo-link:hover { color: var(--v3-olive-deep); }
.v3-footer__brand p {
  font-size: 14px;
  color: var(--v3-ink-muted);
  line-height: 1.6;
  max-width: 320px;
}
.v3-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.v3-footer__cols h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v3-olive);
  margin-bottom: 20px;
  font-weight: 500;
}
.v3-footer__cols a {
  display: block;
  font-size: 14px;
  color: var(--v3-ink);
  padding: 4px 0;
  line-height: 1.5;
}
.v3-footer__cols a:hover { color: var(--v3-olive); }
.v3-footer__legal { padding: 30px 0; border-bottom: 1px solid var(--v3-line); }
.v3-footer__legal p {
  font-size: 12px;
  color: var(--v3-ink-muted);
  line-height: 1.55;
  max-width: 800px;
}
.v3-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
  font-size: 12px;
  color: var(--v3-ink-muted);
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 18px 36px -10px rgba(37, 211, 102, 0.45); }
  60%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 18px 36px -10px rgba(37, 211, 102, 0.45); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 18px 36px -10px rgba(37, 211, 102, 0.45); }
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-5px); }
  60%       { transform: translateY(-2px); }
}
.v3-wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: grid;
  place-items: center;
  z-index: 60;
  animation: wa-pulse 2.8s ease-in-out infinite, wa-bounce 4s ease-in-out infinite 1.4s;
  transition: transform 200ms ease;
}
.v3-wa-float:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 24px 40px -8px rgba(37, 211, 102, 0.55);
}
.v3-wa-float svg { color: #ffffff; width: 30px; height: 30px; }

/* =====================================================================
   GALERIA — JS-driven infinite carousel
===================================================================== */
.v3-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 64px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.v3-carousel__track {
  display: flex;
  gap: 20px;
  will-change: transform;
  /* JS controls transform — no CSS animation */
}

.v3-carousel__slide {
  flex-shrink: 0;
  width: 320px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--v3-cream);
}
.v3-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 720px) {
  .v3-carousel__slide {
    width: calc(100vw - 80px);
    height: 300px;
  }
  .v3-carousel__track { gap: 16px; }
}

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

/* Global overflow guard — prevents horizontal scroll on mobile */
html, body { overflow-x: hidden; max-width: 100%; scroll-behavior: smooth; }
/* Scroll padding so anchor links land below the fixed header */
html { scroll-padding-top: 76px; }
.v3-root { overflow-x: hidden; }
/* Push main content down by header height so hero isn't hidden */
.v3-root > main { padding-top: 76px; }

@media (max-width: 1100px) {
  .v3-nav { display: none; }
  .v3-hamburger { display: flex; }
  .v3-mobile-nav { display: flex; }
  .v3-hero__grid,
  .v3-projeto,
  .v3-paraquem,
  .v3-faq,
  .v3-contato-grid { grid-template-columns: 1fr; gap: 56px; }
  .v3-hero__media { min-height: auto; }
  .v3-hero__photo { aspect-ratio: 4/3; border-radius: 28px; }
  .v3-hero__pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-pillar + .v3-pillar:nth-child(3)::before { display: none; }
  .v3-timeline { grid-template-columns: 1fr; }
  .v3-team-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .v3-team-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .v3-footer__top { grid-template-columns: 1fr; }
  .v3-section { padding: 96px 0; }
  .v3-projeto__copy { padding-left: 0; }
  /* Quote card: keep it inside the column, no negative right */
  .v3-projeto__quote { right: 0; bottom: -20px; }
  /* CTA row: stack on narrow */
  .v3-jornada-cta { flex-direction: column; align-items: flex-start; padding: 30px 28px; }
}

@media (max-width: 720px) {
  .v3-container { width: min(100% - 32px, 1240px); }
  .v3-section { padding: 72px 0; }
  .v3-section-head { margin-bottom: 48px; }

  /* Hero blobs overflow fix */
  .v3-hero__blob, .v3-cta-final__blob { display: none; }
  .v3-hero__grid { gap: 36px; }

  .v3-hero__pillars-grid { grid-template-columns: 1fr; }
  .v3-pillar + .v3-pillar::before { display: none; }
  .v3-pillar { border-bottom: 1px solid var(--v3-line); }

  /* Para quem list */
  .v3-paraquem__list { grid-template-columns: 1fr; }

  /* Teams */
  .v3-team-grid--3, .v3-team-grid--4 { grid-template-columns: 1fr 1fr; gap: 20px; }
  /* Equipe multidisciplinar — 1 coluna no mobile para evitar overflow */
  #team-multi { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }

  /* Jornada */
  .v3-jornada-cta { flex-direction: column; align-items: flex-start; padding: 24px 20px; gap: 20px; }

  /* Form */
  .v3-contato-info { padding: 30px 24px; }
  .v3-field-row { grid-template-columns: 1fr; }

  /* Footer */
  .v3-footer__cols { grid-template-columns: 1fr 1fr; }
  .v3-footer__brand img { height: 52px; }

  /* Hero */
  .v3-hero__title { font-size: 40px; }
  .v3-hero__badge { left: 0; }

  /* Header compact */
  .v3-header__inner { padding: 10px 0; }
  .v3-brand img { height: 34px; }
  .v3-nav { font-size: 13px; gap: 18px; display: none; }
  /* Adjust main offset for smaller mobile header (~54px) */
  html { scroll-padding-top: 54px; }
  .v3-root > main { padding-top: 54px; }

  /* Phase tabs — 2-column grid, clearly clickable */
  .v3-phase-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
  }
  .v3-phase-tab {
    justify-content: center;
    padding: 14px 10px;
    font-size: 13px;
    white-space: normal;
    text-align: center;
    border: 1.5px solid var(--v3-line);
  }
  .v3-phase-tab.is-active {
    border-color: var(--v3-olive);
  }

  /* Quote card doesn't overflow column */
  .v3-projeto__quote { position: relative; right: auto; bottom: auto; margin-top: 20px; max-width: 100%; }

  /* WA float smaller on mobile */
  .v3-wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .v3-wa-float svg { width: 26px; height: 26px; }
}
