/* ═══════════════════════════════════════════
   SECTIONS — Hero, Trust Bar, Para Quem,
   Diferenciais, Serviços, Caso Real,
   Sobre, Parcerias, Depoimentos, Contato
   ═══════════════════════════════════════════ */

/* ════════════════════
   1. HERO
   ════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--teal);
  display: flex;
  align-items: center;
  padding: 100px var(--pad-safe) 80px;
  position: relative;
  overflow: hidden;
}

/* Large "M" watermark — brand presence, not content */
.hero__bg-mark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(340px, 40vw, 600px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

/* Decorative rings */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__ring--1 {
  width: 540px;
  height: 540px;
  top: -200px;
  right: 8%;
  border: 1px solid rgba(155, 86, 54, 0.11);
}
.hero__ring--2 {
  width: 360px;
  height: 360px;
  bottom: -130px;
  left: 4%;
  border: 1px solid rgba(155, 86, 54, 0.07);
}

.hero__content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

/* Hero photo panel */
.hero__photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
}
.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 55%;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(22, 46, 46, 0) 100%);
  z-index: 2;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 46, 46, 0.18);
  z-index: 1;
}
.hero__photo img {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 26px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  color: var(--beige);
}

.hero__subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 238, 235, 0.65);
  max-width: 480px;
  margin-bottom: 16px;
}

.hero__urgency {
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(155, 86, 54, 0.85);
  margin-bottom: 44px;
  padding-left: 14px;
  border-left: 2px solid rgba(155, 86, 54, 0.4);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ════════════════════
   2. TRUST BAR
   ════════════════════ */
#trust-bar {
  background: var(--beige);
  border-bottom: 1px solid rgba(22, 46, 46, 0.07);
}

.trust-bar__inner {
  padding: 20px var(--pad-safe);
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.trust-bar__label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(22, 46, 46, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 32px;
  background: rgba(22, 46, 46, 0.12);
  flex-shrink: 0;
}

.trust-bar__list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-bar__partner {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.trust-bar__partner strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.01em;
}
.trust-bar__partner span {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 3px;
}

.trust-bar__sep {
  width: 1px;
  height: 28px;
  background: rgba(22, 46, 46, 0.1);
  flex-shrink: 0;
}

/* ════════════════════
   3. PARA QUEM
   ════════════════════ */
#para-quem {
  background: var(--warm);
}

.para-quem__header {
  margin-bottom: 52px;
  max-width: 560px;
}
.para-quem__header .s-title {
  margin-top: 0;
}

.para-quem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--beige);
}

.pq-card {
  background: var(--warm);
  padding: 44px 38px;
  border-top: 2px solid transparent;
  transition: border-color 0.25s ease, background 0.2s ease;
  position: relative;
}
.pq-card:hover {
  border-color: var(--copper);
  background: #faf4f1;
}

/* Médicos card is always active — primary audience */
.pq-card--featured {
  border-top-color: var(--copper);
}

.pq-card__icon {
  width: 36px;
  height: 36px;
  color: var(--copper);
  margin-bottom: 22px;
  stroke: currentColor;
}

.pq-card__title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 18px;
  line-height: 1.2;
}

.pq-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.pq-card__list li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.pq-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--copper);
}

.pq-card__cta {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.pq-card__cta::after {
  content: '→';
  font-size: 12px;
}
.pq-card__cta:hover { gap: 10px; }

/* ════════════════════
   4. DIFERENCIAIS
   ════════════════════ */
#diferenciais {
  background: var(--beige);
}

.diferenciais__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.diferenciais__header-note {
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.dif-item {
  padding: 36px 32px 36px 0;
  border-top: 1px solid rgba(22, 46, 46, 0.1);
  position: relative;
}
.dif-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--copper);
  transition: width 0.4s var(--ease);
}
.dif-item:hover::before { width: 44px; }

.dif-item__num {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--copper);
  margin-bottom: 16px;
  opacity: 0.8;
}

.dif-item__title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
  line-height: 1.25;
}

.dif-item__text {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-mid);
}

/* ════════════════════
   5. SERVIÇOS
   ════════════════════ */
#servicos {
  background: var(--warm);
}

.servicos__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}
.servicos__header-note {
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--beige);
}

.sv-card {
  background: var(--warm);
  padding: 44px 38px;
  transition: background 0.2s ease;
}
.sv-card:hover { background: #faf4f1; }

.sv-card--featured {
  background: var(--teal);
}
.sv-card--featured:hover { background: var(--teal-mid); }

.sv-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.sv-card--featured .sv-card__tag { color: rgba(155, 86, 54, 0.9); }

.sv-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px;
  line-height: 1.2;
}
.sv-card--featured .sv-card__title { color: var(--warm); }

