﻿/* ===== CUSTOM FONTS ===== */
@font-face {
  font-family: 'Sequel100Black';
  src: url('assets/fonts/Sequel100Black-45.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Times CG';
  src: url('assets/fonts/Times CG.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Times CG';
  src: url('assets/fonts/Times CG Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Times CG';
  src: url('assets/fonts/Times CG Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Times CG';
  src: url('assets/fonts/Times CG Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #E8B84B;
  --gold-light: #F5CB5C;
  --gold-dark: #C49A2E;
  --bg: #000000;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-elevated: #1A1A1A;
  --text: #F5F5F5;
  --text-muted: #999999;
  --text-dim: #666666;
  --border: rgba(200, 164, 86, 0.12);
  --border-hover: rgba(200, 164, 86, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 60px rgba(200, 164, 86, 0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold);
}

/* ===== TYPOGRAPHY ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Sequel100Black', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0A0A;
  padding: 16px 32px;
  box-shadow: 0 4px 20px rgba(200, 164, 86, 0.3);
}

/* Só os CTAs decisivos pulsam: herói, compra e fechamento */
.btn--pulse {
  animation: btn-glow 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn--pulse {
    animation: none;
  }
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(200, 164, 86, 0.3); }
  50%       { box-shadow: 0 4px 36px rgba(200, 164, 86, 0.75); }
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 164, 86, 0.55);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  animation: none;
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.logo-img {
  height: 38px;
  width: auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  overflow: clip;
  background: #000;
}

.hero__logo-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 0 32px;
}

.hero__logo {
  height: 48px;
  width: auto;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 160px);
  overflow: visible;
}

.hero__image {
  margin-right: calc(-50vw + 520px);
}

.hero__title {
  font-family: 'Sequel100Black', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero__title-display {
  font-family: 'Sequel100Black', sans-serif;
}

.hero__title-accent {
  font-family: 'Sequel100Black', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 164, 86, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero__photo {
  position: relative;
  width: 100%;
  max-width: 920px;
  object-fit: contain;
}

/* Floating cards */
.hero__card {
  position: absolute;
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 164, 86, 0.22);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 190px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 10;
}

.hero__card--top-left {
  top: 12%;
  left: 4%;
}

.hero__card--bottom-left {
  bottom: 26%;
  left: 8%;
}

.hero__card--bottom-right {
  bottom: 18%;
  right: 28%;
}

.hero__card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero__card-value {
  font-family: 'Sequel100Black', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.hero__card-title-big {
  font-family: 'Sequel100Black', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 8px;
}

.hero__card-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero__card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__card-dot--green {
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}


@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===== INCLUSO ===== */
.incluso {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.incluso__gallery-wrapper {
  position: relative;
}

.incluso__arrow {
  display: none;
}

@media (min-width: 1025px) {
  .incluso__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 86, 0.3);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
  }

  .incluso__arrow:hover {
    background: rgba(200, 164, 86, 0.15);
    border-color: var(--gold);
  }

  .incluso__arrow--prev {
    left: -24px;
  }

  .incluso__arrow--next {
    right: -24px;
  }

  .incluso__arrow:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
  }
}

.incluso__gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  margin: 0 -24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.incluso__gallery::-webkit-scrollbar {
  display: none;
}

.incluso__card {
  position: relative;
  flex: 0 0 280px;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: var(--transition);
}

.incluso__card:hover {
  transform: translateY(-6px) scale(1.02);
}

.incluso__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.incluso__card:hover .incluso__card-bg {
  transform: scale(1.05);
}

/* Card backgrounds â€” real images */
.incluso__card-bg--1 { background: url('assets/01.webp') center center / cover no-repeat; }
.incluso__card-bg--2 { background: url('assets/02.webp') center center / cover no-repeat; }
.incluso__card-bg--3 { background: url('assets/03.webp') center center / cover no-repeat; }
.incluso__card-bg--4 { background: url('assets/04.webp') center center / cover no-repeat; }
.incluso__card-bg--5 { background: url('assets/05.webp') center center / cover no-repeat; }
.incluso__card-bg--6 { background: url('assets/06.webp') center center / cover no-repeat; }

.incluso__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.97) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.incluso__card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.incluso__number {
  font-family: 'Sequel100Black', sans-serif;
  font-size: 5rem;
  font-weight: 400;
  color: rgba(200, 164, 86, 0.18);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
}

.incluso__card h3 {
  font-family: 'Sequel100Black', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}

.incluso__card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.incluso__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.incluso__card:hover::after {
  opacity: 1;
}

/* ===== IA SECTION ===== */
/* ===== APP ===== */
.app-section {
  position: relative;
  padding: 80px 0;
  background: #000000;
  overflow: hidden;
}

.app-section__bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232, 184, 75, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.app-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.app-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-section__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.app-section__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-section__title {
  font-family: 'Sequel100Black', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.app-section__lead {
  color: rgba(245, 245, 245, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}

.app-section__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}

.app-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 300px;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 80px rgba(232, 184, 75, 0.15);
}

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

.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 184, 75, 0.12);
  border-radius: 12px;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.5;
  transition: var(--transition);
}

