/* Turbo Partners — LP Creators */
/* Non-critical CSS (loaded async). Tokens are inlined in index.html <head>. */

/* ───────────────── utilities ───────────────── */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


.text-gradient-accent {
  background: var(--gradient-text-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-primary {
  background: var(--gradient-text-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.icon {
  display: inline-flex;
  width: 1.25rem; height: 1.25rem;
  flex-shrink: 0;
  color: currentColor;
  vertical-align: middle;
}
.icon svg, .icon use {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--sm { width: 1rem;   height: 1rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
.icon--xl { width: 2rem;   height: 2rem; }
.icon--accent  { color: var(--accent); }
.icon--primary { color: var(--primary); }
.icon--muted   { color: var(--muted-foreground); }

/* ───────────────── buttons (non-critical variants) ───────────────── */

.btn--secondary {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn--secondary:hover { background: var(--secondary); border-color: var(--muted); }

.btn--accent {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn--accent:hover { filter: brightness(1.08); }

/* ───────────────── section base ───────────────── */

.section { padding-block: var(--space-8); }
@media (min-width: 768px) { .section { padding-block: var(--space-16); } }

.section__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--space-8);
}
@media (min-width: 768px) {
  .section__header { margin-bottom: var(--space-12); }
}
.section__eyebrow {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-3);
}
.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  margin-bottom: var(--space-4);
}
.section__lead {
  color: var(--muted-foreground);
  font-size: var(--fs-md);
  line-height: 1.55;
  text-align: center;
}
@media (min-width: 768px) {
  .section__lead { font-size: var(--fs-lg); }
}

.section-cta {
  margin-top: var(--space-8);
  text-align: center;
}
@media (min-width: 768px) {
  .section-cta { margin-top: var(--space-12); }
}

/* ───────────────── site header ───────────────── */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: var(--space-4) 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--foreground);
}
.site-header__logo img { height: 1.75rem; width: auto; }

/* ───────────────── 2. social proof bar ───────────────── */

.social-proof {
  /* barra de logos — padding menor que seção padrão é deliberado */
  padding-block: var(--space-8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
@media (min-width: 768px) {
  .social-proof { padding-block: var(--space-16); }
}
.social-proof__text {
  text-align: center;
  font-size: var(--fs-body);
  color: var(--muted-foreground);
  margin-bottom: var(--space-8);
  max-width: 22rem;
  margin-inline: auto;
  padding-inline: var(--space-6);
  text-wrap: balance;
  line-height: 1.5;
}
.social-proof__number {
  color: var(--foreground);
  font-family: var(--font-heading);
  font-weight: 700;
}
.social-proof__carousel {
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.social-proof__track {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  width: max-content;
  animation: logo-scroll 25s linear infinite;
  opacity: 0.65;
}
.social-proof__track img {
  height: 1.5rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .social-proof__track { animation: none; overflow-x: auto; flex-wrap: wrap; justify-content: center; }
}
@media (min-width: 768px) {
  .social-proof__track img { height: 2rem; max-width: 9rem; }
}

/* ───────────────── 3. creators pitch ───────────────── */

.creators-pitch__stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "eyebrow    eyebrow"
    "title      title"
    "sub        sub"
    "phone-left phone-right"
    "cta        cta";
  gap: 0 var(--space-4);
  align-items: center;
  justify-items: center;
  text-align: center;
}
.creators-pitch__copy {
  display: contents;
}
.creators-pitch__copy > .section__eyebrow { grid-area: eyebrow; }
.creators-pitch__copy > .creators-pitch__title { grid-area: title; }
.creators-pitch__copy > .creators-pitch__sub { grid-area: sub; max-width: 44rem; }
.creators-pitch__copy > .btn { grid-area: cta; margin-top: var(--space-6); }

.creators-pitch__phone {
  position: relative;
  display: flex;
  margin: 0;
  width: 100%;
  max-width: 11.5rem;
  aspect-ratio: 9 / 19;
  padding: 0.375rem;
  background: #0c0c12;
  border: 1px solid color-mix(in srgb, var(--border) 80%, black);
  border-radius: 1.75rem;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--foreground) 6%, transparent) inset,
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 12px 32px -8px rgba(0, 0, 0, 0.55);
}
.creators-pitch__phone--left  {
  grid-area: phone-left;
  justify-self: end;
  transform: rotate(-6deg);
}
.creators-pitch__phone--right {
  grid-area: phone-right;
  justify-self: start;
  transform: rotate(6deg);
}

/* Mockup de feed do Instagram — dark mode */
.insta-mockup {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  border-radius: 1.35rem;
  overflow: hidden;
  color: #fafafa;
  font-family: var(--font-body);
}

.insta-mockup__header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem;
  border-bottom: 1px solid #1c1c1c;
  flex-shrink: 0;
}
.insta-mockup__avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: var(--radius-full);
  padding: 1.5px;
  background:
    conic-gradient(from 225deg,
      #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  flex-shrink: 0;
}
.insta-mockup__avatar::before {
  content: attr(data-letter);
  position: absolute;
  inset: 1.5px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: #1c1c1c;
  color: #fafafa;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  font-weight: 700;
  z-index: 0;
}
.insta-mockup__avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  object-fit: cover;
  display: block;
}
.insta-mockup__user {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #fafafa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 1 auto;
  min-width: 0;
}
.insta-mockup__verified {
  width: 0.5625rem;
  height: 0.5625rem;
  flex-shrink: 0;
  margin-left: 0.1875rem;
  margin-right: auto;
}
.insta-mockup__dots {
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  color: #fafafa;
  flex-shrink: 0;
}

