/* ===================== TOKENS ===================== */
:root {
  --accent: #9B51E0;
  --accent-dark: #7B2DBE;
  --accent-light: #C084FC;

  --bg: #F9F9F9;
  --bg-soft: #FFFFFF;
  --bg-card: #FFFFFF;

  --txt: #0D0D0D;
  --txt-m: #616161;
  --txt-d: #9A9A9A;

  --bdr: #DEDEDE;
  --bdr-c: #E8E8E8;

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --max-width: 1280px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, li { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.highlight { color: var(--accent); font-weight: 700; }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px; color: var(--txt); }
.section-sub { color: var(--txt-m); font-size: 16px; line-height: 1.6; }

section { padding: clamp(64px, 8vw, 120px) 0; }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; border-radius: var(--radius-md); padding: 13px 28px; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; box-shadow: 0 4px 18px rgba(155, 81, 224, .32); }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(155, 81, 224, .45); }
.btn-large { padding: 17px 38px; font-size: 16px; }
.btn-ghost { border: 1px solid var(--bdr); color: var(--txt); background: transparent; }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--accent-light); }
.btn-arrow { transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }

/* ===================== PHOTO PLACEHOLDERS ===================== */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 1.5px dashed var(--bdr);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  color: var(--txt-d);
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}
.photo-placeholder .ph-icon { font-size: 30px; opacity: .5; }
.photo-placeholder .ph-label small { color: var(--txt-d); font-size: 11px; }

