/* Roda Verde — tokens e layout (Figma 4:933 mobile, 35:2259 desktop) */

:root {
  --color-bg: #ffffff;
  --color-surface: #f6f6f6;
  --color-surface-white: #ffffff;
  --color-brand: #005c32;
  --color-brand-border: #2c2c2c;
  --color-text: #1e1e1e;
  --color-muted: #757575;
  --color-price-suffix: #b3b3b3;
  --color-on-brand: #f5f5f5;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 9999px;
  --space-page: 24px;
  --space-section-y: 40px;
  --space-section-y-lg: 56px;
  --space-gap: 16px;
  --space-gap-lg: 24px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --shadow-focus: 0 0 0 3px color-mix(in srgb, var(--color-brand) 35%, transparent);
  --container: 1160px;
  /* Mesma linha vertical do texto dentro do .shell em qualquer largura (full-bleed + carrosséis) */
  --grid-inline-start: max(
    var(--space-page),
    calc((100vw - var(--container)) / 2 + var(--space-page))
  );
  --hero-title-mobile: 32px;
  --hero-title-desktop: 48px;
  --section-title: 20px;
  --body: 16px;
  --body-sm: 14px;
  --btn-height: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Evita scroll horizontal: `100vw` (ex.: .services-strip) inclui a barra de rolagem vertical em alguns browsers */
  overflow-x: hidden;
  /* Ancoras não ficam atrás da barra fixa (.site-nav) */
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--body);
  line-height: 1.4;
  color: var(--color-text);
  background: var(--color-bg);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--color-brand);
  color: var(--color-on-brand);
  text-decoration: none;
  border-radius: var(--radius-md);
}

.skip-link:focus {
  left: var(--space-page);
  top: var(--space-page);
}

/* Barra fixa: só aparece após rolar (ver [data-site-nav] + main.js) */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--color-text) 6%, transparent);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.site-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  margin-right: auto;
}

.site-nav__brand img {
  width: 120px;
  height: auto;
  display: block;
}

/* Botão hambúrguer (mobile) */
.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  flex-shrink: 0;
  color: var(--color-text);
}

.site-nav__toggle:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.site-nav__burger {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
}

.site-nav__burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.2s ease,
    top 0.2s ease,
    opacity 0.2s ease;
}

.site-nav__burger-line:nth-child(1) {
  top: 0;
}

.site-nav__burger-line:nth-child(2) {
  top: 7px;
}

.site-nav__burger-line:nth-child(3) {
  top: 14px;
}

.site-nav.is-menu-open .site-nav__burger-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.site-nav.is-menu-open .site-nav__burger-line:nth-child(2) {
  opacity: 0;
}

.site-nav.is-menu-open .site-nav__burger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* Painel de links: mobile = overlay; desktop = faixa horizontal */
.site-nav__scroll {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  justify-content: stretch;
  max-height: 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--color-bg) 98%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--color-text) 8%, transparent);
  transition: max-height 0.32s ease;
  pointer-events: none;
}

.site-nav.is-menu-open .site-nav__scroll {
  max-height: min(70vh, 420px);
  overflow-y: auto;
  pointer-events: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: var(--space-gap) var(--space-page);
  list-style: none;
  width: 100%;
}

.site-nav__list li {
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

.site-nav__list li:last-child {
  border-bottom: none;
}

.site-nav__list a {
  display: block;
  font-size: var(--body);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  text-decoration: none;
  white-space: normal;
  padding: 14px 4px;
  border-radius: var(--radius-md);
}

.site-nav__list a:hover {
  color: var(--color-brand);
}

.site-nav__list a:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.site-nav .btn.btn--primary.site-nav__cta {
  display: none;
  flex-shrink: 0;
  min-height: 40px;
  padding: 10px 14px;
  font-size: var(--body-sm);
  width: auto;
}

body.site-nav-menu-open {
  overflow: hidden;
}

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

  .site-nav__brand {
    margin-right: 0;
  }

  .site-nav__toggle {
    display: none;
  }

  .site-nav .btn.btn--primary.site-nav__cta {
    display: inline-flex;
  }

  .site-nav__scroll {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    flex: 1;
    min-width: 0;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    justify-content: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    pointer-events: auto;
    transition: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-nav__scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .site-nav.is-menu-open .site-nav__scroll {
    max-height: none;
  }

  .site-nav__list {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px 18px;
    padding: 0;
    width: auto;
  }

  .site-nav__list li {
    border-bottom: none;
  }

  .site-nav__list a {
    display: inline;
    font-size: var(--body-sm);
    white-space: nowrap;
    padding: 6px 2px;
  }

  body.site-nav-menu-open {
    overflow: visible;
  }
}

.text-muted {
  color: var(--color-muted);
}

.text-small {
  font-size: var(--body-sm);
  line-height: 1.4;
}

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

/* Shell */
.shell {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-page);
}