.insta-mockup__media {
  position: relative;
  flex: 1 1 auto;
  background: #000;
  overflow: hidden;
  min-height: 0;
}
.insta-mockup__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insta-mockup__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem 0.25rem;
  flex-shrink: 0;
}
.insta-mockup__action {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
}
.insta-mockup__count {
  font-size: 0.4375rem;
  font-weight: 600;
  color: #fafafa;
  line-height: 1;
}
.insta-mockup__icon {
  width: 0.8125rem;
  height: 0.8125rem;
  color: #fafafa;
  flex-shrink: 0;
}
.insta-mockup__icon--end { margin-left: auto; }

.insta-mockup__meta {
  padding: 0 0.5rem 0.5rem;
  flex-shrink: 0;
  font-size: 0.4375rem;
  line-height: 1.35;
  color: #fafafa;
}
.insta-mockup__meta p { margin: 0; }
.insta-mockup__likes {
  font-weight: 700;
  margin-bottom: 0.125rem;
}
.insta-mockup__caption {
  font-weight: 400;
  color: #d0d0d0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.insta-mockup__caption strong {
  font-weight: 700;
  color: #fafafa;
  margin-right: 0.1875rem;
}
.insta-mockup__comments {
  margin-top: 0.125rem;
  color: #737373;
}

@media (prefers-reduced-motion: reduce) {
  .creators-pitch__phone--left,
  .creators-pitch__phone--right { transform: none; }
}

.creators-pitch__features {
  list-style: none;
  margin: var(--space-16) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  height: 100%;
  text-align: center;
}

