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

:root {
  --color-primary: #2f9185;
  --color-dark: #000204;
  --color-text-muted: #545759;
  --color-bg: #f0f3f5;
  --color-bg-grad: rgba(232, 236, 238, 1);
  --color-white: #ffffff;
  --font: "Roboto", sans-serif;
}

html {
  font-size: 16px;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-dark);
  overflow-x: hidden;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
}

/* ─── Page wrapper ─────────────────────────────────────────────── */
.page-bg {
  background: var(--color-bg);
  padding: 16px 16px 16px;
  min-height: 100vh;
}

/* ─── Hero wrapper (clips + adjusts height for scaled card) ────── */
.hero-wrapper {
  width: 1408px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* ─── Hero card ────────────────────────────────────────────────── */
.hero__card {
  position: relative;
  width: 1408px;
  height: 1189px;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: 24px;
  border: 4px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  transform-origin: top left;
}

/* Background image */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  user-select: none;
}

/* Gradient overlay */
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--color-bg-grad) 63%,
    rgba(232, 236, 238, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Bottom fade — blends card bottom into page bg */
.hero__fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 420px;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 6;
}

/* ─── Navbar ───────────────────────────────────────────────────── */
.navbar {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1194px;
  background: var(--color-white);
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.navbar__logo img {
  width: 112px;
  height: 35.29px;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.navbar__links a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-dark);
  white-space: nowrap;
}

.navbar__links a:hover {
  color: var(--color-primary);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.navbar__cta:hover {
  opacity: 0.85;
}

/* ─── Hero content ─────────────────────────────────────────────── */
.hero__content {
  position: absolute;
  left: 262px;
  top: 175px;
  width: 884px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.1);
  border-radius: 50px;
}

.hero__badge-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.hero__badge-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Text group */
.hero__text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}

.hero__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 16px;
}

/* Headline */
.hero__headline {
  margin: 0;
  font-size: 76px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-dark);
  text-align: center;
  width: 100%;
}

.hero__headline-green {
  color: var(--color-primary);
}

/* Body */
.hero__body {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 680px;
}

/* CTA row */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__actions--mobile {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}

.btn:hover {
  opacity: 0.85;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  border: 1.2px solid rgba(0, 2, 4, 0.12);
  color: rgba(0, 2, 4, 0.8);
}

.inline-cta-section {
  padding: 0 16px 72px;
}

.inline-cta {
  max-width: 1194px;
  margin: 0 auto;
  padding: 30px 36px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(135deg, #fff8f1 0%, #f3f9f6 100%);
  border: 1px solid rgba(0, 2, 4, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.inline-cta--warm {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 32%),
    linear-gradient(135deg, #fff1e8 0%, #fff9ef 100%);
}

.inline-cta__content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 120, 64, 0.1);
  color: #bb4f1d;
  font-size: 14px;
  line-height: 1.4;
}

.inline-cta__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: #01060a;
}

.inline-cta__body {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(1, 6, 10, 0.72);
}

.inline-cta__actions {
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ─── Floating activity cards ──────────────────────────────────── */
.hero__activity {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 71px;
  z-index: 10;
}

.hero__activity--bike {
  left: 200px;
  top: 152px;
  background: linear-gradient(136deg, #f4695d 0%, #fea52d 100%);
  transform: rotate(-15deg);
}

.hero__activity--run {
  left: 1127px;
  top: 232px;
  background: var(--color-primary);
  transform: rotate(13deg);
}

.hero__activity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  flex-shrink: 0;
}

.hero__activity-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero__activity-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 4px;
}

.hero__activity-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
}

.hero__activity-meta {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* ─── iPhone mockup ────────────────────────────────────────────── */
.hero__phone {
  position: absolute;
  left: 517px;
  top: 614px;
  width: 374px;
  height: 771px;
  z-index: 5;
}

.hero__phone img {
  width: 374px;
  height: 771px;
  object-fit: contain;
}

/* ─── Feature cards ────────────────────────────────────────────── */
.hero__features {
  position: absolute;
  left: 956px;
  top: 680px;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 60px;
  background: var(--color-white);
}

.feature-card__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  flex-shrink: 0;
}

.feature-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-card__title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-dark);
}

.feature-card__sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Metric ring */
.feature-card__metric {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.feature-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.feature-ring__track {
  fill: none;
  stroke-width: 4;
}

.feature-ring__fill {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

.feature-card__metric-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

/* ─── Resumo do dia ────────────────────────────────────────────── */
.hero__resumo {
  position: absolute;
  left: 62px;
  top: 823px;
  width: 400px;
  height: 295px;
  border-radius: 26px;
  overflow: hidden;
  z-index: 10;
}

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

/* ─── Quote section ─────────────────────────────────────────────── */
.quote-section {
  padding: 80px 16px 120px;
  display: flex;
  justify-content: center;
}

.quote-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: center;
}

.quote-card-stack {
  position: relative;
  width: 938px;
  max-width: 100%;
}

.quote-card-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: calc(100% + 10px);
  background: #f5f6f7;
  border-radius: 44px;
  z-index: 1;
}

.quote-card-stack::after {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: calc(100% + 18px);
  background: #eaedf0;
  border-radius: 44px;
  z-index: 0;
}

.quote-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 70px;
  background: #ffffff;
  border-radius: 44px;
  border: 3px solid #ffffff;
  overflow: hidden;
}

.quote-card__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 185px;
  background: linear-gradient(
    180deg,
    rgba(204, 229, 227, 1) 0%,
    rgba(204, 229, 227, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.quote-card > img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.quote-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.1);
  border-radius: 50px;
}

.quote-badge__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.quote-badge__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quote-text {
  margin: 0;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--color-dark);
  max-width: 809px;
}

.quote-text--accent {
  color: var(--color-primary);
}

/* ─── Comparison Section ───────────────────────────────────────── */
.comparison-section {
  padding: 80px 16px;
}

.comparison-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.comparison-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.1);
  border-radius: 50px;
}

.comparison-badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.comparison-badge__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.comparison-headline {
  margin: 0;
  font-weight: 500;
  font-size: 49px;
  line-height: 120%;
  color: var(--color-dark);
  text-align: center;
}

.comparison-headline__green {
  color: var(--color-primary);
}

.comparison-cards {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
}

.comparison-card {
  flex: 1;
  max-width: 581px;
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.comparison-card__deco {
  display: none;
}

.comparison-card__tag,
.comparison-card__content {
  position: relative;
  z-index: 1;
}

.comparison-card--before {
  background-color: #cce5e3;
  background-image: url("/assets/img/sections/card-before-deco.svg");
  background-repeat: no-repeat;
  background-position: 4px 4px;
  background-size: 573px 434px;
}

.comparison-card--after {
  background-image: url("/assets/img/sections/card-after-deco.svg"),
    linear-gradient(
      139deg,
      rgba(38, 102, 235, 1) 0%,
      rgba(56, 186, 248, 1) 100%
    );
  background-repeat: no-repeat, no-repeat;
  background-position: 4px 4px, center;
  background-size: 573px 434px, cover;
}

.comparison-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 50px;
  align-self: flex-start;
}

