/* AcompanhaFit marketing landing — cinematic, conversion-led */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --af-ink: #0c1f1a;
  --af-ink-soft: #1a332c;
  --af-muted: #5f756d;
  --af-muted-on-dark: rgba(232, 246, 242, 0.72);
  --af-cream: #f4faf7;
  --af-surface: #eef6f3;
  --af-primary: #0e7c6b;
  --af-primary-deep: #095a4e;
  --af-accent: #e8924a;
  --af-danger: #d6455d;
  --af-border: rgba(12, 31, 26, 0.1);
  --af-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --af-display: 'Manrope', system-ui, sans-serif;
  --af-body: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.af-landing {
  margin: 0;
  font-family: var(--af-body);
  color: var(--af-ink);
  background: var(--af-cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.af-landing a {
  text-decoration: none;
}

.af-landing a:not(.af-btn):not(.af-top__login) {
  color: inherit;
}

.af-landing img {
  max-width: 100%;
  display: block;
}

/* ——— Reveal motion ——— */
.af-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--af-ease), transform 0.9s var(--af-ease);
}

.af-reveal.is-in {
  opacity: 1;
  transform: none;
}

.af-reveal-delay-1 { transition-delay: 0.12s; }
.af-reveal-delay-2 { transition-delay: 0.24s; }
.af-reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .af-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .af-hero__media img {
    animation: none !important;
  }
}

/* ——— Buttons ——— */
.af-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--af-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 0.9rem 1.55rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--af-ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.af-btn:hover {
  transform: translateY(-2px);
}

.af-btn--primary {
  background: var(--af-primary);
  color: #fff;
  box-shadow: 0 12px 32px rgba(14, 124, 107, 0.28);
}

.af-btn--primary:hover {
  background: var(--af-primary-deep);
  color: #fff;
}

.af-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.af-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.af-btn--outline {
  background: transparent;
  color: var(--af-ink);
  border-color: rgba(12, 31, 26, 0.22);
}

.af-btn--outline:hover {
  border-color: var(--af-primary);
  color: var(--af-primary);
}

.af-btn--accent {
  background: var(--af-accent);
  color: #1a1208;
  box-shadow: 0 12px 28px rgba(232, 146, 74, 0.35);
}

.af-btn--accent:hover {
  background: #d97f32;
  color: #1a1208;
}

.af-btn--lg {
  padding: 1.05rem 1.85rem;
  font-size: 1.02rem;
}

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

/* ——— Nav ——— */
.af-top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1.25rem 0;
}

.af-top__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.af-top__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-family: var(--af-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.af-top__links a:hover {
  color: #fff;
}

.af-top__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.af-top__login {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--af-body);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.55rem 0.85rem;
}

.af-top__login:hover {
  color: #fff;
}

.af-top .af-btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
}

@media (min-width: 900px) {
  .af-top__links {
    display: flex;
  }
}

/* ——— Hero ——— */
.af-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.af-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.af-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  animation: af-kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes af-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.af-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8, 22, 18, 0.82) 0%, rgba(8, 22, 18, 0.45) 42%, rgba(8, 22, 18, 0.55) 100%),
    radial-gradient(ellipse 80% 60% at 50% 55%, rgba(8, 22, 18, 0.2), rgba(8, 22, 18, 0.65));
}

.af-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 6.5rem 1.5rem 5rem;
  text-align: center;
}

.af-hero__brand {
  display: block;
  font-family: var(--af-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 auto 1.1rem;
  white-space: nowrap;
}

.af-hero__brand-fit {
  color: #7dd4c4;
}

.af-hero__title {
  font-family: var(--af-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 16ch;
  margin: 0 auto 1.1rem;
}

.af-hero__lead {
  font-family: var(--af-body);
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  color: var(--af-muted-on-dark);
  max-width: 38ch;
  margin: 0 auto 1.85rem;
  font-weight: 400;
  line-height: 1.55;
}

.af-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.af-hero__hint {
  margin-top: 1rem;
  font-family: var(--af-body);
  font-size: 0.88rem;
  color: rgba(232, 246, 242, 0.55);
  font-weight: 400;
}

.af-hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.55));
  animation: af-scroll-line 2.2s ease-in-out infinite;
}