.app-feature:hover {
  background: rgba(232, 184, 75, 0.07);
  border-color: rgba(232, 184, 75, 0.25);
}

.app-feature svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.app-feature--lock {
  justify-content: flex-start;
  background: transparent;
  border: none;
  color: rgba(245, 245, 245, 0.4);
  font-size: 0.85rem;
  padding: 8px;
}

.app-feature--lock:hover {
  background: transparent;
  border-color: transparent;
}

/* Brilho dourado atrÃ¡s do celular */
.app-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 184, 75, 0.25) 0%, rgba(232, 184, 75, 0.08) 40%, transparent 70%);
  animation: float-orb 8s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -20px); }
  66% { transform: translate(-10px, 15px); }
}

/* ===== TRANSFORMACAO ===== */
.transformacao {
  padding: 80px 0;
  background: var(--bg);
}

.transformacao__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.transformacao__card {
  border-radius: 20px;
  padding: 36px;
}

.transformacao__card--antes {
  background: #f5f0e8;
  color: #1a1a1a;
}

.transformacao__card--depois {
  background: #111009;
  border: 1px solid rgba(232, 184, 75, 0.4);
  color: var(--text);
  animation: card-pulse 2.4s ease-in-out infinite;
}

@keyframes card-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(232, 184, 75, 0.1), 0 0 60px rgba(232, 184, 75, 0.05);
    border-color: rgba(232, 184, 75, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(232, 184, 75, 0.25), 0 0 100px rgba(232, 184, 75, 0.1);
    border-color: rgba(232, 184, 75, 0.65);
  }
}

.transformacao__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.transformacao__card--depois .transformacao__card-header {
  border-bottom-color: rgba(255,255,255,0.06);
}

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

.transformacao__icon--antes {
  background: rgba(0,0,0,0.08);
  color: #5a4a30;
}

.transformacao__icon--depois {
  background: var(--gold);
  color: #000;
}

.transformacao__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.transformacao__card--antes .transformacao__tag {
  color: #8a7050;
}

.transformacao__card-title {
  font-family: 'Sequel100Black', sans-serif;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.transformacao__card--depois .transformacao__card-title {
  color: var(--text);
}

.transformacao__card-title em {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--gold);
}

.transformacao__card--antes .transformacao__card-title em {
  color: #8a7050;
}

.transformacao__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.transformacao__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #3a3020;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  line-height: 1.5;
}

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

.transformacao__card--depois .transformacao__list li {
  color: rgba(245, 245, 245, 0.85);
  border-bottom-color: rgba(255,255,255,0.05);
}