.comparison-card--before .comparison-card__tag {
  background: rgba(47, 145, 133, 0.05);
  border: 1px solid #2f9185;
}

.comparison-card--after .comparison-card__tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.comparison-card__tag-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-primary);
}

.comparison-card__tag-dot--white {
  background: #ffffff;
}

.comparison-card__tag-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.comparison-card__tag-label--white {
  color: #ffffff;
}

.comparison-card__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-card__title {
  margin: 0;
  font-weight: 500;
  font-size: 35px;
  line-height: 140%;
  color: var(--color-dark);
}

.comparison-card__title--white {
  color: #ffffff;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-text-muted);
}

.comparison-list__item:last-child {
  padding-bottom: 0;
}

.comparison-list__item--white {
  color: #ffffff;
}

.comparison-icon {
  flex-shrink: 0;
  display: block;
}

/* ─── 100 Days Section ─────────────────────────────────────────── */
.days-section {
  padding: 80px 16px;
}

.days-outer {
  max-width: 1194px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 44px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Left column */
.days-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.days-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 32px 0;
}

.days-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.05);
  border: 1px solid #2f9185;
  border-radius: 50px;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.days-badge__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.days-headline-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.days-headline {
  margin: 0;
  font-size: 49px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
}

.days-body {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Stats row */
.days-stats {
  display: flex;
  gap: 16px;
  padding: 0 12px 12px;
}

.days-stat {
  flex: 1;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.days-stat--green {
  background: #f2f8f9;
}

.days-stat--purple {
  background: #f8f8ff;
}

.days-stat__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.days-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  flex-shrink: 0;
}

.days-stat__icon--green {
  background: #e0f2ef;
}

.days-stat__icon--purple {
  background: #ede8fe;
}

.days-stat__label {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-dark);
}

.days-stat__value-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.days-stat__value-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.days-stat__number {
  font-size: 55px;
  font-weight: 500;
  line-height: 1;
}

.days-stat__number--green {
  color: var(--color-primary);
}

.days-stat__number--purple {
  color: #7b52f4;
}

.days-stat__note {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #7c8083;
}

.days-stat__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Right column */
.days-right {
  width: 510px;
  flex-shrink: 0;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    rgba(229, 243, 242, 1) 0%,
    rgba(245, 248, 250, 1) 100%
  );
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.days-metrics-card {
  background: #c4e6e4;
  border-radius: 24px;
  padding: 3px;
}

.days-metrics-inner {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.days-metrics__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
}

.days-metrics__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.days-metrics__row {
  display: flex;
  gap: 20px;
}

.days-metric {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.days-metric__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.days-metric__label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  margin-right: 8px;
}

.days-metric__label-wrap img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.days-metric__label {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark);
  white-space: nowrap;
}

.days-metric__value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}

.days-metric__bar-track {
  height: 8px;
  background: #f0f3f5;
  border-radius: 21px;
  overflow: hidden;
}

.days-metric__bar-fill {
  height: 100%;
  border-radius: 21px;
}

/* Footer note */
.days-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(196, 230, 228, 0.55);
}

.days-note__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.days-note__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(0, 2, 4, 0.7);
}

.days-note__text strong {
  font-weight: 500;
  color: var(--color-primary);
}

/* ─── Features Section ─────────────────────────────────────────── */
.features-section {
  padding: 80px 16px;
}

.features-container {
  max-width: 1194px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 674px;
  text-align: center;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.1);
  border-radius: 50px;
}

.features-badge__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.features-badge__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.features-headline {
  margin: 0;
  font-size: 49px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
  text-align: center;
}

.features-headline--green {
  color: var(--color-primary);
}

.features-cards {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 20px;
}

.features-row {
  display: flex;
  gap: 20px;
}

/* ─── Feature card base ─────────────────────────────────────────── */
.fcard {
  background: #ffffff;
  border-radius: 30px;
}

/* ─── Small cards (top row) ─────────────────────────────────────── */
.fcard--sm {
  flex: 1;
  min-width: 0;
  height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fcard__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
}

.fcard__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.fcard__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcard__title {
  margin: 0;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-dark);
}

.fcard__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ─── Dashboard card (large left) ──────────────────────────────── */
.fcard--dashboard {
  flex: 1;
  min-width: 0;
  height: 500px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.fcard__blur {
  position: absolute;
  left: -132px;
  top: -174px;
  width: 647px;
  height: 472px;
  background: #c1e7e4;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* Macro nutrition widget */
.fcard__macro {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 330px;
  background: #ffffff;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.macro-row {
  display: flex;
  gap: 11px;
}

.macro-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 15px;
  height: 60px;
}

.macro-item--green {
  background: #e5f4f3;
}
.macro-item--purple {
  background: #f1eaff;
}
.macro-item--yellow {
  background: #fdf7d7;
}
.macro-item--orange {
  background: #fde6e0;
}

.macro-item__icon {
  width: 47px;
  height: 47px;
  flex-shrink: 0;
  object-fit: contain;
}

.macro-item__info {
  display: flex;
  flex-direction: column;
}

.macro-item__value {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #737b7c;
}

.macro-item__label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-dark);
}

/* Phone mockup positioned over center-right of the dashboard card */
.fcard__phone {
  position: absolute;
  pointer-events: none;
}

.fcard__phone--dashboard {
  left: 150px;
  top: -37px;
  width: 671px;
  height: 651px;
  z-index: 2;
}

.fcard__phone--dashboard img {
  width: 671px;
  height: 651px;
  object-fit: contain;
  object-position: top left;
}

/* App icon above title in dashboard footer */
.fcard__app-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.fcard__app-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* Text at bottom of dashboard card */
.fcard__footer {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* White fade over the bottom portion to blend phone image into text area */
.fcard--dashboard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, #ffffff 55%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.fcard__title--lg {
  font-size: 36px;
  line-height: 1.4;
}

.fcard__desc--dark {
  color: rgba(0, 2, 4, 0.7);
  font-size: 18px;
}

/* ─── Presença card (large right) ──────────────────────────────── */
.fcard--presenca {
  width: 385px;
  flex-shrink: 0;
  height: 500px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 42%, #d0e7e5 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fcard__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

/* Bottom fade that dissolves notifications into the teal gradient */
.fcard--presenca::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 123px;
  background: linear-gradient(
    180deg,
    rgba(208, 231, 229, 0) 0%,
    rgba(208, 231, 229, 1) 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* Phone + notification cards group */
.fcard__phone-notif {
  position: absolute;
  left: 24px;
  top: 207px;
  width: 337px;
  height: 543px;
}

.fcard__phone-img {
  position: absolute;
  left: 37px;
  top: 0;
  width: 263px;
  height: 543px;
  object-fit: cover;
}

.fcard__notifs {
  position: absolute;
  top: 44px;
  left: 0;
  width: 337px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

/* Notification cards */
.notif-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 6px 12px rgba(122, 130, 130, 0.15);
}

.notif-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f0f3f5;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 12px;
}

.notif-card__icon-wrap img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.notif-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notif-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-dark);
}