@keyframes af-scroll-line {
  0%, 100% { opacity: 0.25; transform: translateX(-50%) scaleY(0.7); }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

/* ——— Shared layout ——— */
.af-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.af-section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.af-kicker {
  display: block;
  font-family: var(--af-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--af-primary);
  margin-bottom: 0.85rem;
}

.af-h2 {
  font-family: var(--af-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.16;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.af-lede {
  font-family: var(--af-body);
  font-size: 1.1rem;
  color: var(--af-muted);
  max-width: 42ch;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

/* ——— Problem ——— */
.af-problem {
  background:
    radial-gradient(700px 360px at 100% 0%, rgba(214, 69, 93, 0.07), transparent 55%),
    var(--af-cream);
}

.af-problem__grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .af-problem__grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }
}

.af-problem__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.af-problem__list li {
  padding: 1.35rem 0;
  border-top: 1px solid var(--af-border);
  display: grid;
  gap: 0.35rem;
}

.af-problem__list li:last-child {
  border-bottom: 1px solid var(--af-border);
}

.af-problem__list strong {
  font-family: var(--af-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.af-problem__list span {
  color: var(--af-muted);
  font-family: var(--af-body);
  font-size: 0.98rem;
  font-weight: 400;
}

.af-problem__quote {
  position: relative;
  padding: 2rem 0 0 1.5rem;
  border-left: 3px solid var(--af-accent);
}

.af-problem__quote p {
  font-family: var(--af-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 1rem;
  font-weight: 600;
}

.af-problem__quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--af-muted);
  font-weight: 600;
}

/* ——— Split visual ——— */
.af-split {
  background: var(--af-ink);
  color: #e8f6f2;
  overflow: hidden;
}

.af-split__grid {
  display: grid;
  gap: 0;
  min-height: 70vh;
}

@media (min-width: 960px) {
  .af-split__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.af-split__visual {
  position: relative;
  min-height: 420px;
}

.af-split__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.af-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
}

.af-split__copy .af-kicker {
  color: #7dd4c4;
}

.af-split__copy .af-h2 {
  color: #fff;
  max-width: 14ch;
}

.af-split__copy .af-lede {
  color: var(--af-muted-on-dark);
  margin-bottom: 2rem;
}

.af-signal {
  display: grid;
  gap: 1rem;
}

.af-signal__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(232, 246, 242, 0.12);
}

.af-signal__row:last-child {
  border-bottom: 0;
}

.af-signal__name {
  font-weight: 700;
  font-size: 1rem;
}

.af-signal__meta {
  font-size: 0.85rem;
  color: var(--af-muted-on-dark);
  margin-top: 0.15rem;
}

.af-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.af-badge--high {
  background: rgba(214, 69, 93, 0.2);
  color: #ff8fa0;
}

.af-badge--mid {
  background: rgba(232, 146, 74, 0.2);
  color: #f0b67a;
}

/* ——— How ——— */
.af-how {
  background:
    radial-gradient(800px 400px at 0% 100%, rgba(14, 124, 107, 0.08), transparent 50%),
    var(--af-cream);
}

.af-how__steps {
  display: grid;
  gap: 0;
  margin-top: 3.5rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .af-how__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.af-how__step {
  counter-increment: step;
  padding: 2rem 0;
  border-top: 1px solid var(--af-border);
}

@media (min-width: 800px) {
  .af-how__step {
    border-top: 0;
    padding: 0;
    border-left: 1px solid var(--af-border);
    padding-left: 2rem;
  }
  .af-how__step:first-child {
    border-left: 0;
    padding-left: 0;
  }
}

.af-how__step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--af-display);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  color: var(--af-primary);
  line-height: 1;
  margin-bottom: 1.1rem;
  opacity: 0.9;
}

.af-how__step h3 {
  font-family: var(--af-display);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  font-weight: 700;
}

.af-how__step p {
  margin: 0;
  color: var(--af-muted);
  font-size: 1rem;
  max-width: 28ch;
}

/* ——— Product moments ——— */
.af-moments {
  background: #fff;
}

.af-moments__intro {
  margin-bottom: 3rem;
}

.af-moments__rail {
  display: grid;
  gap: 4rem;
}

.af-moment {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .af-moment {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }
  .af-moment--flip {
    direction: rtl;
  }
  .af-moment--flip > * {
    direction: ltr;
  }
}

.af-moment h3 {
  font-family: var(--af-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
  font-weight: 700;
  max-width: 16ch;
  line-height: 1.18;
}

.af-moment p {
  margin: 0;
  color: var(--af-muted);
  font-size: 1.05rem;
  max-width: 38ch;
}

.af-ui {
  background: linear-gradient(160deg, #102820 0%, #0e3d34 55%, #1a332c 100%);
  border-radius: 1.25rem;
  padding: 1.35rem;
  color: #e8f6f2;
  box-shadow: 0 28px 60px rgba(12, 31, 26, 0.22);
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.af-ui::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(14, 124, 107, 0.35), transparent 65%);
  pointer-events: none;
}

.af-ui__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(232, 246, 242, 0.55);
  position: relative;
  z-index: 1;
}

.af-ui__title {
  color: #fff;
  font-weight: 700;
}

.af-ui__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.af-ui__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
}