.ph-about-main { aspect-ratio: 4 / 5; }
.ph-avatar { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; font-size: 16px; }
.testimonial-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr-c);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-img { height: 28px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-menu a { color: var(--txt-m); transition: color .2s; }
.nav-menu a:hover { color: var(--txt); }
.header-cta { font-size: 14px; padding: 10px 22px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; }
.menu-toggle span { display: block; height: 2px; width: 100%; background: var(--txt); transition: transform .2s, opacity .2s; }

@media (max-width: 880px) {
  .nav-menu { position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: #fff; border-bottom: 1px solid var(--bdr-c); max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .nav-menu.open { max-height: 320px; }
  .nav-menu a { width: 100%; padding: 16px 24px; border-bottom: 1px solid var(--bdr-c); }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* ===================== HERO ===================== */
.hero { padding-top: 150px; padding-bottom: 70px; background: var(--bg); overflow: hidden; }
.hero-stack { position: relative; }

.hero-giant {
  font-size: clamp(56px, 11.5vw, 156px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: .95;
  text-transform: uppercase;
  color: var(--txt);
  text-align: center;
}

.hero-blue-block {
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 6vw, 84px);
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
  border-radius: 32px;
  min-height: 460px;
  padding: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-block-text { position: relative; z-index: 1; max-width: 320px; }
.hero-block-left h2 { color: #fff; font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; line-height: 1.3; }
.hero-block-right p { color: rgba(255, 255, 255, .85); font-size: 15px; line-height: 1.6; text-align: right; }

.ph-hero-person {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 8%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(34%, 360px);
  aspect-ratio: auto;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.hero-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.hero-footer-row { display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap; gap: 24px; margin-top: 48px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 900px) {
  .hero-giant { font-size: clamp(40px, 15vw, 72px); }
  .hero-stack { display: flex; flex-direction: column; align-items: center; }
  .hero-giant { order: 1; align-self: stretch; }

  /* Foto oculta no mobile */
  .ph-hero-person { display: none; }

  /* Bloco roxo sem altura mínima */
  .hero-blue-block {
    order: 2;
    margin-top: clamp(24px, 4vw, 40px);
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 36px 24px;
    border-radius: 24px;
    gap: 16px;
  }
  .hero-block-text { max-width: 100%; }
  .hero-block-right p { text-align: center; }
  .hero-footer-row { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===================== TICKER ===================== */
.ticker { padding: 40px 0; background: var(--bg-soft); border-top: 1px solid var(--bdr-c); border-bottom: 1px solid var(--bdr-c); overflow: hidden; }
.ticker-label { text-align: center; font-size: 13px; color: var(--txt-d); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 28px; }
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 40s linear infinite; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%); }
.ticker-track-reverse { animation-direction: reverse; margin-top: 20px; }
.ticker-group { display: flex; gap: 56px; padding-right: 56px; }
.ticker-logo { font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--txt-d); border: 1px solid var(--bdr); border-radius: var(--radius-sm); padding: 10px 22px; white-space: nowrap; background: #fff; }
.ticker-logo-img { height: 46px; width: auto; max-width: 184px; object-fit: contain; flex-shrink: 0; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== O PROBLEMA ===================== */
.problema { background: var(--bg-soft); }
.problema-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.problema-inner p { font-size: 18px; line-height: 1.7; color: var(--txt-m); }
.problema-lead { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--txt); line-height: 1.1; letter-spacing: -1px; }
.problema-sub { font-size: clamp(18px, 2.2vw, 22px); color: var(--txt-m); line-height: 1.5; }
.problema-sub strong { color: var(--txt); font-weight: 700; }
.problema-highlight { font-size: clamp(18px, 2vw, 21px); font-weight: 700; color: var(--txt); line-height: 1.4; }

/* ===================== PILARES (reusa .process) ===================== */
.process { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.process .eyebrow { color: rgba(255, 255, 255, .8); }
.process .section-head h2 { color: #fff; }
.process .section-sub { color: rgba(255, 255, 255, .8); }
.process-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; color: rgba(255, 255, 255, .85); font-size: 16px; line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--radius-lg); padding: 30px 24px; }
.process-number { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--accent-dark); font-weight: 700; font-size: 14px; margin-bottom: 18px; }
.process-card h4 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-card p { color: rgba(255, 255, 255, .85); font-size: 14px; line-height: 1.6; }

@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ===================== PARA QUEM ===================== */
.para-quem { background: var(--bg); }
.para-quem-inner { max-width: 760px; margin: 0 auto; }
.para-quem-head { text-align: center; margin-bottom: 48px; }
.para-quem-head p { font-size: 18px; line-height: 1.7; color: var(--txt-m); margin-top: 16px; }

.para-quem-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.para-quem-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; line-height: 1.6; color: var(--txt-m); background: var(--bg-soft); border: 1px solid var(--bdr-c); border-left: 3px solid var(--accent); border-radius: var(--radius-md); padding: 18px 20px; }
.para-quem-list li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.para-quem-fechamento { font-size: 18px; font-weight: 700; color: var(--txt) !important; text-align: center; }

@media (max-width: 640px) {
  .para-quem-list { grid-template-columns: 1fr; }
}

/* ===================== CONVIDADO ===================== */
.convidado { background: var(--bg); }
.convidado-foto { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: var(--radius-lg); display: block; }

/* ===================== QUEM VAI CONDUZIR (reusa .about) ===================== */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about-content h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 700; letter-spacing: -1px; line-height: 1.2; margin-bottom: 18px; color: var(--txt); }
.about-content p { font-size: 16px; line-height: 1.7; color: var(--txt-m); margin-bottom: 18px; }
.about-content .btn { margin-top: 8px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--bg); }
.testimonial-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; background: var(--bg-card); border: 1px solid var(--bdr-c); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; }
.quote-icon { font-size: 32px; color: var(--accent); line-height: 1; }
.testimonial-text { font-size: 16px; line-height: 1.6; color: var(--txt); }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial-author div:last-child { display: flex; flex-direction: column; font-size: 13px; }
.testimonial-author strong { font-size: 14px; color: var(--txt); }
.testimonial-author span { color: var(--txt-d); }
.testimonial-controls { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.t-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--bdr); background: #fff; font-size: 16px; transition: background .2s, border-color .2s; }
.t-btn:hover { background: var(--bg-soft); border-color: var(--accent-light); }

@media (max-width: 980px) {
  .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .testimonial-card { flex: 0 0 100%; }
}

/* ===================== DATA, HORÁRIO E INVESTIMENTO ===================== */
.investimento { background: var(--bg-soft); }
.investimento-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.investimento-card { background: var(--bg-card); border: 1px solid var(--bdr-c); border-radius: var(--radius-lg); padding: 48px 40px; }
.investimento-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 24px; }
.investimento-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 50px; background: rgba(155, 81, 224, .08); border: 1px solid var(--bdr); font-size: 14px; font-weight: 600; color: var(--txt); }
.pill-icon { font-size: 16px; }
.investimento-note { color: var(--txt-m); font-size: 14px; margin-bottom: 28px; }
.investimento-cta-sub { display: block; font-size: 12px; color: var(--txt-d); text-transform: uppercase; letter-spacing: .5px; margin-top: 10px; }
.investimento-divider { width: 100%; height: 1px; background: var(--bdr-c); margin: 28px 0; }
.investimento-helper { color: var(--txt-m); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.investimento-scarcity { color: var(--txt); font-size: 14px; font-weight: 700; margin-top: 8px; }

@media (max-width: 600px) {
  .investimento-card { padding: 36px 24px; }
}

/* ===================== FOOTER ===================== */
.site-footer { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { color: rgba(255, 255, 255, .8); font-size: 14px; line-height: 1.6; margin: 18px 0 24px; max-width: 320px; }
.footer-logo { filter: brightness(0) invert(1); }
.social-links { display: flex; gap: 12px; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; transition: transform .2s; }
.social-icon:hover { transform: translateY(-2px); }
.footer-col h6 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255, 255, 255, .65); margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col a { color: rgba(255, 255, 255, .85); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .2); padding: 24px 0; font-size: 13px; color: rgba(255, 255, 255, .7); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===================== MOBILE ===================== */

/* Convidado e Quem conduz: mostra texto antes da foto no celular */
@media (max-width: 900px) {
  .convidado .about-media,
  .about .about-media { order: 2; max-width: 280px; margin: 0 auto; }
  .convidado .about-content,
  .about .about-content { order: 1; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero { padding-top: 100px; padding-bottom: 40px; }
  .hero-blue-block { min-height: auto; padding: 28px 20px; gap: 24px; }
  .hero-block-left h2 { font-size: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Buttons full-width em cards */
  .investimento-card .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .about-content .btn { width: 100%; justify-content: center; }

  /* Seções: menos espaço vertical */
  section { padding: clamp(48px, 8vw, 80px) 0; }
  .section-head { margin-bottom: 36px; }
  .para-quem-head { margin-bottom: 28px; }

  /* Pilares: cards mais compactos */
  .process-card { padding: 22px 18px; }

  /* Processo intro */
  .process-intro { font-size: 15px; margin-bottom: 32px; }

  /* Depoimentos */
  .testimonial-card { padding: 24px 20px; }

  /* Investimento */
  .investimento-card { padding: 32px 20px; }
  .investimento-pills { gap: 8px; }
  .investimento-pill { font-size: 13px; padding: 8px 14px; }

  /* Footer */
  .footer-grid { gap: 24px; }

  /* Ticker: menos gap */
  .ticker-group { gap: 36px; padding-right: 36px; }
  .ticker-logo-img { height: 36px; }
}

/* ===================== SCROLL REVEAL ===================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* .ph-hero-person needs translateX(-50%) for centering at all times, combine with the reveal offset so the rule above doesn't strip it */
.ph-hero-person[data-reveal] { transform: translateX(-50%) translateY(24px); }
.ph-hero-person[data-reveal].is-visible { transform: translateX(-50%) translateY(0); }