.notif-card__desc {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 2, 4, 0.7);
}

.notif-card__time {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(0, 2, 4, 0.7);
  flex-shrink: 0;
}

/* ─── Community Section ────────────────────────────────────────── */
.community-section {
  padding: 80px 16px;
}

.community-container {
  max-width: 1194px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.community-left {
  width: 582px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.community-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.community-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.1);
  border-radius: 50px;
  width: fit-content;
}

.community-badge__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.community-texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.community-headline {
  margin: 0;
  font-size: 49px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
}

.community-headline--green {
  color: var(--color-primary);
}

.community-body {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 538px;
}

/* Grid */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Card */
.comm-card {
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.comm-card img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.comm-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comm-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-dark);
}

.comm-card__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.comm-card__num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.4;
  color: #f0f3f5;
  pointer-events: none;
  user-select: none;
}

/* Phone right */
.community-phone-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.community-phone-img {
  width: 100%;
  max-width: 564px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ─── Tribo Section ─────────────────────────────────────────────── */
.tribo-section {
  padding: 96px 5.2vw 72px;
}

.tribo-container {
  max-width: 1194px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-areas:
    "visual intro"
    "visual cards";
  gap: 28px 52px;
  align-items: center;
}

/* Visual */
.tribo-visual {
  grid-area: visual;
  position: relative;
}

.tribo-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(23, 43, 46, 0.18);
  position: relative;
  z-index: 2;
}

.tribo-photo-wrap picture,
.tribo-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tribo-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

/* Pill base */
.tribo-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 48px rgba(21, 43, 47, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
}

.tribo-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.38), transparent 42%);
  pointer-events: none;
  opacity: 0.82;
}

.tribo-pill > * {
  position: relative;
  z-index: 1;
}

/* Pill positions — extrapolam as bordas da foto */
.tribo-pill--members {
  top: 36px;
  left: -20px;
  min-width: 200px;
}

.tribo-pill--entered {
  top: 56px;
  right: -20px;
  min-width: 180px;
}

.tribo-pill--group {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  min-width: 160px;
}

.tribo-pill--goal {
  bottom: 100px;
  left: -20px;
  min-width: 220px;
}

.tribo-pill--strength {
  bottom: 40px;
  right: -24px;
  min-width: 260px;
}

/* Pill internals */
.tribo-pill__avatar-stack {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.tribo-pill__avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  margin-left: -10px;
  flex-shrink: 0;
}

.tribo-pill__avatar-img:first-child {
  margin-left: 0;
}

.tribo-pill__avatar-more {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  margin-left: -10px;
  flex-shrink: 0;
  letter-spacing: -0.3px;
}

.tribo-pill__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(47, 145, 133, 0.18);
  color: var(--color-primary);
  font-weight: 900;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.tribo-pill__avatar--photo {
  object-fit: cover;
  background: none;
}

.tribo-pill__mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(47, 145, 133, 0.16);
  color: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.tribo-pill__mini-icon--photo {
  object-fit: cover;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.tribo-pill__mini-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tribo-pill__mini-icon--orange {
  background: rgba(255, 138, 52, 0.16);
  color: #ff8a34;
}

.tribo-pill__title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1719;
  line-height: 1.2;
}

.tribo-pill__sub {
  font-size: 13px;
  color: #4b5558;
  margin-top: 2px;
}

.tribo-pill__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
  flex-shrink: 0;
}

.tribo-pill__bars span {
  width: 8px;
  border-radius: 8px;
  background: var(--color-primary);
}

.tribo-pill__bars span:nth-child(1) {
  height: 14px;
  opacity: 0.4;
}

.tribo-pill__bars span:nth-child(2) {
  height: 22px;
  opacity: 0.7;
}

.tribo-pill__bars span:nth-child(3) {
  height: 32px;
}

.tribo-pill__ring {
  width: 60px;
  height: 60px;
  position: relative;
  flex-shrink: 0;
}

.tribo-pill__ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.tribo-pill__ring-track {
  fill: none;
  stroke: #d7ebe7;
  stroke-width: 4;
}

.tribo-pill__ring-fill {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 0 138.23;
  transition: stroke-dasharray 1s ease 0.6s;
}

.tribo-pill__ring-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 900;
  font-size: 12px;
}

/* Intro */
.tribo-intro {
  grid-area: intro;
  align-self: end;
}

.tribo-badge {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(47, 145, 133, 0.1);
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 24px;
}

.tribo-headline {
  margin: 0 0 24px;
  font-size: clamp(44px, 4.8vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--color-dark);
}

.tribo-headline--green {
  color: var(--color-primary);
  display: block;
}

.tribo-lead {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Cards */
.tribo-cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-self: start;
}

.tribo-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(29, 58, 61, 0.1);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.tribo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(29, 58, 61, 0.16);
}

.tribo-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.tribo-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.1;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tribo-card__icon--green {
  background: #e0f1ee;
  color: var(--color-primary);
}

.tribo-card__icon--purple {
  background: #eee7ff;
  color: #8a63ff;
}

.tribo-card__icon--red {
  background: #ffe7df;
  color: #ff6d52;
}

.tribo-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.tribo-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Bottom note */
.tribo-note {
  max-width: 1194px;
  margin: 52px auto 0;
  background: rgba(221, 240, 237, 0.78);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.tribo-note__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(47, 145, 133, 0.16);
  color: var(--color-primary);
  flex-shrink: 0;
}

.tribo-note__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tribo-note__title {
  display: block;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tribo-note__body {
  margin: 0;
  font-size: 15px;
  color: var(--color-text-muted);
}

/* ─── Friction Section ─────────────────────────────────────────── */
.friction-section {
  padding: 80px 16px;
}

.friction-container {
  max-width: 1194px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 564px 1fr;
  grid-template-areas:
    "phone header"
    "phone grid";
  column-gap: 48px;
  row-gap: 44px;
}

.friction-header {
  grid-area: header;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.friction-phone-wrap {
  grid-area: phone;
  align-self: end;
}

.friction-phone-img {
  width: 564px;
  height: auto;
  display: block;
  object-fit: contain;
}

.friction-grid {
  grid-area: grid;
}

/* ─── FAQ section ─────────────────────────────────────────────── */

.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 1194px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq-left {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.1);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  width: fit-content;
}

.faq-headline {
  font-size: 49px;
  font-weight: 500;
  line-height: 120%;
  color: var(--color-dark);
  margin: 0;
}

.faq-headline--green {
  color: var(--color-primary);
}

.faq-whatsapp-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.5px solid #e5e8ea;
}

.faq-wa-icon {
  width: 44px;
  height: 44px;
}

.faq-wa-icon svg {
  display: block;
}

