/* ======================================
   VARIABLES & RESET
====================================== */
:root {
  --blue-deep:    #030B14;
  --blue-main:    #071A2F;
  --blue-mid:     #102E4A;
  --blue-light:   #1A4A6E;
  --gold:         #D8A84E;
  --gold-light:   #F0C86A;
  --gold-dim:     rgba(216, 168, 78, 0.15);
  --white:        #FFFFFF;
  --off-white:    #F6F4EF;
  --text-light:   rgba(255,255,255,0.80);
  --text-muted:   rgba(255,255,255,0.50);
  --dark:         #090909;
  --dark-card:    rgba(7, 26, 47, 0.72);
  --border-gold:  rgba(216, 168, 78, 0.25);
  --border-light: rgba(255,255,255,0.08);

  --font-body:    'Inter', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-gold: 0 0 40px rgba(216,168,78,0.12);
  --shadow-card: 0 8px 40px rgba(3, 11, 20, 0.45);
  --shadow-btn:  0 4px 24px rgba(216,168,78,0.30);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--blue-main);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { display: block; }

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

.mt-24 { margin-top: 24px; }

/* ======================================
   TYPOGRAPHY
====================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--dark { color: var(--gold); }

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}
.section__title.dark { color: var(--blue-main); }
.section__title.text-left { text-align: left; }

.section__desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.75;
}
.section__desc.dark { color: #3a4a5a; }

/* ======================================
   BUTTONS
====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--blue-deep);
  box-shadow: var(--shadow-btn);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(216,168,78,0.45);
  filter: brightness(1.05);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #1fba59;
  transform: translateY(-2px);
}
.btn--whatsapp svg { width: 20px; height: 20px; }

.btn--sm  { padding: 10px 22px; font-size: 0.875rem; }
.btn--lg  { padding: 16px 40px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ======================================
   SECTIONS
====================================== */
.section { padding: 100px 0; position: relative; }

.section--light {
  background: var(--off-white);
  color: var(--blue-main);
}
.section--light .eyebrow { color: var(--gold); }
.section--light .section__title { color: var(--blue-main); }
.section--light .section__desc { color: #4a5568; }

.section--dark-grad {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-main) 50%, #0D2640 100%);
}

/* ======================================
   HEADER
====================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(3, 11, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.logo-img { display: flex; align-items: center; }
.logo-img img { height: 40px; width: auto; object-fit: contain; }
.logo-img--footer img { height: 36px; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================
   HERO
====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(3,11,20,0.92) 0%,
    rgba(7,26,47,0.82) 45%,
    rgba(7,26,47,0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero__title em { color: var(--gold); font-style: normal; }

.hero__sub {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__micro {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.hero__pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pillar-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(216, 168, 78, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}
.pillar-chip svg { width: 14px; height: 14px; stroke: var(--gold); }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ======================================
   PAIN SECTION
====================================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid rgba(216,168,78,0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(7,26,47,0.06);
  transition: var(--transition);
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(7,26,47,0.10);
  border-color: var(--gold);
}
.pain-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 10px;
}
.pain-card__icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.pain-card p { font-size: 0.9375rem; color: #2d3a4a; font-weight: 500; }

/* ======================================
   SOLUTION
====================================== */
.solution__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,11,20,0.4) 0%, transparent 50%);
  z-index: 1;
}

.img-frame__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  background: var(--gold);
  color: var(--blue-deep);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  line-height: 1.2;
}
.img-frame__badge strong { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; }
.img-frame__badge span { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.img-frame--light::before { display: none; }
.img-frame--light img { height: 560px; }

.solution__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.sol-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-light);
}
.sol-feat svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--gold); }