.creators-pitch__cta--mobile {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
}
@media (min-width: 1024px) {
  .creators-pitch__cta--mobile { display: none; }
}
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
}
.feature-card__icon .icon {
  width: 1.125rem;
  height: 1.125rem;
}
.feature-card__text {
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.625rem;
  line-height: 1.45;
  text-align: center;
}
.creators-pitch__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
  max-width: 18ch;
}
.creators-pitch__rotator {
  display: inline-block;
  min-width: 6ch;
  white-space: nowrap;
}
.creators-pitch__rotator::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.85em;
  background: var(--accent, #39b385);
  margin-left: 0.06em;
  vertical-align: -0.08em;
  animation: creatorsCaret 0.9s steps(2, start) infinite;
}
@keyframes creatorsCaret { to { opacity: 0; } }
.creators-pitch__sub {
  color: var(--muted-foreground);
  font-size: var(--fs-lg);
  line-height: 1.55;
  max-width: 42ch;
  margin-bottom: var(--space-6);
}
/* Insta proof — 2 cards estilo feed + medalha 5× */
.insta-proof {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
  width: 100%;
  max-width: 24rem;
  margin-inline: auto;
  padding-right: var(--space-10);
}
.insta-post {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.65);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--foreground);
  text-align: left;
  isolation: isolate;
}
.insta-post--a { transform: rotate(-4deg); }
.insta-post--b { transform: rotate(5deg) translateY(1rem); }
.insta-post__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
}
.insta-post__avatar {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  flex-shrink: 0;
}
.insta-post__user { display: flex; flex-direction: column; line-height: 1.15; }
.insta-post__name { font-weight: 600; font-size: 0.75rem; color: var(--foreground); }
.insta-post__sub { font-size: 0.625rem; color: var(--muted-foreground); }
.insta-post__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #000;
}
.insta-post__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insta-post__actions {
  display: flex;
  gap: 0.625rem;
  padding: 0.625rem;
  color: var(--foreground);
}
.insta-post__actions .icon { width: 1rem; height: 1rem; }
.insta-post__caption {
  padding: 0 0.625rem 0.75rem;
  font-size: 0.625rem;
  line-height: 1.4;
  color: var(--muted-foreground);
  margin: 0;
}
.insta-post__caption strong {
  color: var(--foreground);
  font-weight: 600;
  margin-right: 0.25rem;
}

.insta-proof__medal {
  position: absolute;
  right: -0.5rem;
  bottom: 1.5rem;
  width: 5rem;
  height: 5rem;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.55));
  z-index: 2;
}
.insta-proof__medal-bg {
  fill: var(--primary);
  stroke: color-mix(in srgb, var(--primary) 60%, white);
  stroke-width: 2;
}
.insta-proof__medal-ring {
  fill: none;
  stroke: color-mix(in srgb, white 55%, transparent);
  stroke-width: 1;
  stroke-dasharray: 2 3;
}
.insta-proof__medal-radial {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 2px;
  fill: var(--primary-foreground);
  text-transform: uppercase;
}
.insta-proof__medal-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  fill: var(--primary-foreground);
  letter-spacing: -1px;
}

@media (min-width: 1024px) {
  .insta-proof {
    max-width: 28rem;
    padding-right: var(--space-12);
  }
  .insta-proof__medal {
    width: 6rem;
    height: 6rem;
    right: 0;
    bottom: 2rem;
  }
  .insta-proof__medal-number { font-size: 44px; }
}

@media (min-width: 768px) {
  .creators-pitch__features { gap: var(--space-6); }
}

@media (min-width: 1024px) {
  .creators-pitch__stage {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "phone-left copy   phone-right";
    gap: var(--space-12);
    align-items: center;
    text-align: unset;
  }
  .creators-pitch__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 44rem;
    grid-area: copy;
  }
  .creators-pitch__copy > .section__eyebrow,
  .creators-pitch__copy > .creators-pitch__title,
  .creators-pitch__copy > .creators-pitch__sub,
  .creators-pitch__copy > .btn { grid-area: auto; }
  .creators-pitch__copy > .creators-pitch__sub { max-width: none; }
  .creators-pitch__phone { max-width: 12.5rem; }
  .creators-pitch__title {
    font-size: var(--fs-h1);
    max-width: 22ch;
  }
  .creators-pitch__features {
    grid-template-columns: repeat(4, 1fr);
    margin-top: var(--space-24);
    gap: var(--space-6);
  }
  .feature-card__text {
    font-size: 0.75rem;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creators-pitch__rotator::after { animation: none; opacity: 0; }
}

/* ───────────────── 4. diferenciais (tabs de UGC + teste A/B) ───────────────── */

