/* ============================================
   DESIGN TOKENS — EMETOR BRAND
   ============================================ */
:root {
  --blue: #2B35FF;
  --blue-dark: #1E26CC;
  --blue-deeper: #141A99;
  --blue-light: #5C63FF;
  --blue-pale: #ECEEFF;
  --blue-subtle: rgba(43, 53, 255, 0.06);

  --cream: #E8D5B0;
  --cream-light: #F5EDE0;

  --white: #FFFFFF;
  --bg: #FAFAFE;
  --bg-alt: #F2F3F9;

  --text: #1A1A2E;
  --text-secondary: #4A4A68;
  --text-muted: #7A7A98;
  --text-on-blue: #FFFFFF;
  --text-on-blue-muted: rgba(255, 255, 255, 0.72);

  --border: rgba(26, 26, 46, 0.08);
  --border-blue: rgba(43, 53, 255, 0.12);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --content-width: 1100px;
  --content-narrow: 780px;
  --section-pad: 100px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

strong {
  font-weight: 600;
  color: var(--text);
}

::selection {
  background: var(--blue);
  color: var(--white);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text--blue { color: var(--blue); }
.text--cream { color: var(--cream-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(43, 53, 255, 0.25);
}

.btn--blue:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 32px rgba(43, 53, 255, 0.35);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
  background: var(--cream-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--xl { padding: 22px 44px; font-size: 18px; border-radius: 16px; }
.btn:active { transform: translateY(0); }

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge--live {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.badge--urgent {
  background: rgba(255, 80, 80, 0.2);
  border-color: rgba(255, 120, 120, 0.4);
  color: #FFD4D4;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ============================================
   HERO — EMETOR BLUE GRADIENT
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  background: linear-gradient(145deg, #1820CC 0%, #2B35FF 35%, #4D55FF 65%, #2B35FF 100%);
  overflow: hidden;
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 213, 176, 0.12) 0%, rgba(232, 213, 176, 0.04) 40%, transparent 70%);
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.hero__content { color: var(--white); }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero__title--highlight {
  color: var(--cream-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-on-blue-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__cta-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__vagas-note {
  font-size: 13px;
  color: var(--text-on-blue-muted);
}

/* Hero Photo */
.hero__photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__photo-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, rgba(232, 213, 176, 0.5) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(232, 213, 176, 0.4) 100%);
  box-shadow: 0 0 80px rgba(232, 213, 176, 0.15), 0 0 160px rgba(43, 53, 255, 0.2);
}

.hero__photo-frame {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #3a42ff 0%, #1820CC 100%);
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
}

.hero__photo-caption {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.hero__photo-role {
  font-size: 14px;
  color: var(--text-on-blue-muted);
  margin-top: -8px;
}

/* ============================================
   INTRO (post-hero)
   ============================================ */
.intro {
  padding: 80px 0 60px;
  background: var(--white);
}

.intro__content {
  max-width: var(--content-narrow);
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.8;
}

.intro__content p + p {
  margin-top: 16px;
}

.intro__highlight {
  max-width: var(--content-narrow);
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 4px solid var(--blue);
  background: var(--blue-pale);
  border-radius: 0 14px 14px 0;
}

.intro__highlight p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.intro__highlight p + p { margin-top: 8px; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section--light {
  background: var(--bg);
}

.section--blue {
  background: linear-gradient(160deg, #1820CC 0%, #2B35FF 50%, #4D55FF 100%);
  color: var(--white);
  overflow: hidden;
}

.section--blue .section__header strong,
.section--blue .inscricao__text strong { color: var(--white); }
.section--blue .inscricao__card strong { color: var(--text); }
.section--blue .inscricao__detail-value--price strong { color: var(--blue); }

.section__header {
  margin-bottom: 40px;
}

.section__header--white .section__title {
  color: var(--white);
}

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  padding: 6px 16px;
  background: var(--blue-subtle);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
}

.section__label--white {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 700px;
  color: var(--text);
}

.section__closer {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 20px;
  font-weight: 500;
}

.section__cta {
  margin-top: 48px;
}

/* ============================================
   PARA QUEM — CHECKLIST
   ============================================ */
.para-quem__intro {
  color: var(--text-secondary);
  max-width: var(--content-narrow);
  margin-bottom: 36px;
  font-size: 17px;
}

.para-quem__intro p + p { margin-top: 14px; }

.checklist {
  display: grid;
  gap: 10px;
  max-width: var(--content-narrow);
  margin-bottom: 44px;
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s var(--ease-smooth);
}

.checklist__item:hover {
  border-color: var(--border-blue);
  box-shadow: 0 4px 20px rgba(43, 53, 255, 0.06);
  transform: translateX(4px);
}

.checklist__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
}

.checklist__item span {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

/* ============================================
   PULLQUOTE
   ============================================ */
.pullquote {
  max-width: var(--content-narrow);
  padding: 28px 36px;
  border-left: 4px solid var(--blue);
  margin-bottom: 12px;
}

.pullquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}

/* ============================================
   PROGRAMA — MODULES
   ============================================ */
.programa__intro {
  color: var(--text-secondary);
  max-width: var(--content-narrow);
  margin-bottom: 14px;
}

.programa__intro p + p { margin-top: 12px; }

.programa__lead {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 32px;
}

.modules {
  display: grid;
  gap: 20px;
  max-width: var(--content-narrow);
}

.module {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s var(--ease-smooth);
}

.module:hover {
  border-color: var(--border-blue);
  box-shadow: 0 8px 32px rgba(43, 53, 255, 0.06);
}

.module__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--blue-pale);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid var(--border-blue);
}

.module__title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.module__content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.module__content p + p { margin-top: 10px; }

.module__list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 6px;
}

.module__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 15px;
}

.module__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.module__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.tag:hover {
  border-color: var(--border-blue);
  color: var(--blue);
  background: var(--blue-pale);
}

.module__highlight {
  margin-top: 14px;
  padding: 16px 20px;
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
}

.module__highlight p {
  color: var(--text);
}

/* ============================================
   MENTOR
   ============================================ */
.mentor {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--content-narrow);
}

.mentor__photo {
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  background: var(--blue-pale);
  border: 1px solid var(--border);
}

.mentor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--blue-light);
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
}

