/* ==========================================================================
   Radegondes Resumos — CSS compartilhado das páginas de combo (/simulado/)
   Herda tokens visuais do index.html (navy + orange, notebook style).
   ========================================================================== */

:root {
  --navy: #0F1E3D;
  --paper: #F6F2E9;
  --paper-line: #E4DCC9;
  --orange: #FF7A1A;
  --orange-deep: #E35F00;
  --grey: #5B5F6B;
  --cream-text: #F1ECDF;
  --display: 'Anton', sans-serif;
  --mono: 'Space Mono', monospace;
  --body: 'Inter', sans-serif;
  --radius: 3px;
}

/* ---------- Reset / base ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--orange-deep);
  outline-offset: 3px;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Tipografia ---------- */

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow__mark {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.mark {
  background-image: linear-gradient(120deg, var(--orange) 0%, var(--orange) 100%);
  background-repeat: no-repeat;
  background-size: 100% .42em;
  background-position: 0 78%;
  padding: 0 .08em;
  color: var(--navy);
}

/* ---------- Botões ---------- */

.btn {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 13px 22px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-primary {
  background: var(--orange-deep);
  color: #fff;
  box-shadow: 4px 4px 0 var(--navy);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--navy);
}

.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--navy);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream-text);
}

/* ---------- Header ---------- */

.notebook {
  position: relative;
  background: repeating-linear-gradient(180deg, transparent 0 30px, var(--paper-line) 30px 31px), var(--paper);
  background-position: 0 8px;
}

.notebook::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 26px;
  background-image: radial-gradient(circle 6px, var(--paper) 5px, transparent 6px);
  background-size: 26px 40px;
  background-repeat: repeat-y;
  background-position: 13px 20px;
  opacity: .5;
}

.notebook .wrap {
  padding-left: 56px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 233, .94);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--navy);
  transition: box-shadow .2s ease;
}

header.scrolled {
  box-shadow: 0 6px 18px rgba(15, 30, 61, .1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 20px;
}

.logo-mark {
  width: 51px;
  height: 44px;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-mark.on-dark {
  color: var(--cream-text);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity .2s ease;
}

.logo:hover {
  opacity: .8;
}

.logo .lockup {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.logo .lockup .brand {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: .01em;
  line-height: 1;
}

.logo .lockup .sub {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1;
}

.navlinks {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.navlinks a {
  position: relative;
  padding: 4px 0;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--orange-deep);
  transition: width .2s ease;
}

.navlinks a:hover::after {
  width: 100%;
}

/* ---------- Hero de combo ---------- */

.combo-hero {
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.combo-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center;
}

.combo-hero h1 {
  font-size: clamp(36px, 4.4vw, 54px);
  margin: 16px 0 18px;
  letter-spacing: -0.01em;
}

.combo-hero__lede {
  font-size: 17px;
  max-width: 48ch;
  color: var(--grey);
  margin-bottom: 26px;
  line-height: 1.5;
}

.combo-hero__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 30px;
}

.combo-hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.combo-hero__bullets .chk {
  color: var(--orange-deep);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.combo-hero__price {
  background: var(--navy);
  color: var(--cream-text);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  transform: rotate(-.6deg);
  box-shadow: 6px 6px 0 var(--paper-line), 6px 6px 0 1px var(--navy);
}

.combo-hero__price del {
  font-family: var(--mono);
  font-size: 13px;
  color: #AAB4CC;
}

.combo-hero__price .now {
  font-family: var(--display);
  font-size: 20px;
  /* color: var(--orange); */
  line-height: 1.1;
}

.combo-hero__price .now span {
  display: block;
  font-size: 34px;
  color: var(--orange);
}

.combo-hero__price .parcelado {
  font-family: var(--body);
  font-size: 13px;
  color: #C7CEE0;
}

.combo-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.combo-hero__ctas .btn-primary {
  font-size: 14px;
  padding: 16px 26px;
}

.combo-hero__offer {
  background: var(--navy);
  color: var(--cream-text);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: rotate(1.2deg);
  box-shadow: 10px 10px 0 var(--paper-line), 10px 10px 0 1px var(--navy);
  align-self: center;
}

.combo-hero__offer-badge {
  align-self: flex-start;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  transform: rotate(-2deg);
}

.combo-hero__offer .combo-hero__price {
  margin-bottom: 0;
  transform: rotate(-1.2deg);
  background: transparent;
  box-shadow: none;
  padding: 8px 0 4px;
  border-radius: 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .15);
}

.combo-hero__offer .combo-hero__price .now {
  font-size: 22px;
}

.combo-hero__offer .combo-hero__price .now span {
  font-size: 44px;
}

.combo-hero__offer-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #C7CEE0;
}

.combo-hero__offer-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.combo-hero__offer-perks .chk {
  color: var(--orange);
  font-weight: 700;
}

.combo-hero__offer-cta {
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  font-size: 15px;
}

/* ---------- Módulos (accordion) ---------- */

.modulos {
  padding: 72px 0;
  background: var(--paper);
}

.modulos__head {
  max-width: 680px;
  margin-bottom: 32px;
}

.modulos__head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 14px 0 8px;
}

.modulos__head p {
  color: var(--grey);
  font-size: 15px;
}

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

.modulo {
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}

.modulo__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  color: var(--navy);
}

.modulo__q:hover {
  background: var(--paper);
}

.modulo__title {
  font-family: var(--body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modulo__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange-deep);
  flex-shrink: 0;
}

.modulo__plus {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--orange-deep);
  flex-shrink: 0;
  transition: transform .2s ease;
  line-height: 1;
}