.sv-card__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sv-card__list li {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.sv-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 1px;
  background: var(--copper);
}
.sv-card--featured .sv-card__list li { color: rgba(245, 238, 235, 0.65); }
.sv-card--featured .sv-card__list li::before { background: var(--copper); }

/* ════════════════════
   7. SOBRE
   ════════════════════ */
#sobre {
  background: var(--beige-l);
}

.sobre__header {
  max-width: 560px;
  margin-bottom: 64px;
}
.sobre__header p {
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-mid);
  margin-top: 18px;
}

.socios__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.socio-card {
  background: var(--warm);
  overflow: hidden;
}

.socio-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.socio-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.socio-card:hover .socio-card__photo img {
  transform: scale(1.04);
}

.socio-card__body {
  padding: 36px 40px 42px;
}

.socio-card__role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

.socio-card__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}

.socio-card__bio {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.socio-card__creds {
  border-top: 1px solid var(--beige);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.socio-card__creds li {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.socio-card__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 1px;
  background: var(--copper);
}

/* ════════════════════
   8. PARCERIAS
   ════════════════════ */
#parcerias {
  background: var(--warm);
  border-top: 1px solid var(--beige);
}

.parcerias__header {
  max-width: 600px;
  margin-bottom: 52px;
}
.parcerias__header .s-title {
  margin-bottom: 14px;
}
.parcerias__intro {
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-top: 14px;
}

.parcerias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--beige);
}

.parceiro-card {
  background: var(--warm);
  padding: 40px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.25s ease, background 0.2s ease;
}
.parceiro-card:hover {
  border-color: var(--copper);
  background: #faf4f1;
}

.parceiro-card__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
  line-height: 1.2;
}
.parceiro-card__sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.parceiro-card__desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-mid);
}

/* ════════════════════
   9. DEPOIMENTOS
   ════════════════════ */
#depoimentos {
  background: var(--beige);
}

.depoimentos__header {
  margin-bottom: 52px;
}

.dep__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dep-card {
  background: var(--warm);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.dep-card__result {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
  padding-left: 10px;
  border-left: 2px solid var(--copper);
}

.dep-card__mark {
  font-family: var(--serif);
  font-size: 52px;
  color: var(--copper);
  line-height: 0.7;
  margin-bottom: 16px;
  opacity: 0.45;
  user-select: none;
}

.dep-card__text {
  font-family: var(--serif);
  font-size: 15.5px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
  color: var(--teal);
  flex: 1;
  margin-bottom: 28px;
}

.dep-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-card__initial {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--beige);
  border: 1px solid rgba(155, 86, 54, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.dep-card__name {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--teal);
}
.dep-card__role {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--text-mid);
}

/* ════════════════════
   10. CONTATO
   ════════════════════ */
#contato {
  background: var(--teal);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato__left .s-label { color: var(--copper); }
.contato__left .s-title {
  color: var(--warm);
  margin-bottom: 20px;
}
.contato__left > p {
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.82;
  color: rgba(245, 238, 235, 0.62);
  margin-bottom: 36px;
}

.contato__info {
  margin-top: 4px;
}

.ci {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 238, 235, 0.07);
}
.ci:first-child {
  border-top: 1px solid rgba(245, 238, 235, 0.07);
}

.ci__label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 238, 235, 0.3);
  min-width: 68px;
  padding-top: 2px;
  flex-shrink: 0;
}

.ci__value {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(245, 238, 235, 0.72);
  line-height: 1.65;
}
.ci__value a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.ci__value a:hover { color: var(--warm); }

/* ════════════════════
   11. FAQ
   ════════════════════ */
#faq {
  background: var(--beige-l);
}

.faq__header {
  max-width: 560px;
  margin-bottom: 52px;
}

.faq__list {
  max-width: 800px;
}

.faq__item {
  border-top: 1px solid rgba(22, 46, 46, 0.1);
}
.faq__item:last-child {
  border-bottom: 1px solid rgba(22, 46, 46, 0.1);
}

.faq__question {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s ease;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 24px;
  font-family: var(--sans);
  font-weight: 200;
  color: var(--copper);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}
.faq__question:hover { color: var(--copper); }

.faq__answer {
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-mid);
  padding-bottom: 28px;
  max-width: 660px;
}

/* ════════════════════
   RESPONSIVE
   ════════════════════ */