.ab-test {
  max-width: 48rem;
  margin: 0 auto var(--space-8);
  text-align: center;
}
@media (min-width: 768px) {
  .ab-test { margin-bottom: var(--space-12); }
}
.ab-test__head {
  margin-bottom: var(--space-4);
}
.ab-test__head .section__eyebrow,
.ab-test__head .section__title,
.ab-test__head .section__lead {
  text-align: center;
}
.ab-test__body {
  margin-top: var(--space-8);
}
.ab-test__cta {
  margin-top: var(--space-6);
}
.ab-test__compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  max-width: 22rem;
  margin-inline: auto;
  padding-top: var(--space-12);
}
@media (min-width: 1024px) {
  .ab-test {
    max-width: 72rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "head    compare"
      "body    compare";
    align-items: start;
    column-gap: var(--space-12);
    row-gap: var(--space-8);
    text-align: left;
  }
  .ab-test__head {
    grid-area: head;
    margin-bottom: 0;
    max-width: 34rem;
    align-self: end;
  }
  .ab-test__body {
    grid-area: body;
    margin-top: 0;
    max-width: 34rem;
    align-self: start;
  }
  .ab-test__compare {
    grid-area: compare;
    max-width: 26rem;
    gap: var(--space-6);
    padding-top: var(--space-16);
    margin-inline: 0;
  }
  .ab-test__head .section__eyebrow,
  .ab-test__head .section__title,
  .ab-test__head .section__lead {
    text-align: left;
  }
}
.ab-test__phone {
  position: relative;
  aspect-ratio: 9 / 16;
  margin: 0;
  align-self: start;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-glow), 0 20px 60px rgba(0, 0, 0, 0.4);
}
.ab-test__phone--b { margin-top: var(--space-4); }
.ab-test__phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.ab-test__badge {
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-md);
  color: #fff;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.ab-test__badge--a {
  top: -3.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
}
.ab-test__badge--b {
  top: -3.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
}
.ab-test__badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2.5rem;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  opacity: 0.85;
  pointer-events: none;
}
.ab-test__badge--a::after {
  left: 100%;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-top-right-radius: 0.75rem;
}
.ab-test__badge--b::after {
  right: 100%;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  border-top-left-radius: 0.75rem;
}
.ab-test__badge::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  pointer-events: none;
}
.ab-test__badge--a::before {
  top: calc(50% + 2.5rem);
  left: calc(100% + 2rem);
  transform: translate(-50%, -50%);
  background: var(--accent);
}
.ab-test__badge--b::before {
  top: calc(50% + 2.5rem);
  right: calc(100% + 2rem);
  transform: translate(50%, -50%);
  background: var(--primary);
}


.diferenciais { content-visibility: auto; contain-intrinsic-size: 0 900px; }

.diferenciais__intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-12);
}
.diferenciais__intro .section__lead {
  margin-top: var(--space-6);
  color: var(--muted-foreground);
  font-size: var(--fs-lg);
  line-height: 1.55;
}

/* Divisor visual + sub-header do cardápio */
.diferenciais__menu-header {
  max-width: 42rem;
  margin: var(--space-12) auto var(--space-12);
  padding-top: var(--space-8);
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.diferenciais__menu-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  letter-spacing: -0.02em;
  margin-top: var(--space-3);
}

/* Grid de tipos de UGC */
.ugc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .ugc-grid { gap: var(--space-6); }
}
@media (min-width: 1024px) {
  .ugc-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}

.ugc-grid__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.ugc-grid__media {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glow), 0 20px 60px rgba(0, 0, 0, 0.4);
}
.ugc-grid__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ugc-grid__brand {
  position: absolute;
  top: .5rem;
  right: .5rem;
  padding: .25rem .5rem;
  background: rgba(255, 255, 255, .95);
  color: #09090f;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}
.ugc-grid__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem .75rem .625rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  background: linear-gradient(to top, rgba(9, 9, 15, .95) 35%, rgba(9, 9, 15, 0));
  color: #fff;
  z-index: 2;
  pointer-events: none;
}
.ugc-grid__stats {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.15;
}
.ugc-grid__sep { opacity: .45; font-weight: 400; }
.ugc-grid__roas { color: var(--accent); }