.faq-wa-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark);
  margin: 0;
  line-height: 140%;
}

.faq-wa-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-text-muted);
  margin: 0;
}

.faq-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 14px 20px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.18s;
}

.faq-wa-btn:hover {
  opacity: 0.88;
}

/* ─── Accordion ────────────────────────────────────────────────── */

.faq-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  padding: 8px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.faq-item {
  border-bottom: 1px solid #e5e8ea;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.faq-question span {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 140%;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.faq-item--open .faq-chevron {
  transform: none;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease, padding 0.22s ease;
}

.faq-item--open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  color: var(--color-text-muted);
  margin: 0 0 22px;
}

/* ─── Inside section (Por dentro do Bora) ─────────────────────── */

.inside-section {
  padding: 80px 0 60px;
}

.inside-header {
  max-width: 700px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 0 16px;
}

.inside-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.1);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
}

.inside-headline {
  font-size: 49px;
  font-weight: 500;
  line-height: 120%;
  color: var(--color-dark);
  margin: 0;
}

.inside-headline--green {
  color: var(--color-primary);
}

.inside-track {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 120px 32px;
  cursor: grab;
}

.inside-track::-webkit-scrollbar {
  display: none;
}

.inside-track:active {
  cursor: grabbing;
}

.inside-card {
  flex: 0 0 236px;
  border-radius: 32px;
  border: 1.6px solid #8acebf;
  overflow: hidden;
  line-height: 0;
}

.inside-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Longevidade section ──────────────────────────────────────── */

.longe-section {
  padding: 80px 0;
}

.longe-header {
  max-width: 628px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 0 16px;
}

.longe-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.1);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
}

.longe-headline {
  font-size: 49px;
  font-weight: 500;
  line-height: 120%;
  color: var(--color-dark);
  margin: 0;
}

.longe-headline--green {
  color: var(--color-primary);
}

.longe-carousel-wrap {
  position: relative;
}

.longe-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 160px 24px 100px;
}

.longe-track::-webkit-scrollbar {
  display: none;
}

.longe-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
  z-index: 2;
}

.longe-fade--left {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--color-bg) 40%,
    rgba(240, 243, 245, 0) 100%
  );
}

.longe-fade--right {
  right: 0;
  background: linear-gradient(
    270deg,
    var(--color-bg) 40%,
    rgba(240, 243, 245, 0) 100%
  );
}

.longe-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(122, 130, 130, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
  flex-shrink: 0;
}

.longe-nav:hover {
  box-shadow: 0 8px 20px rgba(122, 130, 130, 0.25);
}

.longe-nav--prev {
  left: 88px;
}

.longe-nav--next {
  right: 88px;
}

.longe-card {
  flex: 0 0 327px;
  background: var(--color-white);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.longe-card__top {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.longe-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(47, 145, 133, 0.1);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 50px;
  white-space: nowrap;
  width: fit-content;
}

.longe-card__quote {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-dark);
  margin: 0;
  max-width: 285px;
}

.longe-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.longe-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.longe-card__avatar--teal {
  background: rgba(47, 145, 133, 0.1);
  color: var(--color-primary);
}

.longe-card__avatar--red {
  background: rgba(183, 19, 19, 0.1);
  color: #b71313;
}

.longe-card__avatar--blue {
  background: rgba(64, 158, 253, 0.1);
  color: #409efd;
}

.longe-card__avatar--photo {
  background: none;
  overflow: hidden;
  padding: 0;
}

.longe-card__avatar--logo {
  background: #fff7f7;
  overflow: hidden;
  padding: 6px;
}

.longe-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.longe-card__avatar--logo img {
  object-fit: contain;
  border-radius: 0;
}

.longe-card__support {
  font-size: 13px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-text-muted);
  margin: 0;
}

.longe-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 178px;
}

.longe-card__author-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: var(--color-dark);
}

.longe-card__author-sub {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-text-muted);
}

/* ─── Responsive ───────────────────────────────────────────────── */