@media (max-width: 1100px) {
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 40px; }
}

@media (max-width: 960px) {
  :root { --pad-x: 28px; }
  .section { padding: var(--sp-xl) var(--pad-x); }

  #hero { padding: 96px var(--pad-x) 72px; }
  #trust-bar .trust-bar__inner { padding: 16px var(--pad-x); }

  .hero__photo { display: none; }
  .hero__content { max-width: 100%; }

  .para-quem__grid { grid-template-columns: 1fr; gap: 2px; }
  .diferenciais__header { grid-template-columns: 1fr; gap: 12px; }
  .servicos__header { grid-template-columns: 1fr; gap: 12px; }
  .servicos__grid { grid-template-columns: 1fr 1fr; }
  .socios__grid { grid-template-columns: 1fr; }
  .dep__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contato__grid { grid-template-columns: 1fr; gap: 48px; }
  .parcerias__grid { grid-template-columns: 1fr; gap: 2px; }
  .trust-bar__list { gap: 16px; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; }
  .section { padding: 72px var(--pad-x); }

  #hero { padding: 88px var(--pad-x) 64px; }
  .hero__title { font-size: clamp(32px, 8vw, 48px); }

  .servicos__grid { grid-template-columns: 1fr; }
  .dep__grid { grid-template-columns: 1fr; }

  .parcerias__divider { display: none; }
  .parcerias__list { gap: 28px; }
}

/* ════════════════════
   INSTAGRAM PEEK CAROUSEL
   ════════════════════ */
#conteudo {
  background: var(--teal);
  padding: var(--sp-2xl) 0;
  overflow: hidden;
}

.ig-header {
  padding: 0 var(--pad-safe) var(--sp-lg);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.ig-handle-link {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 238, 235, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 4px;
}
.ig-handle-link:hover { color: var(--copper); }

.ig-viewport {
  overflow: hidden;
  position: relative;
  width: min(100%, var(--site-max));
  margin: 0 auto;
}

.ig-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.ig-card {
  flex: 0 0 calc(44% - 10px);
  max-width: 610px;
  background: var(--warm);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0.4;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ig-card.active {
  opacity: 1;
  transform: scale(1);
}

.ig-card__img {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  text-decoration: none;
}

.ig-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ig-card.active .ig-card__img img {
  transform: scale(1.03);
}

.ig-card__body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ig-card__tag {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.ig-card__caption {
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
  flex: 1;
}

.ig-card__link {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--copper);
  transition: opacity 0.2s;
  margin-top: 6px;
}
.ig-card__link:hover { opacity: 0.7; }

.ig-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 2rem var(--pad-safe) var(--sp-xl);
}

.ig-arrow {
  background: none;
  border: 1px solid rgba(245, 238, 235, 0.2);
  color: var(--warm);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.ig-arrow:hover {
  border-color: var(--copper);
  background: rgba(155, 86, 54, 0.15);
}

.ig-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ig-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 238, 235, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}
.ig-dot.active {
  background: var(--copper);
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 960px) {
  .ig-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ig-card { flex: 0 0 calc(68% - 10px); opacity: 0.55; }
}

@media (max-width: 640px) {
  .ig-card { flex: 0 0 calc(82% - 10px); }
  .ig-card__body { padding: 20px; }
}

/* ════════════════════
   STATS STRIP (Hero)
   ════════════════════ */
.stats-strip {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--copper);
  font-family: var(--serif);
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
  color: var(--warm);
}

@media (max-width: 768px) {
  .stats-strip { flex-wrap: wrap; gap: 1rem; }
  .stat-item { flex: 1 1 40%; }
}

/* ════════════════════
   PARA QUEM — stat + badge
   ════════════════════ */
.pq-stat {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--copper);
  margin: 0.5rem 0;
}

.pq-badge {
  display: inline-block;
  background: var(--copper);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

/* ════════════════════
   SERVICE TABS
   ════════════════════ */
.sv-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sv-tab {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--teal);
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal);
  transition: background 0.2s ease, color 0.2s ease;
}

.sv-tab.active {
  background: var(--teal);
  color: var(--warm);
}

.sv-tab:hover:not(.active) {
  background: rgba(22, 46, 46, 0.07);
}

.sv-panel {
  display: none;
}

.sv-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .sv-tabs { flex-direction: column; }
  .sv-tab { width: 100%; text-align: center; }
}

/* ════════════════════
   PARCERIAS — context
   ════════════════════ */
.parceiros-context {
  font-size: var(--t-sm);
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 600px;
}