.ugc-grid__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  height: 2.75rem;
}
@media (min-width: 1024px) {
  .ugc-grid__label { font-size: 0.75rem; }
}

/* ───────────────── 6. cases ───────────────── */

.cases__carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-inline: calc(-1 * 1.5rem);
  padding: var(--space-2) 1.5rem var(--space-4);
  scroll-behavior: smooth;
}
.cases__carousel::-webkit-scrollbar { display: none; }
.cases__carousel:focus-visible { outline: 2px solid var(--ring); outline-offset: 4px; border-radius: var(--radius); }

.cases__track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  margin: 0;
  padding: 0;
}

.cases__dots {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-6);
}
.cases__dot {
  width: .5rem; height: .5rem;
  border-radius: var(--radius-full);
  background: var(--muted-foreground);
  opacity: .35;
  border: 0; padding: 0; cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), width var(--dur-med) var(--ease-out);
}
.cases__dot[aria-current="true"] {
  opacity: 1;
  background: var(--primary);
  width: 1.5rem;
}

@media (min-width: 1024px) {
  .cases__track { gap: var(--space-6); }
}

.case-card {
  position: relative;
  flex: 0 0 auto;
  width: 11rem;
  aspect-ratio: 9 / 16;
  scroll-snap-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
@media (min-width: 768px)  { .case-card { width: 12rem; } }
@media (min-width: 1024px) { .case-card { width: 13rem; } }
.case-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
}
.case-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--background);
}
.case-card {
  font-family: var(--font-body);
  color: var(--primary-foreground);
  isolation: isolate;
}
.case-card__brand {
  position: absolute;
  top: .8em;
  right: .8em;
  padding: .4em .75em;
  background: rgba(255, 255, 255, .95);
  color: var(--background);
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  border-radius: var(--radius-full);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}
.case-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* valores em em — escalam junto com a tipografia do card, deliberado */
  padding: 2.5em 1em 1em;
  display: flex;
  flex-direction: column;
  gap: .2em;
  text-align: left;
  background: linear-gradient(to top, color-mix(in srgb, var(--background) 95%, transparent) 35%, transparent);
  font-size: .8125rem;
  z-index: 2;
  pointer-events: none;
}
.case-card__creator {
  font-weight: 500;
  line-height: 1.15;
  color: rgba(255, 255, 255, .82);
  letter-spacing: -0.005em;
}
.case-card__stats {
  display: flex;
  align-items: center;
  gap: .45em;
  font-weight: 600;
  line-height: 1.15;
}
.case-card__sep { opacity: .45; font-weight: 400; }
.case-card__views { color: var(--primary-foreground); }
.case-card__roas { color: var(--accent); }