@media (max-width: 768px) {
  .page-bg {
    padding: 12px;
  }

  .hero-wrapper {
    width: 100%;
    margin: 0;
    transform: none !important;
    height: auto !important;
  }

  /* ── Navbar: acima do copy, estático ───────────────────────────── */
  .navbar {
    position: static;
    transform: none;
    width: auto;
    border-radius: 16px;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
  }

  .navbar__links {
    display: none;
  }

  /* ── Copy: fora do card, abaixo da navbar ───────────────────────── */
  .hero__content {
    position: static;
    width: 100%;
    padding: 20px 20px 16px;
    align-items: flex-start;
    text-align: left;
  }

  .hero__headline {
    font-size: 34px;
    text-align: left;
  }

  .hero__body {
    font-size: 15px;
    text-align: left;
    max-width: 100%;
  }

  .hero__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero__actions--desktop {
    display: none;
  }

  .hero__actions--mobile {
    display: flex;
    padding: 0 20px 20px;
  }

  /* ── Card: visual puro — mulher + mockup ───────────────────────── */
  .hero__card {
    width: 100%;
    height: 340px;
    overflow: hidden;
    display: block;
    background: var(--color-bg);
    border-radius: 20px;
    margin-top: 0;
  }

  /* Fade de baixo pra cima — cobre o mock também */
  .hero__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      #f0f3f5 0%,
      rgba(240, 243, 245, 0.85) 30%,
      rgba(240, 243, 245, 0) 60%
    );
    z-index: 4;
    pointer-events: none;
  }

  .hero__bg-img {
    object-position: 18% top;
  }

  /* Phone: ancorado à direita, emerge do fundo */
  .hero__phone {
    display: block;
    position: absolute;
    left: auto;
    top: auto;
    right: 10px;
    bottom: -60px;
    width: 158px;
    height: auto;
    z-index: 3;
    padding: 0;
    margin: 0;
  }

  .hero__phone img {
    width: 100%;
    height: auto;
  }

  /* Ocultar elementos desnecessários no card mobile */
  .hero__activity,
  .hero__resumo,
  .hero__fade-bottom {
    display: none;
  }

  /* ── Features: fora do card, abaixo ────────────────────────────── */
  .hero__features {
    display: flex;
    flex-direction: column;
    position: static;
    width: 100%;
    padding: 12px 0 20px;
    gap: 6px;
  }

  .feature-card {
    padding: 8px 12px;
    border-radius: 40px;
  }

  .feature-card__icon {
    width: 32px;
    height: 32px;
  }

  .feature-card__icon img {
    width: 18px;
    height: 18px;
  }

  .feature-card__title {
    font-size: 13px;
  }

  .feature-card__sub {
    font-size: 11px;
  }

  .feature-card__metric {
    width: 40px;
    height: 40px;
  }

  .feature-card__metric-val {
    font-size: 9px;
  }

  .quote-section {
    padding: 40px 16px 70px;
  }

  .quote-card {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .quote-card-stack::before {
    left: 12px;
    right: 12px;
    height: calc(100% + 6px);
    border-radius: 28px;
  }

  .quote-card-stack::after {
    left: 24px;
    right: 24px;
    height: calc(100% + 10px);
    border-radius: 28px;
  }

  .quote-text {
    font-size: 19px;
  }

  .comparison-headline {
    font-size: 26px;
  }

  .comparison-cards {
    flex-direction: column;
    gap: 16px;
  }

  .comparison-card {
    max-width: none;
    padding: 16px;
    gap: 12px;
    border-radius: 20px;
  }

  .comparison-card__deco {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .comparison-card--before {
    background-image: none;
  }

  .comparison-card--after {
    background-image: linear-gradient(
      139deg,
      rgba(38, 102, 235, 1) 0%,
      rgba(56, 186, 248, 1) 100%
    );
    background-size: cover;
    background-position: center;
  }

  .comparison-card__tag {
    padding: 3px 8px;
    gap: 5px;
  }

  .comparison-card__tag-dot {
    width: 6px;
    height: 6px;
  }

  .comparison-card__tag-label {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .comparison-card__title {
    font-size: 16px;
  }

  .comparison-card__content {
    gap: 14px;
  }

  .comparison-list {
    gap: 10px;
  }

  .comparison-list__item {
    font-size: 13px;
    gap: 8px;
    align-items: flex-start;
  }

  .comparison-icon {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }

  .days-section {
    padding: 40px 16px;
  }

  .days-outer {
    flex-direction: column;
    border-radius: 28px;
    gap: 24px;
    padding: 0 0 12px;
  }

  .days-left {
    width: 100%;
    gap: 16px;
  }

  .days-header {
    padding: 24px 24px 0;
    gap: 16px;
  }

  .days-headline {
    font-size: 32px;
  }

  .days-stats {
    flex-direction: column;
    padding: 0 12px;
  }

  .days-stat__number {
    font-size: 42px;
  }

  .days-right {
    width: 100%;
    padding: 24px;
    border-radius: 0 0 26px 26px;
  }

  .days-metrics__row {
    flex-direction: column;
    gap: 16px;
  }

  /* ─── Features mobile ────────────────────────────────────────── */
  .features-section {
    padding: 40px 16px;
  }

  .features-headline {
    font-size: 32px;
  }

  .features-row--top {
    flex-direction: column;
    gap: 12px;
  }

  .fcard--sm {
    height: auto;
    min-height: 160px;
  }

  .features-row--bottom {
    flex-direction: column;
  }

  .fcard--dashboard {
    flex: none;
    height: 420px;
    padding: 20px;
  }

  .fcard__blur {
    left: -60px;
    top: -80px;
    width: 300px;
    height: 300px;
  }

  .fcard__macro {
    top: 16px;
    left: 16px;
    width: 200px;
    gap: 8px;
    padding: 10px;
  }

  .fcard__macro .macro-row {
    gap: 6px;
  }

  .fcard__macro .macro-item {
    height: 42px;
    padding: 5px;
    gap: 5px;
  }

  .fcard__macro .macro-item__icon {
    width: 30px;
    height: 30px;
  }

  .fcard__macro .macro-item__value {
    font-size: 10px;
  }

  .fcard__macro .macro-item__label {
    font-size: 12px;
  }

  .fcard__phone--dashboard {
    left: auto;
    right: -10px;
    top: 10px;
    width: 220px;
    height: auto;
  }

  .fcard__phone--dashboard img {
    width: 220px;
    height: auto;
  }

  .fcard__title--lg {
    font-size: 26px;
  }

  .fcard__desc--dark {
    font-size: 15px;
  }

  .fcard--presenca {
    width: 100%;
    height: 460px;
  }

  .fcard__phone-notif {
    left: 16px;
    top: 195px;
    width: calc(100% - 32px);
  }

  .fcard__notifs {
    width: 100%;
  }

  .fcard__phone-img {
    left: auto;
    right: 0;
    width: 200px;
    height: auto;
  }

  /* ─── Friction mobile ───────────────────────────────────────── */
  .friction-section {
    padding: 40px 16px;
  }

  .friction-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .friction-header {
    order: 1;
  }

  .friction-phone-wrap {
    order: 2;
  }

  .friction-phone-img {
    width: 100%;
    max-width: 100%;
  }

  .friction-grid {
    order: 3;
  }

  /* ─── Community mobile ───────────────────────────────────────── */
  .community-section {
    padding: 40px 16px;
  }

  .community-container {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .community-left {
    width: 100%;
    gap: 28px;
  }

  .community-headline {
    font-size: 32px;
  }

  .community-phone-wrap {
    justify-content: center;
  }

  .community-phone-img {
    max-width: 100%;
  }

  /* ─── Tribo mobile ──────────────────────────────────────────── */
  .tribo-section {
    padding: 56px 20px;
  }

  .tribo-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "cards";
    gap: 28px;
  }

  .tribo-pill {
    display: none;
  }

  .tribo-photo-wrap {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 4 / 3;
  }

  .tribo-headline {
    font-size: 36px;
  }

  .tribo-cards {
    grid-template-columns: 1fr;
  }

  .tribo-note {
    padding: 20px;
    align-items: flex-start;
  }

  .tribo-note__title {
    font-size: 16px;
  }

  /* ─── Inside mobile ─────────────────────────────────────────── */
  .inside-section {
    padding: 60px 0;
  }

  .inside-header {
    padding: 0 24px;
    margin-bottom: 32px;
  }

  .inside-headline {
    font-size: 32px;
  }

  .inside-track {
    padding-left: 24px;
    padding-right: 24px;
    gap: 12px;
  }

  .inside-card {
    flex: 0 0 200px;
  }

  /* ─── Longevidade mobile ─────────────────────────────────────── */
  .longe-section {
    padding: 60px 0;
  }

  .longe-header {
    padding: 0 24px;
    margin-bottom: 32px;
  }

  .longe-headline {
    font-size: 32px;
  }

  .longe-nav {
    display: none;
  }

  .longe-fade {
    width: 80px;
  }

  .longe-track {
    padding-left: 24px;
    padding-right: 24px;
    gap: 12px;
  }

  .longe-card {
    flex: 0 0 260px;
  }

  .longe-card__quote {
    width: auto;
  }

  /* ─── FAQ mobile ─────────────────────────────────────────────── */
  .faq-section {
    padding: 60px 0;
  }

  .faq-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .faq-left {
    max-width: 100%;
  }

  .faq-headline {
    font-size: 36px;
  }
}

/* ─── Tablet / landscape (769px – 1100px) ──────────────────────── */
/* Hero permanece no modo scale (JS) — só ajustamos as seções abaixo */
@media (min-width: 769px) and (max-width: 1100px) {
  .page-bg {
    overflow-x: clip;
  }

  .hero-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: auto !important;
  }

  .hero__card {
    width: 100%;
    height: 760px;
  }

  .navbar {
    left: 24px;
    transform: none;
    width: calc(100% - 48px);
    top: 28px;
    padding: 8px 8px 8px 22px;
  }

  .navbar__links {
    gap: 30px;
  }

  .hero__content {
    left: 50%;
    transform: translateX(-50%);
    top: 132px;
    width: min(620px, calc(100% - 160px));
  }

  .hero__headline {
    font-size: 44px;
  }

  .hero__body {
    max-width: 500px;
    font-size: 15px;
  }

  .hero__actions {
    gap: 12px;
  }

  .btn {
    padding: 14px 22px;
    font-size: 15px;
  }

  .hero__activity--bike {
    left: 26px;
    top: 116px;
    transform: rotate(-15deg) scale(0.82);
    transform-origin: top left;
  }

  .hero__activity--run {
    left: auto;
    right: 24px;
    top: 182px;
    transform: rotate(13deg) scale(0.82);
    transform-origin: top right;
  }

  .hero__phone {
    left: 50%;
    top: 452px;
    width: 250px;
    height: auto;
    transform: translateX(-50%) !important;
    animation: none !important;
  }

  .hero__phone img {
    width: 100%;
    height: auto;
  }

  .hero__features {
    left: auto;
    right: 12px;
    top: 450px;
    width: 240px;
    gap: 6px;
  }

  .feature-card {
    padding: 8px 10px;
    border-radius: 40px;
  }

  .feature-card__left {
    gap: 10px;
  }

  .feature-card__icon {
    width: 34px;
    height: 34px;
  }

  .feature-card__icon img {
    width: 18px;
    height: 18px;
  }

  .feature-card__title {
    font-size: 13px;
  }

  .feature-card__sub {
    font-size: 11px;
  }

  .feature-card__metric {
    width: 40px;
    height: 40px;
  }

  .feature-card__metric-val {
    font-size: 9px;
  }

  .hero__resumo {
    left: 12px;
    top: 536px;
    width: 228px;
    height: 168px;
    border-radius: 18px;
  }

  .hero__fade-bottom {
    height: 190px;
  }

  .hero__bg-img {
    object-position: 24% top;
  }

  /* ── Quote ─────────────────────────────────────────────────────── */
  .quote-section {
    padding: 8px 16px 64px;
  }

  .quote-card {
    padding: 32px 36px;
  }

  .quote-text {
    font-size: 26px;
  }

  /* ── Comparison ────────────────────────────────────────────────── */
  .comparison-section {
    padding: 56px 16px;
  }

  .comparison-headline {
    font-size: 34px;
  }

  .comparison-cards {
    flex-direction: row;
    gap: 16px;
    max-width: 100%;
    align-items: stretch;
  }

  .comparison-card {
    max-width: none;
    width: calc(50% - 8px);
    padding: 22px 18px;
    gap: 20px;
    border-radius: 24px;
  }

  .comparison-card__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .comparison-card--before {
    background-size: 100% 100%;
    background-position: top left;
  }

  .comparison-card--after {
    background-size: 100% 100%, cover;
    background-position: top left, center;
  }

  .comparison-card__tag {
    padding: 6px 10px;
    gap: 6px;
  }

  .comparison-card__tag-dot {
    width: 8px;
    height: 8px;
  }

  .comparison-card__tag-label {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .comparison-card__content {
    gap: 18px;
  }

  .comparison-list {
    gap: 14px;
  }

  .comparison-list__item {
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.35;
  }

  .comparison-icon {
    width: 22px;
    height: 22px;
  }

  /* ── Days: coluna fixa de 510px estica demais — empilhar ───────── */
  .days-section {
    padding: 56px 16px;
  }

  .days-outer {
    flex-direction: column;
    gap: 24px;
    border-radius: 28px;
    padding: 0 0 12px;
  }

  .days-left {
    width: 100%;
    gap: 16px;
  }

  .days-header {
    padding: 24px 24px 0;
  }

  .days-headline {
    font-size: 36px;
  }

  .days-stats {
    flex-direction: row;
    padding: 0 12px;
  }

  .days-stat__number {
    font-size: 44px;
  }

  .days-right {
    width: 100%;
    padding: 24px;
    border-radius: 0 0 26px 26px;
  }

  /* ── Features ──────────────────────────────────────────────────── */
  .features-section {
    padding: 56px 16px;
  }

  .features-headline {
    font-size: 36px;
  }

  .fcard--dashboard {
    height: 440px;
  }

  /* ── Community: coluna de 582px fica sem espaço — empilhar ─────── */
  .community-section {
    padding: 56px 16px;
  }

  .community-container {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .community-left {
    width: 100%;
    gap: 28px;
  }

  .community-headline {
    font-size: 36px;
  }

  .community-phone-wrap {
    justify-content: center;
  }

  .community-phone-img {
    max-width: 480px;
    margin: 0 auto;
  }

  /* ── Tribo: grid 2 colunas fica estreito — empilhar ───────────── */
  .tribo-section {
    padding: 56px 20px;
  }

  .tribo-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "cards";
    gap: 28px;
  }

  .tribo-pill {
    display: none;
  }

  .tribo-photo-wrap {
    border-radius: 24px;
    aspect-ratio: 16 / 9;
  }

  .tribo-headline {
    font-size: 40px;
  }

  .tribo-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .tribo-note {
    padding: 20px 24px;
  }

  /* ── Friction: grid 564px fixo fica apertado — empilhar ────────── */
  .friction-section {
    padding: 56px 16px;
  }

  .friction-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .friction-header {
    order: 1;
  }

  .friction-phone-wrap {
    order: 2;
    max-width: 480px;
    margin: 0 auto;
  }

  .friction-phone-img {
    width: 100%;
  }

  .friction-grid {
    order: 3;
  }

  /* ── Inside ────────────────────────────────────────────────────── */
  .inside-section {
    padding: 56px 0;
  }

  .inside-headline {
    font-size: 36px;
  }

  .inside-track {
    padding-left: 32px;
    padding-right: 32px;
    gap: 12px;
  }

  .inside-card {
    flex: 0 0 210px;
  }

  /* ── Longe ─────────────────────────────────────────────────────── */
  .longe-section {
    padding: 56px 0;
  }

  .longe-headline {
    font-size: 36px;
  }

  .longe-nav {
    display: none;
  }

  .longe-fade {
    width: 80px;
  }

  .longe-track {
    padding-left: 32px;
    padding-right: 32px;
    gap: 12px;
  }

  .longe-card {
    flex: 0 0 280px;
  }

  /* ── FAQ ───────────────────────────────────────────────────────── */
  .faq-section {
    padding: 56px 0;
  }

  .faq-container {
    padding: 0 32px;
    gap: 48px;
  }

  .faq-headline {
    font-size: 36px;
  }

  /* ── Footer ────────────────────────────────────────────────────── */
  .site-footer {
    padding: 36px 28px;
  }
}

/* ─── CTA Section ───────────────────────────────────────────────── */
.cta-section {
  padding: 0 16px 80px;
}

.cta-wrap {
  max-width: 1194px;
  margin: 0 auto;
  position: relative;
  padding-top: 175px;
}

.cta-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(136deg, #ff4d45 0%, #fea52d 100%);
  border-radius: 40px;
  padding: 40px 40px 40px 80px;
  height: 462px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 36px;
}

.cta-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-headline {
  font-size: 49px;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  margin: 0;
  max-width: 606px;
}

.cta-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 485px;
}

.cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px 8px 20px;
  width: 171px;
  background: #fff;
  border-radius: 100px;
  text-decoration: none;
  flex-shrink: 0;
}