/* ======================================
   PILLARS
====================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  padding: 40px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.pillar-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: var(--border-gold);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(216,168,78,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 12px;
  margin-bottom: 20px;
}
.pillar-card__icon svg { width: 24px; height: 24px; stroke: var(--gold); }

.pillars__intro {
  margin-top: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.60);
}

.pillar-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.75;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ======================================
   DELIVERABLES
====================================== */
.deliverables__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(216,168,78,0.15);
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  background: var(--white);
  border-bottom: 1px solid rgba(216,168,78,0.10);
  transition: var(--transition);
}
.deliverable-item:nth-child(odd) { border-right: 1px solid rgba(216,168,78,0.10); }
.deliverable-item:last-child, .deliverable-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.deliverable-item:hover { background: #fdf9f2; }

.deliverable-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(216,168,78,0.35);
  flex-shrink: 0;
  width: 44px;
  line-height: 1;
}
.deliverable-item__text { display: flex; flex-direction: column; gap: 4px; }
.deliverable-item__text strong { font-size: 0.9375rem; color: var(--blue-main); font-weight: 600; }
.deliverable-item__text span { font-size: 0.8125rem; color: #6b7a8d; }

.deliverables__callout {
  margin-top: 48px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-mid));
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  text-align: center;
}
.deliverables__callout p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

/* ======================================
   FOR WHOM
====================================== */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.fit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.fit-card--yes {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
}
.fit-card--yes:hover {
  background: rgba(216,168,78,0.07);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.fit-card__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216,168,78,0.15);
  border-radius: 50%;
}
.fit-card__check svg { width: 15px; height: 15px; stroke: var(--gold); }
.fit-card p { font-size: 0.9375rem; color: var(--text-light); line-height: 1.6; }

.not-for {
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
}
.not-for__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}
.not-for__list { display: flex; flex-direction: column; gap: 16px; }
.not-for__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.40);
}
.not-for__item svg { flex-shrink: 0; width: 16px; height: 16px; stroke: rgba(255,255,255,0.25); }

/* ======================================
   ABOUT
====================================== */
.about__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about__text-col .section__title { margin-bottom: 24px; }

.about__body {
  font-size: 0.9375rem;
  color: #4a5a6a;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__callout {
  margin-top: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-mid));
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.about__callout p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
}

/* Stats grid — shared base */
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(216,168,78,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(216,168,78,0.15);
}

/* Desktop: below photo inside img-col */
.about__stats--desktop {
  margin-top: 20px;
  display: grid;
}

/* Mobile: after text inside text-col — hidden on desktop */
.about__stats--mobile {
  display: none;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  background: var(--white);
  gap: 6px;
  transition: background var(--transition);
}
.about__stat:hover { background: #fdf9f2; }

.about__stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-main);
  line-height: 1.1;
}
.about__stat-label {
  font-size: 0.75rem;
  color: #6b7a8d;
  line-height: 1.4;
}

/* ======================================
   SPORT SECTION
====================================== */
.section--sport {
  padding: 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
}

.sport__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sport__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.sport__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,11,20,0.88) 0%, rgba(7,26,47,0.60) 60%, rgba(7,26,47,0.20) 100%);
}

.sport__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 80px 24px;
}
.sport__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}
.sport__desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ======================================
   PROGRAMA SECTION (beach tennis bg)
====================================== */
.section--programa {
  position: relative;
  overflow: hidden;
}
.programa__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.programa__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.programa__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(3,11,20,0.94) 0%, rgba(7,26,47,0.88) 60%, rgba(7,26,47,0.75) 100%);
}

/* ======================================
   TIMELINE
====================================== */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline__item {
  display: flex;
  gap: 36px;
  padding: 0 0 40px 0;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.timeline__marker span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.timeline__content {
  padding-top: 12px;
}
.timeline__content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.timeline__content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ======================================
   PRICING
====================================== */
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.pricing-card__header {
  padding: 24px 40px;
  background: linear-gradient(135deg, rgba(216,168,78,0.15), rgba(216,168,78,0.05));
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}
.pricing-card__label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
}

.pricing-card__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-align: left;
}
.pricing-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-light);
}
.pricing-card__list li svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--gold); }

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