.transformacao__dot {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transformacao__dot--x {
  color: #8a7050;
  border-color: rgba(138,112,80,0.4);
}

.transformacao__dot--check {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.transformacao__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(232, 184, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 184, 75, 0.05);
  flex-shrink: 0;
}

.transformacao__arrow-down {
  display: none;
}

@media (max-width: 640px) {
  .transformacao__arrow-right {
    display: none;
  }
  .transformacao__arrow-down {
    display: block;
  }
}

/* ===== PROBLEMA ===== */
/* Momento de respiro: sem card, largura total, holofote central */
.problema {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.problema::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(232, 184, 75, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.problema__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.problema__title {
  font-family: 'Sequel100Black', sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
}

.problema__text {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative;
}

/* ===== TIMELINE ===== */
.timeline {
  padding: 80px 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(10, 10, 10, 0.45) 25%, rgba(10, 10, 10, 0.45) 75%, var(--bg) 100%),
    url('assets/bg-trajetoria-desktop.webp') center center / cover no-repeat;
  position: relative;
}

.timeline__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.timeline__title {
  font-family: 'Sequel100Black', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin: 20px 0 24px;
}

.timeline__title em {
  display: block;
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.85em;
  margin-bottom: 4px;
}

.timeline__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.timeline__lead strong {
  color: var(--text);
}

.timeline__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline__items::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 16px 10px 0;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.timeline__item:hover {
  background: rgba(200, 164, 86, 0.04);
}

.timeline__dot {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.timeline__dot--filled {
  background: var(--gold);
}

.timeline__year {
  font-family: 'Sequel100Black', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  min-width: 48px;
}

.timeline__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.timeline__item--highlight .timeline__desc {
  color: var(--gold);
  font-weight: 600;
}

/* ===== TIMELINE - RIGHT (QUEM TE ENSINA) ===== */
.timeline__right {
  display: flex;
  flex-direction: column;
}

.timeline__photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.timeline__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
}

.timeline__name {
  font-family: 'Sequel100Black', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin: 16px 0 16px;
}

.timeline__right p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.timeline__quote {
  font-family: 'Sequel100Black', sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  color: var(--gold) !important;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 8px 0 32px !important;
}

.timeline__right .btn {
  align-self: flex-start;
}

/* ===== INVESTIMENTO ===== */
.investimento {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0D0B08 100%);
}

.investimento__card {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

/* Coluna esquerda: recapitulação do valor */
.investimento__valor {
  position: relative;
  text-align: left;
  min-width: 0;
}

.investimento__valor-title {
  font-family: 'Sequel100Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(232, 184, 75, 0.15);
}

.investimento__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.investimento__lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.82);
}

.investimento__lista svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Coluna direita: preço e ação */
.investimento__oferta {
  position: relative;
  text-align: center;
  min-width: 0;
  background: rgba(232, 184, 75, 0.04);
  border: 1px solid rgba(232, 184, 75, 0.16);
  border-radius: 18px;
  padding: 36px 32px;
}

.investimento__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 164, 86, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.investimento__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(200, 164, 86, 0.1);
  border: 1px solid rgba(200, 164, 86, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  position: relative;
}

.investimento__price-old {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 8px;
  position: relative;
}

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

.investimento__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  position: relative;
}

.investimento__currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
}

.investimento__value {
  font-family: 'Sequel100Black', sans-serif;
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.investimento__cents {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
}

.investimento__garantia {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  position: relative;
}

.investimento__garantia svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.investimento__garantia strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text);
}

.investimento__garantia p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 80px 0;
  background: var(--bg);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.depoimentos__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}

.depoimentos__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.depoimentos__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.depoimentos__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

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

.depoimentos__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg);
}

.depoimentos__author span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== CTA FINAL ===== */
/* Faixa dourada de fechamento */
.cta-final {
  background: #C89A55;
  padding: 0;
  overflow: hidden;
}

.cta-final__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 40px;
  min-height: 380px;
}

.cta-final__content {
  align-self: center;
  padding: 72px 0;
}

.cta-final__title {
  font-family: 'Times CG', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  color: #0A0A0A;
  max-width: 12ch;
  margin-bottom: 32px;
}

/* Botão preto sobre o dourado — mantém .btn--primary para abrir o modal */
.cta-final__btn {
  background: #0A0A0A;
  color: #FFFFFF;
  border-radius: 10px;
  box-shadow: none;
  animation: none;
}

.cta-final__btn:hover {
  background: #1F1F1F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Coluna da foto: o recorte encosta na base da faixa */
.cta-final__photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
}

.cta-final__photo img {
  display: block;
  max-height: 460px;
  width: auto;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: var(--bg);
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item[open] {
  border-color: var(--border-hover);
}

.faq__item summary {
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  content: '\2212';
}

.faq__item summary:hover {
  color: var(--gold);
}

.faq__item p {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

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

.footer__logo .logo-img {
  height: 32px;
  opacity: 0.85;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* CTA de fim de seção */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-cta {
    margin-top: 36px;
  }

  .section-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== MODAL DE CAPTURA ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modal-fade 0.25s ease-out;
}

.modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #0E0E0C;
  border: 1px solid rgba(232, 184, 75, 0.28);
  border-radius: 20px;
  padding: 40px 36px 32px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.8), 0 0 70px rgba(232, 184, 75, 0.1);
  animation: modal-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .modal__backdrop,
  .modal__box {
    animation: none;
  }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.modal__title {
  font-family: 'Sequel100Black', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 26px;
  padding-right: 28px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(245, 245, 245, 0.75);
}

.field input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 15px;
  transition: var(--transition);
}