/* ───────────────── 7. como funciona ───────────────── */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  /* gap maior — acomoda a linha pontilhada entre os steps no desktop */
  gap: var(--space-12);
  max-width: 64rem;
  margin-inline: auto;
  padding: 0;
}
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  text-align: center;
  padding: 0 var(--space-4);
}
.step__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 3.5rem; height: 3.5rem;
  align-items: center; justify-content: center;
  background: var(--background);
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 55%, var(--border));
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--primary) 10%, transparent);
}
.step__icon .icon {
  width: 1.375rem;
  height: 1.375rem;
}
@media (min-width: 1024px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.75rem;
    left: calc(50% + 2rem);
    width: calc(100% - 4rem + var(--space-12));
    height: 1px;
    background: linear-gradient(to right, color-mix(in srgb, var(--primary) 55%, transparent), color-mix(in srgb, var(--primary) 14%, transparent));
    pointer-events: none;
  }
}
.step__label {
  display: block;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.step__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.step__desc {
  color: var(--muted-foreground);
  font-size: var(--fs-md);
  line-height: 1.6;
  max-width: 28ch;
  margin-inline: auto;
}

/* ───────────────── 8. o que recebe ───────────────── */

.recebe__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}
.recebe-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-6);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (min-width: 768px) {
  .recebe-item {
    flex-direction: row;
    align-items: center;
    padding: var(--space-8);
    gap: var(--space-12);
    min-height: 18rem;
  }
  .recebe-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.recebe-item__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 60%, transparent);
  color: var(--muted-foreground);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: var(--space-4);
  width: fit-content;
}
.recebe-item__media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #14141c 0%, #0c0c12 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .recebe-item__media {
    width: 50%;
    max-width: 32rem;
    aspect-ratio: 4 / 3;
    align-self: center;
    min-height: 0;
  }
}
.recebe-item__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 25%, color-mix(in srgb, var(--primary) 20%, transparent), transparent 60%),
    radial-gradient(ellipse at 70% 75%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.recebe-item__media--video::before {
  display: none;
}
.recebe-item__media > svg,
.recebe-item__media > .icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  padding: var(--space-5);
  color: var(--foreground);
  background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 35%, var(--card)) 0%, color-mix(in srgb, var(--accent) 22%, var(--card)) 100%);
  border: 1px solid color-mix(in srgb, var(--primary) 45%, var(--border));
  border-radius: 1.25rem;
  box-sizing: content-box;
  box-shadow: 0 10px 30px -12px color-mix(in srgb, var(--primary) 60%, transparent);
  z-index: 2;
}
.recebe-item__media img,
.recebe-item__media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recebe-item__media-bg,
.recebe-item__media-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.recebe-item__media-bg {
  object-fit: cover;
  filter: blur(36px) saturate(1.3) brightness(0.55);
  transform: scale(1.25);
  opacity: 0.95;
  z-index: 0;
}
.recebe-item__media-fg {
  object-fit: contain;
  padding: var(--space-5);
  z-index: 2;
}
@media (min-width: 768px) {
  .recebe-item__media-fg { padding: var(--space-6); }
}
.recebe-item__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recebe-item__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
@media (min-width: 1024px) {
  .recebe-item__title { font-size: var(--fs-h2); }
}
.recebe-item p {
  color: var(--muted-foreground);
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 64ch;
}
.recebe-item__bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.recebe-item__bullets li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted-foreground);
  font-size: var(--fs-md);
  line-height: 1.55;
}
.recebe-item__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1rem;
  height: 1rem;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") no-repeat center / contain;
}
.recebe-item__bullets strong { color: var(--foreground); font-weight: 600; }

/* ───────────────── 9. depoimentos ───────────────── */

.depoimentos {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.depoimentos__desktop { display: none; }

@media (min-width: 1024px) {
  .depoimentos__mobile  { display: none; }
  .depoimentos__desktop { display: block; }
}

/* ----- Mobile carousel ----- */
.depoimentos__carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-inline: calc(-1 * 1.5rem);
  padding: var(--space-2) 1.5rem var(--space-4);
  scroll-behavior: smooth;
}
.depoimentos__carousel::-webkit-scrollbar { display: none; }
.depoimentos__carousel:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
  border-radius: var(--radius);
}
.depoimentos__track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}
.depoimento {
  flex: 0 0 auto;
  width: 17rem;
  scroll-snap-align: center;
  padding: var(--space-6);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: 0;
  transition: border-color var(--dur-med) var(--ease-out);
}
.depoimento[aria-current="true"] {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
}
@media (min-width: 768px) { .depoimento { width: 19rem; padding: var(--space-8); } }

.depoimento__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  isolation: isolate;
  cursor: pointer;
}
.depoimento__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.depoimento__play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 40%, color-mix(in srgb, var(--background) 45%, transparent) 100%);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.depoimento__play-btn::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 3.5rem;
  height: 3.5rem;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-full);
  z-index: 0;
}
.depoimento__play-btn .icon {
  position: relative;
  z-index: 1;
  color: var(--background);
  width: 1.5rem;
  height: 1.5rem;
  margin-left: .2rem;
}
.depoimento__play-btn:hover { background: linear-gradient(180deg, color-mix(in srgb, var(--background) 20%, transparent) 40%, color-mix(in srgb, var(--background) 55%, transparent) 100%); }
.depoimento[data-playing="true"] .depoimento__play-btn { opacity: 0; pointer-events: none; }