.section {
  padding-bottom: var(--space-section-y);
}

.section--hero {
  padding-top: var(--space-page);
  padding-bottom: var(--space-section-y);
}

.section__title {
  margin: 0 0 var(--space-gap-lg);
  font-size: var(--section-title);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #000000;
}

.section__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-gap-lg);
  text-align: center;
}

.section__intro .section__title {
  margin-bottom: 0;
}

.section__subtitle {
  margin: 0;
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-muted);
}

/* Surfaces */
.card-surface {
  background: var(--color-surface);
  border-radius: var(--radius-md);
}

.card-surface--hero {
  border-radius: var(--radius-lg);
  padding: var(--space-gap-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-gap-lg);
}

.card-surface--steps {
  border-radius: var(--radius-lg);
  padding: var(--space-gap-lg);
}

.card-surface--white {
  background: var(--color-surface-white);
  border-radius: var(--radius-md);
  padding: var(--space-gap-lg);
}

/* Hero */
.shell--hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-gap);
}

.hero__intro {
  width: 100%;
}

.hero__logo {
  width: 174px;
  height: 40px;
}

.hero__title {
  margin: 0;
  font-size: var(--hero-title-mobile);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #000000;
}

.hero__actions {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__instagram-link {
  color: var(--color-brand);
  font-size: var(--body-sm);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__instagram-link:hover {
  opacity: 0.85;
}

.hero__instagram-link:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: 4px;
}

.hero__lead {
  margin: 0;
  font-size: var(--body-sm);
  line-height: 1;
  text-align: center;
}

.hero__media {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 364px;
  position: relative;
  background: var(--color-surface);
}

.hero__video {
  width: 100%;
  height: 100%;
  min-height: 364px;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-height);
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: var(--body);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid var(--color-brand-border);
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.05s ease;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--color-brand);
  color: var(--color-on-brand);
  width: 100%;
}

.btn--block {
  width: 100%;
}

/* Horizontal scroll rows */
.scroll-row {
  display: flex;
  gap: var(--space-gap);
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-row > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Carrossel audiência: full-bleed, sem barra de scroll, arrastar */
.audience-strip {
  margin-left: calc(-1 * var(--space-page));
  margin-right: calc(-1 * var(--space-page));
}

.scroll-row--audience {
  padding-left: var(--space-page);
  padding-right: 0;
  padding-bottom: 0;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--space-page) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
}

.scroll-row--audience::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.scroll-row--audience .audience-card {
  width: min(348px, calc(100vw - var(--space-page) - 24px));
  user-select: text;
}

.scroll-row--audience .audience-card__icon img {
  -webkit-user-drag: none;
}

.scroll-row--audience.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.scroll-row--audience::after {
  content: "";
  flex-shrink: 0;
  width: var(--space-page);
}

/* Carrossel de serviços: full-bleed no mobile, sem barra de scroll, peek até à borda */
.services-strip {
  margin-left: calc(-1 * var(--space-page));
  margin-right: calc(-1 * var(--space-page));
}

.scroll-row--services {
  padding-left: var(--grid-inline-start);
  padding-right: 0;
  padding-bottom: 0;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--grid-inline-start) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
}

.scroll-row--services::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.scroll-row--services .service-card {
  width: min(294px, calc(100vw - var(--space-page) - 24px));
  user-select: text;
}

.scroll-row--services .service-card__img {
  -webkit-user-drag: none;
}

.scroll-row--services.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.scroll-row--services::after {
  content: "";
  flex-shrink: 0;
  width: var(--grid-inline-start);
}

.carousel-nav,
.services-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-gap);
  margin-top: var(--space-gap-lg);
}

.carousel-nav-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    opacity 0.15s ease;
}

.carousel-nav-btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-brand) 14%, var(--color-surface));
  color: var(--color-brand);
}

.carousel-nav-btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.carousel-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-nav-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* Abas de planos: full-bleed no mobile, sem barra de scroll, arrastar */
.plan-tabs-strip {
  margin-left: calc(-1 * var(--space-page));
  margin-right: calc(-1 * var(--space-page));
}

.scroll-row--tabs {
  gap: 8px;
  padding-left: var(--space-page);
  padding-right: 0;
  padding-bottom: 0;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
}