/* Installment — destaque principal */
.price-installment-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.price-installment-main .price-prefix {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
}
.price-installment-main .price-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* Cash — secundário, menor */
.price-cash {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.price-cash strong { color: var(--gold-light); font-weight: 600; }

.pricing-card__micro {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 320px;
  line-height: 1.6;
}

/* ======================================
   BOOK BONUS BOX
====================================== */
.book-bonus {
  width: 100%;
  background: rgba(216,168,78,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.book-bonus__seal {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}

.book-bonus__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px;
}

.book-bonus__img-col {
  width: 100%;
  max-width: 420px;
}
.book-bonus__img-col img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.50));
}

.book-bonus__text-col {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.book-bonus__text-col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.book-bonus__text-col h4 em { color: var(--gold-light); font-style: italic; }
.book-bonus__text-col p {
  font-size: 0.8375rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 400px;
}

.book-bonus__highlight {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  padding: 7px 14px;
  background: rgba(216,168,78,0.12);
  border: 1px solid rgba(216,168,78,0.25);
  border-radius: 50px;
  margin-top: 4px;
}

/* ======================================
   FORM
====================================== */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 4px 40px rgba(7,26,47,0.10);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row { display: grid; gap: 20px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }

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

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-main);
}
.form-field .optional {
  font-weight: 400;
  color: #9aa5b1;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--blue-main);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,168,78,0.12);
}
.form-field input.invalid,
.form-field select.invalid { border-color: #e53e3e; }

.form-field textarea { resize: vertical; min-height: 100px; }

.field-error {
  font-size: 0.8rem;
  color: #e53e3e;
  display: none;
}
.field-error.visible { display: block; }

/* Radio group */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  color: #4a5568;
  font-weight: 500;
}
.radio-option:hover { border-color: var(--gold); color: var(--blue-main); }
.radio-option input[type="radio"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.radio-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(216,168,78,0.06);
  color: var(--blue-main);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 72px 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 40px rgba(7,26,47,0.10);
}
.form-success.visible { display: block; }

.form-success__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success__icon svg { width: 32px; height: 32px; stroke: var(--blue-deep); }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--blue-main);
  margin-bottom: 12px;
}
.form-success p { font-size: 1rem; color: #4a5568; }

/* ======================================
   FAQ
====================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.03);
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.06); }
.faq-item.open .faq-question { background: rgba(216,168,78,0.07); color: var(--gold-light); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ======================================
   CTA FINAL
====================================== */
.section--cta-final {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0D2640 50%, var(--blue-main) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,168,78,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__content { position: relative; z-index: 1; }

.cta-final__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__sub {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ======================================
   FOOTER
====================================== */
.footer {
  background: var(--blue-deep);
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ======================================
   REVEAL ANIMATION
====================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .solution__wrap { grid-template-columns: 1fr; gap: 48px; }
  .about__wrap { grid-template-columns: 1fr; gap: 48px; }
  .about__img-col .img-frame--light img { height: 420px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: rgba(3,11,20,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding: 32px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    border-left: 1px solid var(--border-light);
  }
  .nav.open { right: 0; }
  .nav__link { font-size: 1.1rem; }

  .hamburger { display: flex; z-index: 100; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; }

  .pain-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }

  .deliverables__grid { grid-template-columns: 1fr; }
  .deliverable-item:nth-child(odd) { border-right: none; }
  .deliverable-item:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid rgba(216,168,78,0.10); }

  .lead-form { padding: 32px 24px; }
  .form-row--2 { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }

  /* Em mobile: esconde os indicadores da coluna da foto, mostra os do texto */
  .about__stats--desktop { display: none; }
  .about__stats--mobile {
    display: grid;
    margin-top: 28px;
  }

  .book-bonus__img-col { max-width: 280px; }

  .timeline::before { left: 24px; }
  .timeline__marker { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .hero__pillars { gap: 8px; }
  .pillar-chip { font-size: 0.75rem; padding: 7px 12px; }
  .section__title { font-size: 1.7rem; }
  .lead-form { padding: 28px 20px; }
  .pricing-card__body { padding: 28px 24px; }
}