.cta-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-btn__text {
  display: flex;
  flex-direction: column;
}

.cta-btn__label {
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  color: #383838;
  white-space: nowrap;
}

.cta-btn__store {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #01060a;
  white-space: nowrap;
}

.cta-deco-blocks {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 353px;
  height: 125px;
  pointer-events: none;
  z-index: 1;
}

.cta-blob {
  position: absolute;
  left: 690px;
  top: 125px;
  width: 513px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

.cta-phone {
  position: absolute;
  left: 407px;
  bottom: 0;
  width: 817px;
  height: 637px;
  pointer-events: none;
  z-index: 3;
}

.cta-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
}

.footer-inner {
  max-width: 1194px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f3f5;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

.footer-nav__link {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #000204;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav__link:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #fff;
  border: 1px solid #f0f3f5;
  border-radius: 50%;
  color: #000204;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-social__btn:hover {
  background: #f0f3f5;
}

.footer-copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #000204;
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .cta-wrap {
    padding-top: 120px;
  }

  .cta-card {
    height: auto;
    min-height: 380px;
    padding: 40px 40px 180px;
  }

  .cta-headline {
    font-size: 36px;
  }

  .cta-phone {
    left: auto;
    right: -60px;
    bottom: 0;
    width: 520px;
  }

  .cta-blob {
    left: auto;
    right: 60px;
    top: 80px;
    width: 340px;
  }
}