.scroll-row--tabs::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.scroll-row--tabs.is-dragging {
  cursor: grabbing;
}

.scroll-row--tabs::after {
  content: "";
  flex-shrink: 0;
  width: var(--space-page);
}

/* Audience cards */
.audience-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-gap);
  padding: var(--space-gap-lg);
  min-height: 136px;
}

.audience-card__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-pill);
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.audience-card__title {
  margin: 0 0 0;
  font-size: var(--body);
  font-weight: 600;
  line-height: 1.4;
}

.audience-card__text {
  flex: 1;
  min-width: 0;
}

.audience-card__text p.text-muted {
  margin-top: 0;
  margin-bottom: 0;
}

/* Steps */
.steps__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-gap);
}

.step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-gap);
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--color-brand);
  font-size: var(--body-sm);
  font-weight: 600;
  line-height: 1.4;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.step__title {
  margin: 0;
  font-size: var(--body);
  font-weight: 600;
  line-height: 1.4;
}

.step__body {
  flex: 1;
  min-width: 0;
}

#etapas .step__body > p.text-muted {
  margin-top: 0;
  margin-bottom: 0;
}

/* Impact */
.impact {
  display: flex;
  flex-direction: row;
  gap: var(--space-gap);
  align-items: stretch;
}

.impact__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-gap);
  min-width: 0;
}

.impact-card {
  padding: var(--space-gap-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: var(--radius-lg);
}

.impact-card--lg {
  min-height: 170px;
  justify-content: space-between;
}

.impact-card__value {
  margin: 0;
  font-size: var(--body);
  font-weight: 600;
  line-height: 1.4;
}

.impact-card > p.text-muted {
  margin-top: 0;
  margin-bottom: 0;
}

/* Plan tabs */
.plan-tabs {
  display: flex;
  flex-direction: column;
  gap: var(--space-gap-lg);
}

.plan-tab {
  appearance: none;
  border: 2px solid var(--color-surface);
  background: transparent;
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: inherit;
  font-size: var(--body-sm);
  line-height: 1;
  color: var(--color-muted);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.plan-tab.is-active {
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 600;
  border-color: var(--color-surface);
}

.plan-tab:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.plan-panel[hidden] {
  display: none !important;
}

.plan-card {
  padding: var(--space-gap-lg);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-gap-lg);
  max-width: 100%;
}

.plan-card__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-gap);
}

.plan-card__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-gap);
  min-width: 0;
}

.plan-benefits__intro {
  margin: 0;
  font-size: var(--body);
  line-height: 1.4;
  text-align: center;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--body-sm);
  line-height: 1;
  color: var(--color-muted);
}

.checklist img {
  flex-shrink: 0;
}

.plan-footnote {
  margin: 0;
}

.plan-list-heading {
  margin: 0;
  font-size: var(--body);
  text-align: center;
  line-height: 1.4;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-gap);
}

.price-list__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-gap);
}

.price-list__row--single .price-list__price {
  justify-content: flex-end;
}

.price-list__title {
  margin: 0;
  font-size: var(--body);
  font-weight: 600;
  line-height: 1.4;
}

/* Subtitle under plan title: reset default p margins (1em ≈ 14px with .text-small) */
.price-list__row p.text-muted {
  margin-top: 0;
  margin-bottom: 0;
}

.price-list__price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}

.price-list__amount {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-text);
}

.price-list__currency {
  font-size: 20px;
}

.price-list__suffix {
  font-size: var(--body-sm);
  line-height: 1;
  color: var(--color-price-suffix);
}

.price-list__amount--consult {
  font-size: var(--body);
  white-space: normal;
  text-align: right;
}

.price-list__divider {
  height: 1px;
  background: color-mix(in srgb, var(--color-muted) 25%, var(--color-surface));
  margin: 0;
  border: 0;
}

/* Map */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  min-height: 300px;
}

.map-frame__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.map-note {
  margin: var(--space-gap-lg) 0 0;
}

/* Services */
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-gap);
  padding: var(--space-gap-lg);
  border-radius: var(--radius-lg);
}

.service-card__img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.service-card__title {
  margin: 0;
  font-size: var(--body);
  font-weight: 600;
  line-height: 1.4;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card__body > p.text-muted {
  margin-top: 0;
  margin-bottom: 0;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-gap);
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 0;
  padding: 0;
}

.faq-item__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
  font-size: var(--body);
  font-weight: 600;
  line-height: 1.4;
  min-height: 64px;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon::after {
  transform: rotate(-135deg);
  margin-top: 10px;
}