.mentor__bio p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.mentor__bio p + p { margin-top: 14px; }

.mentor__differentiator {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  border-radius: 16px;
}

.mentor__differentiator p { color: var(--text); font-size: 16px; }
.mentor__differentiator p + p { margin-top: 8px; }

/* ============================================
   INSCRIÇÃO
   ============================================ */
.inscricao__text {
  color: var(--text-on-blue-muted);
  max-width: var(--content-narrow);
  margin-bottom: 40px;
  font-size: 17px;
}

.inscricao__text strong { color: var(--white); }
.inscricao__text p + p { margin-top: 14px; }

.inscricao__card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.inscricao__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.inscricao__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: var(--white);
}

.inscricao__detail svg {
  flex-shrink: 0;
  color: var(--blue);
}

.inscricao__detail-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.inscricao__detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.inscricao__detail-value--price {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
}

.inscricao__action {
  padding: 36px 32px;
  text-align: center;
}

.inscricao__qualifier {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.inscricao__price-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.inscricao__attention {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 620px;
  margin: 28px auto 0;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-on-blue-muted);
  line-height: 1.6;
}

.inscricao__attention svg {
  flex-shrink: 0;
  color: var(--cream-light);
  margin-top: 2px;
}

/* ============================================
   CRONOGRAMA — TIMELINE
   ============================================ */
.timeline {
  max-width: var(--content-narrow);
  position: relative;
  padding-left: 120px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-blue);
}

.timeline__item {
  position: relative;
  padding: 0 0 36px 32px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--blue);
  z-index: 1;
}

.timeline__item--break::before {
  background: var(--cream);
  box-shadow: 0 0 0 2px var(--cream);
}

.timeline__item--end::before {
  background: var(--blue-dark);
  box-shadow: 0 0 0 2px var(--blue-dark);
}

.timeline__time {
  position: absolute;
  left: -120px;
  top: 2px;
  width: 80px;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

.timeline__item--break .timeline__time {
  color: var(--text-muted);
}

.timeline__content {
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s var(--ease-smooth);
}

.timeline__content:hover {
  border-color: var(--border-blue);
  box-shadow: 0 4px 20px rgba(43, 53, 255, 0.06);
}

.timeline__item--break .timeline__content {
  background: var(--cream-light);
  border-color: rgba(232, 213, 176, 0.3);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.timeline__list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.timeline__list li {
  padding: 5px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 36px 0;
  background: var(--text);
}

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

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__brand {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__brand strong {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.checklist .checklist__item:nth-child(1) { transition-delay: 0ms; }
.checklist .checklist__item:nth-child(2) { transition-delay: 50ms; }
.checklist .checklist__item:nth-child(3) { transition-delay: 60ms; }
.checklist .checklist__item:nth-child(4) { transition-delay: 90ms; }
.checklist .checklist__item:nth-child(5) { transition-delay: 120ms; }
.checklist .checklist__item:nth-child(6) { transition-delay: 150ms; }
.checklist .checklist__item:nth-child(7) { transition-delay: 180ms; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

  .hero__photo-ring {
    width: 260px;
    height: 260px;
  }

  .mentor {
    grid-template-columns: 200px 1fr;
    gap: 36px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  body { font-size: 16px; }

  .hero {
    padding: 60px 0 48px;
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__badges { justify-content: center; }

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

  .hero__cta-area { align-items: center; }

  .hero__photo { order: -1; }

  .hero__photo-ring {
    width: 200px;
    height: 200px;
  }

  .hero__title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .intro { padding: 56px 0 40px; }

  .module {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }

  .mentor {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mentor__photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .inscricao__details {
    grid-template-columns: 1fr;
  }

  .inscricao__action {
    padding: 28px 20px;
  }

  .btn--lg, .btn--xl {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 16px;
  }

  .timeline {
    padding-left: 80px;
  }

  .timeline::before {
    left: 60px;
  }

  .timeline__time {
    left: -80px;
    width: 52px;
    font-size: 13px;
  }

  .pullquote { padding: 20px 20px; }

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

@media (max-width: 380px) {
  .badge {
    font-size: 11px;
    padding: 6px 12px;
  }
}