@media (max-width: 640px) {
  .inline-cta-section {
    padding: 0 12px 56px;
  }

  .inline-cta {
    padding: 24px 20px;
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .inline-cta__content {
    max-width: none;
  }

  .inline-cta__title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .inline-cta__body {
    max-width: none;
    font-size: 15px;
    line-height: 1.5;
  }

  .inline-cta__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cta-section {
    padding: 0 12px 60px;
    overflow-x: clip;
  }

  .cta-wrap {
    padding-top: 28px;
    overflow-x: clip;
  }

  .cta-card {
    padding: 28px 20px clamp(460px, 96vw, 620px);
    height: auto;
    min-height: clamp(920px, 180vw, 1420px);
    border-radius: 28px;
  }

  .cta-left {
    max-width: none;
    width: 100%;
    gap: 24px;
  }

  .cta-text {
    gap: 14px;
  }

  .cta-headline {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 120%;
    max-width: none;
  }

  .cta-body {
    font-size: 16px;
    line-height: 145%;
    max-width: none;
  }

  .cta-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-btn {
    width: min(100%, 440px);
    padding: 14px 24px;
    gap: 16px;
  }

  .cta-btn__label {
    font-size: 14px;
    line-height: 140%;
  }

  .cta-btn__store {
    font-size: 16px;
    line-height: 140%;
  }

  .cta-deco-blocks {
    display: block;
    width: 200px;
    height: auto;
    left: 0px;
    bottom: 20%;
  }

  .cta-phone {
    left: 25%;
    right: auto;
    top: auto;
    bottom: 0;
    width: min(760px, 114%);
    height: auto;
    transform: translateX(-46%);
  }

  .cta-blob {
    display: block;
    left: auto;
    right: -110px;
    top: auto;
    bottom: 110px;
    width: 260px;
    opacity: 0.32;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .footer-nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .site-footer {
    padding: 32px 24px;
  }
}

@media (max-width: 420px) {
  .cta-card {
    padding-inline: 18px;
    padding-bottom: clamp(420px, 100vw, 540px);
    min-height: clamp(840px, 186vw, 1180px);
  }

  .cta-headline {
    font-size: clamp(30px, 9.8vw, 42px);
  }

  .cta-body {
    font-size: 15px;
  }

  .cta-btn {
    padding: 13px 20px;
  }

  .cta-phone {
    width: min(700px, 122%);
    bottom: 0;
    transform: translateX(-47%);
  }

  .cta-blob {
    right: -130px;
    bottom: 92px;
    width: 230px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Extra timing token ────────────────────────────────────────── */
:root {
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Navbar scrolled ───────────────────────────────────────────── */
.navbar {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 2, 4, 0.08);
}

/* ─── Keyframes ─────────────────────────────────────────────────── */
@keyframes _fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes _fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes _fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes _scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes _floatPillA {
  0%, 100% { translate: 0 0px; }
  50%       { translate: 0 -6px; }
}

@keyframes _floatPillB {
  0%, 100% { translate: 0 0px; }
  50%       { translate: 0 -5px; }
}

@keyframes _floatBike {
  0%, 100% { transform: rotate(-15deg) translateY(0px); }
  50%       { transform: rotate(-15deg) translateY(-8px); }
}

@keyframes _floatRun {
  0%, 100% { transform: rotate(13deg) translateY(0px); }
  50%       { transform: rotate(13deg) translateY(-8px); }
}

@keyframes _pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* ─── Hero entrance (dispara no load, CSS puro) ─────────────────── */
.hero__badge {
  animation: _fadeDown 0.55s var(--ease-spring) 0.15s both;
}

.hero__headline {
  animation: _fadeUp 0.65s var(--ease-spring) 0.25s both;
}

.hero__body {
  animation: _fadeUp 0.65s var(--ease-spring) 0.35s both;
}

.hero__actions {
  animation: _fadeUp 0.55s var(--ease-spring) 0.45s both;
}

.hero__phone {
  animation: _fadeUp 0.7s var(--ease-spring) 0.55s both;
}

.hero__activity--bike {
  animation:
    _fadeIn   0.45s ease 0.5s  both,
    _floatBike 4s  ease-in-out 1.2s infinite;
}

.hero__activity--run {
  animation:
    _fadeIn   0.45s ease 0.65s both,
    _floatRun  4s  ease-in-out 1.5s infinite;
}

.hero__features .feature-card:nth-child(1) { animation: _fadeUp 0.5s var(--ease-spring) 0.60s both; }
.hero__features .feature-card:nth-child(2) { animation: _fadeUp 0.5s var(--ease-spring) 0.68s both; }
.hero__features .feature-card:nth-child(3) { animation: _fadeUp 0.5s var(--ease-spring) 0.76s both; }
.hero__features .feature-card:nth-child(4) { animation: _fadeUp 0.5s var(--ease-spring) 0.84s both; }
.hero__features .feature-card:nth-child(5) { animation: _fadeUp 0.5s var(--ease-spring) 0.92s both; }

.hero__badge-dot {
  animation: _pulseDot 2.2s ease-in-out 1.6s infinite;
}

/* ─── Scroll reveal system ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition:
    opacity   0.6s var(--ease-spring),
    transform 0.6s var(--ease-spring);
  transition-delay: calc(var(--stagger-i, 0) * 90ms);
}

[data-reveal="up"]    { transform: translateY(28px); }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.93); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Tribo pill float + ring (fires once visual enters viewport) ── */
.tribo-visual.is-visible .tribo-pill--members  { animation: _floatPillA 3.6s ease-in-out 0.8s infinite; }
.tribo-visual.is-visible .tribo-pill--entered  { animation: _floatPillB 4.1s ease-in-out 1.2s infinite; }
.tribo-visual.is-visible .tribo-pill--group    { animation: _floatPillA 3.9s ease-in-out 1.5s infinite; }
.tribo-visual.is-visible .tribo-pill--goal     { animation: _floatPillB 4.3s ease-in-out 1.0s infinite; }
.tribo-visual.is-visible .tribo-pill--strength { animation: _floatPillA 3.5s ease-in-out 0.6s infinite; }
.tribo-visual.is-visible .tribo-pill__ring-fill { stroke-dasharray: 127.2 138.23; }

/* ─── Card hover elevations ─────────────────────────────────────── */
.fcard {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.fcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(122, 130, 130, 0.22);
}

.comm-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(122, 130, 130, 0.16);
}

.comparison-card {
  transition: transform 0.3s var(--ease-spring);
}
.comparison-card:hover {
  transform: translateY(-6px);
}

.longe-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.longe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(122, 130, 130, 0.16);
}

.days-stat {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.days-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(122, 130, 130, 0.12);
}

.btn {
  transition: opacity 0.15s, transform 0.15s;
}
.btn:hover {
  transform: scale(1.02);
}

/* ─── Progress bars ─────────────────────────────────────────────── */
.days-metric__bar-fill {
  transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── prefers-reduced-motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Pricing page ─────────────────────────────────────────────────────────── */

.plans-page {
  background: var(--color-bg);
  min-height: 100vh;
}

.plans-hero-section {
  padding: 80px 16px 48px;
  text-align: center;
}

.plans-hero-section h1 {
  font-size: 48px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.plans-hero-section p {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.plans-section {
  padding: 0 16px 80px;
}

.plans-container {
  max-width: 1000px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.plan-card {
  background: var(--color-white);
  border-radius: 30px;
  padding: 32px 24px;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.plan-card--popular {
  border-color: var(--color-primary);
  box-shadow: 0 4px 24px rgba(47, 145, 133, 0.14);
}

.plan-card__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-card__interval {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark);
}

.plan-card__price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.plan-card__amount {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1;
}

.plan-card__suffix {
  font-size: 16px;
  color: var(--color-text-muted);
  padding-bottom: 4px;
}

.plan-card__save {
  display: inline-flex;
  align-self: flex-start;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.plan-card__cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  cursor: pointer;
}

.plan-card__cta[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.plan-card--skeleton {
  min-height: 200px;
  background: linear-gradient(90deg, #e8ecee 25%, #f0f3f5 50%, #e8ecee 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.4s ease-in-out infinite;
  border: none;
}

@keyframes skeleton-pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.plans-error,
.plans-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--color-text-muted);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.plans-auth-banner {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(47, 145, 133, 0.07);
  border-radius: 20px;
  padding: 24px 20px;
  margin-bottom: 32px;
  text-align: center;
}

.plans-auth-banner p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0;
}

.plans-auth-banner strong {
  color: var(--color-dark);
}

.plans-auth-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.plans-auth-error {
  display: none;
  color: #c0392b;
  font-size: 14px;
}

.plans-benefits-section {
  padding: 0 16px 80px;
}

.plans-benefits-section .plans-container {
  max-width: 600px;
}

.plans-benefits-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 32px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--color-dark);
}

.benefit-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.plans-trust {
  padding: 0 16px 64px;
  text-align: center;
}

.plans-trust p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.plans-trust a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

/* ─── Auth / Login page ────────────────────────────────────────────────────── */

.auth-page {
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.auth-card {
  background: var(--color-white);
  border-radius: 30px;
  padding: 40px 32px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.auth-card h1 {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
}

.auth-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  text-align: center;
  margin: -8px 0 0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-form .btn {
  padding: 11px 20px;
  font-size: 15px;
}

.auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-input-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
}

.auth-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0, 2, 4, 0.12);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body, 'Roboto', sans-serif);
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.auth-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.auth-input--name {
  display: none;
}

.auth-input--name.visible {
  display: block;
}

.auth-email-display {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border: 1.5px solid rgba(0, 2, 4, 0.12);
  border-radius: 12px;
  font-size: 15px;
  color: var(--color-dark);
  background: rgba(0, 2, 4, 0.03);
}

.auth-email-display span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-link {
  background: none;
  border: none;
  padding: 0 0 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body, 'Roboto', sans-serif);
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-social-hint {
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 2, 4, 0.1);
}

.auth-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn--google {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1.5px solid rgba(0, 2, 4, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--font-body, 'Roboto', sans-serif);
}

.btn--google:hover {
  background: #f8f9fa;
}

.btn--apple {
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: var(--font-body, 'Roboto', sans-serif);
}

.btn--apple:hover {
  opacity: 0.85;
}

.btn--google:disabled,
.btn--apple:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-error {
  color: #c0392b;
  font-size: 14px;
  text-align: center;
  display: none;
  padding: 10px 14px;
  background: rgba(192, 57, 43, 0.07);
  border-radius: 10px;
}

.auth-terms {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}

.auth-terms a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

@media (max-height: 820px) {
  .auth-page {
    padding: 20px 16px;
  }
  .auth-card {
    padding: 28px 28px;
    gap: 14px;
  }
  .auth-card h1 {
    font-size: 22px;
  }
  .auth-card p {
    font-size: 14px;
  }
}

@media (max-height: 700px) {
  .auth-page {
    padding: 12px 16px;
  }
  .auth-card {
    padding: 20px 24px;
    gap: 10px;
  }
  .auth-card__logo img {
    height: 24px;
    width: auto;
  }
  .auth-input {
    padding: 9px 12px;
    font-size: 14px;
  }
}

/* ─── Checkout sucesso page ────────────────────────────────────────────────── */

.success-page {
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  text-align: center;
}

.success-card {
  background: var(--color-white);
  border-radius: 30px;
  padding: 48px 32px;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(47, 145, 133, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.success-card h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark);
}

.success-card p {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 340px;
}

.success-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.success-store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 12px;
  padding: 10px 20px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.success-store-btn:hover {
  opacity: 0.85;
}

.success-store-btn__label {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.success-store-btn__sub {
  font-size: 10px;
  opacity: 0.75;
}

.success-store-btn__name {
  font-size: 15px;
  font-weight: 600;
}

.success-loading {
  color: var(--color-text-muted);
  font-size: 15px;
}

.success-back {
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