.faq-item__content {
  padding: 0 16px 16px;
}

.faq-item__content p {
  margin: 0;
  font-size: var(--body);
  line-height: 1.4;
  color: var(--color-text);
}

.faq-item[open] .faq-item__summary {
  align-items: flex-start;
}

/* Footer (Figma 35:2510 — bloco CTA + faixa foto) */
.section--footer {
  padding-bottom: 0;
}

.shell--footer {
  padding-bottom: var(--space-section-y);
}

.footer-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-gap-lg);
}

.footer-cta {
  border-radius: var(--radius-lg);
  padding: var(--space-gap-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-gap);
  text-align: center;
  width: 100%;
}

.footer-cta__logo {
  width: 174px;
  height: 40px;
}

.footer-cta__title {
  margin: 0;
  max-width: 27.25rem;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
}

.footer-cta__btn {
  max-width: 27.25rem;
}

.footer-cta__contacts {
  margin: 0;
  max-width: 27.25rem;
  width: 100%;
  font-size: var(--body-sm);
  line-height: 1.5;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--color-text);
}

.footer-cta__contact-row {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.footer-cta__contact-label {
  display: block;
  font-size: var(--body-sm);
  font-weight: 600;
  color: var(--color-muted);
}

.footer-cta__contacts a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.footer-cta__contacts a:hover {
  color: color-mix(in srgb, var(--color-brand) 85%, #000);
}

.footer-cta__contacts a:focus-visible {
  outline: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-focus);
}

.footer-cta__copy {
  margin: 0;
  font-size: var(--body);
  line-height: 1.4;
  width: 100%;
}

.footer-strip {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.footer-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------- Desktop ---------- */
@media (min-width: 1024px) {
  :root {
    --space-section-y: var(--space-section-y-lg);
  }

  /* FAQ list — Figma 35:2473: frame width 568px */
  #faq .faq {
    max-width: 568px;
    margin-inline: auto;
  }

  .map-frame {
    min-height: 540px;
  }

  .map-frame__img {
    height: 540px;
  }

  .section--hero {
    padding-top: var(--space-section-y-lg);
  }

  .shell--hero {
    flex-direction: row;
    align-items: stretch;
    gap: var(--space-gap-lg);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-page);
  }

  .hero__intro {
    flex: 1;
    min-height: 100%;
    justify-content: center;
  }

  .hero__title {
    font-size: var(--hero-title-desktop);
    letter-spacing: -0.02em;
  }

  .hero__lead {
    font-size: var(--body);
    line-height: 1;
  }

  .hero__actions {
    padding: 0;
  }

  .hero__media {
    flex: 1;
    min-height: 542px;
  }

  .hero__video {
    min-height: 542px;
  }

  .audience-strip {
    margin-left: 0;
    margin-right: 0;
  }

  .scroll-row--audience {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    gap: var(--space-gap);
    padding-left: 0;
    padding-right: 0;
    cursor: default;
    user-select: auto;
    touch-action: auto;
    scroll-snap-type: none;
  }

  .scroll-row--audience::after {
    display: none;
    content: none;
    width: 0;
  }

  .scroll-row--audience .audience-card {
    width: auto;
    min-height: 264px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }

  .scroll-row--audience .audience-card .audience-card__text {
    flex: none;
    width: 100%;
  }

  .carousel-nav--mobile-only {
    display: none;
  }

  /* Full-bleed: o carrossel usa a largura da viewport (evita cards “cortados” pela caixa do .shell) */
  .services-strip {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  /* Serviços: mantém scroll horizontal no desktop (protótipo Figma 35:2439), cards um pouco maiores que no mobile */
  .scroll-row--services {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .scroll-row--services .service-card {
    width: min(340px, calc(100vw - var(--space-page) * 2 - 32px));
    flex-shrink: 0;
  }

  .steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-gap);
    align-items: start;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-gap);
  }

  .plan-tabs-strip {
    margin-left: 0;
    margin-right: 0;
  }

  .plan-tabs .scroll-row--tabs {
    flex-wrap: wrap;
    overflow: visible;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    cursor: default;
    user-select: auto;
    touch-action: auto;
  }

  .plan-tabs .scroll-row--tabs::after {
    display: none;
    content: none;
    width: 0;
  }

  .plan-card {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }

  .plan-card__aside .plan-list-heading {
    text-align: left;
  }

  .footer-strip {
    height: 500px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .faq-item__icon::after {
    transition: none;
  }
}