.depoimento__quote-icon {
  color: var(--accent);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.depoimento__text {
  color: var(--foreground);
  font-size: var(--fs-md);
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}
.depoimento__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.depoimento__name { font-weight: 600; font-size: var(--fs-sm); }
.depoimento__role { font-size: var(--fs-xs); color: var(--muted-foreground); }

.depoimentos__hint {
  margin: var(--space-4) 0 0;
  font-size: var(--fs-xs);
  color: var(--muted-foreground);
  text-align: center;
}

.depoimentos__dots {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-6);
}
.depoimentos__dot {
  width: .5rem;
  height: .5rem;
  border-radius: var(--radius-full);
  background: var(--muted-foreground);
  opacity: .35;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              width var(--dur-med) var(--ease-out);
}
.depoimentos__dot[aria-current="true"] {
  opacity: 1;
  background: var(--primary);
  width: 1.5rem;
}

/* ----- Desktop featured + thumbs ----- */
.depoimentos__featured {
  position: relative;
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: var(--space-8);
  max-width: 64rem;
  margin: 0 auto;
  padding: var(--space-6);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  align-items: center;
}
.depoimentos__featured-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  isolation: isolate;
  cursor: pointer;
}
.depoimentos__featured-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.depoimentos__featured-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 40%, color-mix(in srgb, var(--background) 50%, transparent) 100%);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.depoimentos__featured-play::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 4.5rem;
  height: 4.5rem;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-full);
}
.depoimentos__featured-play .icon {
  position: relative;
  z-index: 1;
  color: var(--background);
  width: 2rem;
  height: 2rem;
  margin-left: .25rem;
}
.depoimentos__featured[data-playing="true"] .depoimentos__featured-play {
  opacity: 0;
  pointer-events: none;
}

.depoimentos__mute-btn {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: color-mix(in srgb, var(--card) 80%, transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--foreground);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--dur-fast) var(--ease-out);
}
.depoimentos__mute-btn:hover { background: var(--secondary); }
.depoimentos__mute-btn .icon { width: 1.125rem; height: 1.125rem; }
.depoimentos__mute-btn .depoimentos__mute-on  { display: none; }
.depoimentos__mute-btn .depoimentos__mute-off { display: block; }
.depoimentos__mute-btn[aria-pressed="true"] .depoimentos__mute-on  { display: block; }
.depoimentos__mute-btn[aria-pressed="true"] .depoimentos__mute-off { display: none; }

.depoimentos__featured-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.depoimentos__quote-icon-lg {
  color: var(--accent);
  width: 2rem;
  height: 2rem;
}
.depoimentos__featured-text {
  color: var(--foreground);
  font-size: var(--fs-h3);
  line-height: 1.4;
  font-style: italic;
  margin: 0;
  max-width: 44ch;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.depoimentos__featured-author {
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.depoimentos__featured-name { font-weight: 600; font-size: var(--fs-body); }
.depoimentos__featured-role {
  font-size: var(--fs-sm);
  color: var(--muted-foreground);
  margin-top: var(--space-1);
}

.depoimentos__thumbs {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--space-8) auto 0;
  max-width: 64rem;
  padding: 0;
  list-style: none;
}
.depoimentos__thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2);
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.depoimentos__thumb:hover { transform: translateY(-2px); }
.depoimentos__thumb[aria-current="true"] { border-color: var(--primary); }
.depoimentos__thumb-img {
  width: 7rem;
  height: 8.75rem;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  background: #000;
  display: block;
}
.depoimentos__thumb-name {
  font-size: var(--fs-xs);
  color: var(--muted-foreground);
  font-weight: 500;
}
.depoimentos__thumb[aria-current="true"] .depoimentos__thumb-name {
  color: var(--foreground);
}