.modulo[data-open="true"] .modulo__plus {
  transform: rotate(45deg);
}

.modulo__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.modulo[data-open="true"] .modulo__a {
  grid-template-rows: 1fr;
}

.modulo__a-inner {
  overflow: hidden;
}

.modulo__topics {
  padding: 4px 22px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.modulo__topics li {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: 2px;
  padding: 5px 9px;
}

/* ---------- Includes / O que recebe ---------- */

.includes {
  background: var(--navy);
  color: var(--cream-text);
  padding: 80px 0;
}

.includes .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.includes h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  color: #fff;
  margin: 16px 0 28px;
  line-height: 1.05;
  max-width: 16ch;
}

.includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.includes-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(241, 236, 223, .15);
  font-size: 15px;
  line-height: 1.35;
}

.includes-list li:last-child,
.includes-list li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.includes-list .chk {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--mono);
  width: 20px;
  height: 22px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.includes-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: var(--paper);
  color: var(--navy);
  border-radius: 3px;
  padding: 22px 18px;
  text-align: center;
}

.stat-card .num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--orange-deep);
  line-height: 1;
}

.stat-card .lbl {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--grey);
  margin-top: 8px;
  line-height: 1.25;
}

/* ---------- Diferenciais ---------- */

.diferenciais {
  background: var(--paper);
  padding: 72px 0;
  border-top: 2px solid var(--paper-line);
}

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

.diferencial-card {
  border-left: 3px solid var(--orange);
  padding-left: 18px;
}

.diferencial-card h3 {
  font-family: var(--body);
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.diferencial-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

/* ---------- Depoimentos ---------- */

.social {
  padding: 80px 0 0;
  overflow: hidden;
}

.social-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.social-head h2 {
  font-size: clamp(32px, 4.6vw, 52px);
  max-width: 15ch;
  line-height: 1.05;
}

.testi-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.testi-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 26, .35);
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  font-size: 20px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-nav__btn:hover {
  transform: translateY(-1px);
  background: var(--orange);
  border-color: var(--orange);
}

.testi-track {
  width: 100%;
  display: flex;
  overflow-x: auto;
  padding: 15px 0 36px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-grid {
  gap: 22px;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

.testi-grid+.testi-grid {
  margin-left: 22px;
}

.testi {
  background: var(--navy);
  color: var(--cream-text);
  padding: 24px;
  border-radius: 2px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
  position: relative;
  width: 320px;
  flex: 0 0 auto;
}

.testi .tape {
  background: rgba(255, 122, 26, .9);
  top: -12px;
}

.testi p {
  font-size: 16px;
  margin: 10px 0 18px;
  line-height: 1.4;
  font-weight: 600;
}

.testi-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.testi .who {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange);
  line-height: 1.3;
}

.testi .who b {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.testi .who-course {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange);
  line-height: 1.3;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper, #f5efe6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: block;
  flex: 0 0 auto;
}

.stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 2px;
  flex: 0 0 auto;
}

/* ---------- Liberação ---------- */

.liberacao {
  padding: 40px 0;
  background: var(--paper);
}

.liberacao__box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px dashed var(--paper-line);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.liberacao__box svg {
  color: var(--orange-deep);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.liberacao__box p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

.liberacao__box strong {
  color: var(--navy);
  margin-right: 6px;
}

/* ---------- CTA final ---------- */

.combo-cta {
  padding: 64px 0 80px;
  text-align: center;
}

.combo-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  max-width: 20ch;
  margin: 0 auto 12px;
}

.combo-cta p {
  color: var(--grey);
  margin-bottom: 26px;
}

.combo-cta .btn-primary {
  font-size: 15px;
  padding: 18px 32px;
}

/* ---------- Footer ---------- */

footer {
  background: var(--navy);
  color: #8D96AC;
  padding: 44px 0 28px;
  font-size: 13px;
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.foot-links a {
  color: #C7CEE0;
  transition: color .2s ease;
}

.foot-links a:hover {
  color: var(--orange);
}

.logo--footer .logo-mark {
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.foot-bottom {
  border-top: 1px solid rgba(141, 150, 172, .2);
  margin-top: 28px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
}

/* ---------- Reveal on scroll ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsivo ---------- */

@media (max-width: 768px) {
  .notebook::before {
    display: none;
  }

  .notebook .wrap {
    padding-left: 24px;
  }

  .nav {
    padding: 12px 16px;
    gap: 12px;
  }

  .navlinks {
    display: none;
  }

  .logo .lockup .brand {
    font-size: 16px;
  }

  .combo-hero {
    padding: 36px 0 44px;
  }

  .combo-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .combo-hero__bullets {
    grid-template-columns: 1fr;
  }

  .combo-hero__offer {
    transform: none;
    order: 2;
  }

  .modulos,
  .diferenciais,
  .includes {
    padding: 48px 0;
  }

  .diferenciais__grid,
  .includes .wrap,
  .includes-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .includes-cards {
    grid-template-columns: 1fr 1fr;
  }

  .diferencial-card {
    border-left: none;
    border-top: 3px solid var(--orange);
    padding-left: 0;
    padding-top: 14px;
  }

  .combo-cta {
    padding: 48px 0 56px;
  }

  .foot-grid {
    flex-direction: column;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .social {
    padding: 48px 0 0;
  }

  .social-head h2 {
    font-size: clamp(28px, 4vw, 40px);
  }
}

@media (max-width: 900px) {
  .testi {
    width: 280px;
  }

  .includes .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .includes-list {
    grid-template-columns: 1fr;
  }

  .includes-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .includes-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .navlinks a span {
    display: none;
  }
}