.field input::placeholder {
  color: #6b6b6b;
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(232, 184, 75, 0.05);
  box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.12);
}

.field input[aria-invalid="true"] {
  border-color: #E5645C;
  background: rgba(229, 100, 92, 0.05);
}

.field__error {
  font-size: 0.78rem;
  color: #E5645C;
  min-height: 0;
}

.field__error:empty {
  display: none;
}

/* Botão do formulário */
#leadSubmit {
  justify-content: center;
  margin-top: 6px;
  position: relative;
}

#leadSubmit[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.75;
}

#leadSubmit[aria-busy="true"] .modal__btn-label,
#leadSubmit[aria-busy="true"] .modal__btn-icon {
  visibility: hidden;
}

.modal__spinner {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(10, 10, 10, 0.25);
  border-top-color: #0A0A0A;
  border-radius: 50%;
  animation: modal-spin 0.7s linear infinite;
}

#leadSubmit[aria-busy="true"] .modal__spinner {
  display: block;
}

@keyframes modal-spin {
  to { transform: rotate(360deg); }
}

.modal__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.78rem;
  color: #8a8a8a;
  margin-top: 4px;
}

.modal__privacy svg {
  flex-shrink: 0;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .modal {
    padding: 16px;
  }

  .modal__box {
    padding: 32px 22px 26px;
    max-height: calc(100vh - 32px);
  }

  .modal__title {
    font-size: 1.2rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__image {
    margin-right: 0;
  }

  /* App section */
  .app-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Empilhado, o vídeo sobe para logo abaixo do título */
  .app-section__right {
    order: -1;
  }

  .app-section__header {
    margin-bottom: 32px;
  }

  .app-section__lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .app-section__features {
    gap: 10px;
  }

  .app-video {
    width: 260px;
  }

  /* Investimento */
  .investimento__card {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 560px;
  }

  /* Transformacao */
  .transformacao__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transformacao__arrow {
    margin: 0 auto;
  }

  /* Timeline */
  .timeline__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline__right {
    order: -1;
  }

  .timeline {
    background:
      linear-gradient(180deg, var(--bg) 0%, rgba(10, 10, 10, 0.7) 25%, rgba(10, 10, 10, 0.7) 75%, var(--bg) 100%),
      url('assets/bg-trajetoria-mobile.webp') center center / cover no-repeat;
  }
}

@media (max-width: 640px) {
  /* Espaçamento global reduzido no mobile */
  section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .section-header {
    margin-bottom: 32px;
  }

  /* Hero */
  .hero {
    padding-top: 70px !important;
    padding-bottom: 48px !important;
    min-height: auto;
    overflow: clip;
  }

  .hero__logo-wrapper {
    padding: 24px 0 20px;
  }

  .hero__logo {
    height: 40px;
  }

  .hero__title {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__card {
    display: none;
  }

  .hero__photo {
    max-width: 100%;
    border-radius: 16px;
  }

  /* Incluso gallery */
  .incluso__card {
    flex: 0 0 240px;
    height: 360px;
  }

  .incluso__arrow {
    display: none;
  }

  /* App section */
  .app-section {
    padding: 80px 0;
  }

  .app-section__title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .app-section__left {
    gap: 20px;
  }

  .app-feature {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .app-video {
    width: 220px;
    border-radius: 24px;
  }

  /* Transformacao */
  .transformacao {
    padding: 80px 0;
  }

  .transformacao__card {
    padding: 28px 24px;
  }

  .transformacao__card-title {
    font-size: 1rem;
  }

  .transformacao__list li {
    font-size: 0.9rem;
  }

  /* Problema */
  .problema__text {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  /* Depoimentos */
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }

  /* Investimento */
  .investimento__card {
    padding: 28px 20px;
    gap: 28px;
  }

  .investimento__oferta {
    padding: 28px 20px;
  }

  .investimento__value {
    font-size: 3rem;
  }

  /* CTA final — a faixa dourada não leva o padding global de seção,
     senão sobra dourado abaixo do recorte */
  .cta-final {
    padding: 0 !important;
  }

  .cta-final__grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    text-align: center;
  }

  .cta-final__content {
    padding: 48px 0 40px;
  }

  .cta-final__title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-final__btn {
    width: 100%;
    justify-content: center;
  }

  .cta-final__photo img {
    max-height: 300px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}