.depoimentos__live {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .depoimentos__carousel { scroll-behavior: auto; }
  .depoimento,
  .depoimentos__dot,
  .depoimento__play-btn,
  .depoimentos__thumb,
  .depoimentos__featured-play,
  .depoimentos__featured { transition: none !important; }
}

/* ───────────────── 10. cta-final ───────────────── */

.cta-final {
  padding-block: var(--space-8);
}
@media (min-width: 768px) {
  .cta-final { padding-block: var(--space-16); }
}
.cta-final__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  /* hero card final — respiro assimétrico intencional (mais vertical que horizontal) */
  padding: var(--space-12) var(--space-6);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 22%, var(--background)) 0%, color-mix(in srgb, var(--primary) 6%, var(--background)) 100%);
  border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--border));
}
@media (min-width: 768px) {
  .cta-final__card { padding: var(--space-16) var(--space-12); }
}
.cta-final__card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 60rem;
  max-width: 120%;
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--primary) 45%, transparent) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}
.cta-final__mark {
  position: absolute;
  top: 50%;
  right: -5rem;
  width: 22rem;
  height: auto;
  transform: translateY(-50%) rotate(-8deg);
  fill: var(--foreground);
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 768px) {
  .cta-final__mark { width: 32rem; right: -6rem; }
}
.cta-final__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 42rem;
  margin: 0 auto var(--space-4);
}
.cta-final__sub {
  color: var(--muted-foreground);
  font-size: var(--fs-lg);
  margin-block: 0 var(--space-6);
  line-height: 1.55;
  max-width: 48ch;
  margin-inline: auto;
}
.cta-final__sub strong { color: var(--foreground); font-weight: 600; }

/* ───────────────── 11. faq ───────────────── */

.faq { max-width: 48rem; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: var(--space-3) 0;
  min-height: 2.75rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") no-repeat center / contain;
  transition: transform var(--dur-fast) var(--ease-out);
  flex-shrink: 0;
  color: var(--muted-foreground);
}
.faq summary:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.faq p {
  color: var(--muted-foreground);
  font-size: var(--fs-md);
  line-height: 1.6;
  max-width: 64ch;
  margin-top: var(--space-3);
  padding-right: var(--space-8);
}
.faq strong { color: var(--foreground); font-weight: 600; }

/* ───────────────── 12. cta whatsapp ───────────────── */

.cta-whatsapp {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--space-8);
  background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 18%, var(--background)) 0%, color-mix(in srgb, var(--primary) 5%, var(--background)) 100%);
  border-block: 1px solid color-mix(in srgb, var(--primary) 25%, var(--border));
}
@media (min-width: 768px) {
  .cta-whatsapp { padding-block: var(--space-16); }
}
.cta-whatsapp::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 72rem;
  max-width: 120%;
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--primary) 40%, transparent) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}
.cta-whatsapp__card {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}
.cta-whatsapp__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}
.cta-whatsapp__subtitle {
  position: relative;
  z-index: 1;
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto var(--space-6);
}
.cta-whatsapp__card .btn { position: relative; z-index: 1; }

/* ───────────────── 13. footer ───────────────── */

.site-footer {
  padding-block: var(--space-12);
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .site-footer { padding-block: var(--space-16); }
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}
.site-footer__links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__links a {
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-footer__links a:hover { color: var(--foreground); }
.site-footer__entity {
  font-size: var(--fs-xs);
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 52ch;
}
.site-footer__entity strong { color: var(--foreground); font-weight: 600; }
.site-footer__entity a {
  color: var(--muted-foreground);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: color-mix(in srgb, var(--muted-foreground) 40%, transparent);
}
.site-footer__entity a:hover { color: var(--foreground); }
.site-footer__copy {
  font-size: var(--fs-xs);
  color: var(--muted-foreground);
}

/* ───────────────── reveal-on-scroll ───────────────── */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .case-card { transition: none; }
}