.af-ui__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.af-ui__item span {
  font-size: 0.8rem;
  color: rgba(232, 246, 242, 0.55);
}

.af-ui__portal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.af-ui__tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  padding: 1.1rem;
}

.af-ui__tile strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.af-ui__tile span {
  font-size: 0.78rem;
  color: rgba(232, 246, 242, 0.55);
}

.af-ui__meter {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 0.75rem;
  overflow: hidden;
}

.af-ui__meter > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--af-primary), #7dd4c4);
}

/* ——— Outcomes ——— */
.af-outcomes {
  background:
    linear-gradient(180deg, var(--af-surface) 0%, var(--af-cream) 100%);
}

.af-outcomes__grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 800px) {
  .af-outcomes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.af-outcome h3 {
  font-family: var(--af-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.af-outcome p {
  margin: 0;
  color: var(--af-muted);
  font-family: var(--af-body);
  font-size: 1rem;
  font-weight: 400;
}

.af-outcome__num {
  font-family: var(--af-display);
  font-weight: 800;
  font-size: 2.85rem;
  letter-spacing: -0.035em;
  color: var(--af-primary);
  line-height: 1;
  margin-bottom: 0.85rem;
}

/* ——— Pricing ——— */
.af-pricing {
  background: #fff;
}

.af-pricing__intro {
  text-align: left;
  margin-bottom: 2.75rem;
}

.af-pricing__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .af-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 880px;
  }
}

.af-plan {
  border: 1px solid var(--af-border);
  border-radius: 1.35rem;
  padding: 1.85rem 1.75rem 1.75rem;
  background: var(--af-cream);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--af-ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.af-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(12, 31, 26, 0.08);
}

.af-plan--featured {
  background: var(--af-ink);
  color: #e8f6f2;
  border-color: transparent;
  box-shadow: 0 24px 56px rgba(12, 31, 26, 0.22);
}

.af-plan--featured .af-plan__price,
.af-plan--featured .af-plan__name {
  color: #fff;
}

.af-plan--featured .af-plan__meta,
.af-plan--featured .af-plan__features {
  color: var(--af-muted-on-dark);
}

.af-plan__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--af-accent);
  color: #1a1208;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.af-plan__name {
  font-family: var(--af-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.af-plan__price {
  font-family: var(--af-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.5rem 0 0.25rem;
}

.af-plan__price small {
  font-family: var(--af-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.65;
}

.af-plan__meta {
  font-size: 0.9rem;
  color: var(--af-muted);
  margin-bottom: 1.5rem;
}

.af-plan__features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--af-muted);
}

.af-plan__features li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.af-plan__features li::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--af-primary);
}

.af-plan--featured .af-plan__features li::before {
  background: #7dd4c4;
}

.af-pricing__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--af-muted);
}

/* ——— Final CTA ——— */
.af-final {
  position: relative;
  overflow: hidden;
  background: var(--af-ink);
  color: #fff;
  text-align: center;
}

.af-final::before {
  content: '';
  position: absolute;
  inset: -20% 20% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(14, 124, 107, 0.35), transparent 65%);
  pointer-events: none;
}

.af-final .af-wrap {
  position: relative;
  z-index: 1;
  padding-top: clamp(4.5rem, 10vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 10vw, 6.5rem);
}

.af-final .af-h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.af-final .af-lede {
  margin: 0 auto 2rem;
  color: var(--af-muted-on-dark);
}

.af-final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ——— Footer ——— */
.af-foot {
  background: #081612;
  color: rgba(232, 246, 242, 0.55);
  padding: 2rem 0 2.5rem;
  font-size: 0.9rem;
}

.af-foot__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.af-foot strong {
  color: rgba(232, 246, 242, 0.88);
  font-weight: 700;
}
