*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #ebebeb;
  --bg-white: #ffffff;
  --bg-dark: #111111;
  --orange: #d4591a;
  --orange-light: #e8834a;
  --gray-text: #555555;
  --gray-light: #e0e0e0;
  --black: #111111;
  --white: #ffffff;
  --condensed: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
  --orange-dark: #B03E12;
  --muted:       #666666;
  --bg-modal:    #F7F5F2;
  --border:      #E2DED8;
}
html {
    scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* SMOOTH SCROLL — controlado totalmente via JS para garantir easing customizado */
#comprar { scroll-margin-top: 80px; }

/* NAV */
nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-light); }

/* HERO */
.hero-wrap { background: var(--bg-white); border-bottom: 3px solid var(--orange); }
.hero {
  padding: 80px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}
.hero-tag {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: #fdf0e8;
  border: 1px solid #f5c4a0;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--condensed);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.hero-title .highlight { color: var(--orange); display: block; }
.hero-title .sub-title {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--gray-text);
  display: block;
  text-transform: none;
  margin-top: 8px;
  line-height: 1.3;
}
.hero-title .sub-title strong {
    color: var(--orange);
    font-weight: 600;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.7;
  margin: 24px 0 32px;
  max-width: 480px;
}
.hero-sub strong { color: var(--black); font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.hero-price-note { font-size: 14px; color: var(--gray-text); line-height: 1.5; }
.hero-price-note strong { color: var(--black); font-weight: 600; display: block; font-size: 16px; }
.hero-img-wrap {
  height: 540px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* STATS */
.stats-bar {
  background: var(--black);
  padding: 32px 40px;
  display: flex;
  justify-content: center;
}
.stat {
  text-align: center;
  padding: 0 52px;
  border-right: 1px solid #2a2a2a;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--condensed);
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label { font-size: 13px; color: #666; font-weight: 400; margin-top: 4px; display: block; max-width: 130px; }

/* SECTIONS */
section { padding: 80px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--condensed);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-body { font-size: 16px; color: var(--gray-text); line-height: 1.75; max-width: 600px; }

/* PROBLEM SECTION */
.problem-section { background: var(--black); }
.problem-section .section-title { color: var(--white); }
.problem-section .section-eyebrow { color: var(--orange); }
.problem-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #1e1e1e;
}
.problem-item:last-child { border-bottom: none; }
.problem-x {
  width: 24px;
  height: 24px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.problem-x svg { width: 12px; height: 12px; stroke: #666; stroke-width: 2.5; fill: none; }
.problem-text { font-size: 17px; color: #aaa; line-height: 1.5; }
.problem-conclusion {
  margin-top: 40px;
  padding: 32px 36px;
  border-left: 4px solid var(--orange);
  background: #161616;
  border-radius: 0 8px 8px 0;
}
.problem-conclusion p {
  font-family: var(--condensed);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.problem-conclusion span { font-size: 16px; color: #666; font-family: var(--body); font-weight: 300; text-transform: none; }

/* METHOD SECTION */
.method-section { background: var(--bg); }
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.method-left .big-statement {
  font-family: var(--condensed);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 24px;
}
.method-left .big-statement span { color: var(--orange); }
.method-body { font-size: 16px; color: var(--gray-text); line-height: 1.75; margin-bottom: 20px; }
.method-items { display: flex; flex-direction: column; gap: 12px; }
.method-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-white);
  border-radius: 4px;
  border-left: 3px solid var(--orange);
}
.check {
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check svg { width: 12px; height: 12px; stroke: white; stroke-width: 3; fill: none; }
.method-item-text { font-size: 15px; color: var(--black); line-height: 1.5; }

/* FOR WHO */
.for-who-section { background: var(--bg-white); }
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}
.for-who-yes, .for-who-no { display: flex; flex-direction: column; gap: 12px; }
.for-who-label {
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.for-who-label.yes { color: var(--orange); }
.for-who-label.no { color: #999; }
.for-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 4px;
}
.for-item.yes { background: var(--bg); border-left: 3px solid var(--orange); }
.for-item.no { background: #f7f7f7; border-left: 3px solid #ddd; }
.for-dot-yes {
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.for-dot-yes svg { width: 10px; height: 10px; stroke: white; stroke-width: 3; fill: none; }
.for-dot-no {
  width: 20px; height: 20px;
  background: #ddd;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  font-size: 12px; color: #999; font-weight: 700;
}
.for-item-text { font-size: 14px; color: var(--black); line-height: 1.5; }
.for-item.no .for-item-text { color: #999; }

/* MODULES */
.modules-section { background: var(--bg); }
.modules-list { margin-top: 48px; display: flex; flex-direction: column; gap: 3px; }
.module-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.15s;
}
.module-item.reverse { direction: rtl; }
.module-item.reverse > * { direction: ltr; }
.module-text { padding: 40px; }
.module-num {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.module-name {
  font-family: var(--condensed);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}
.module-desc { font-size: 15px; color: var(--gray-text); line-height: 1.65; margin-bottom: 16px; }
.module-dur {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
}
.module-img {
  min-height: 260px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 12px;
  font-family: var(--condensed);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 10px;
}
.module-img svg { opacity: 0.2; }
.module-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* BONUS */
.bonus-section { background: var(--black); }
.bonus-section .section-title { color: var(--white); }
.bonus-section .section-body { color: #666; }
.bonus-card {
  margin-top: 40px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  padding: 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  background: #161616;
}
.bonus-icon {
  width: 80px; height: 80px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.bonus-icon svg { width: 36px; height: 36px; stroke: white; fill: none; stroke-width: 1.5; }
.bonus-tag-pill {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(212,89,26,0.15);
  border: 1px solid rgba(212,89,26,0.3);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.bonus-title {
  font-family: var(--condensed);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}
.bonus-desc { font-size: 15px; color: #777; line-height: 1.65; }

/* AUTHOR */
.author-section { background: var(--bg-white); }
.author-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.author-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg);
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.author-name {
  font-family: var(--condensed);
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 6px;
}
.author-role {
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 32px;
}
.author-story {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
}
.author-story p { margin-bottom: 16px; }
.author-story strong { color: var(--black); font-weight: 600; }
.companies-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0 28px;
}
.company-badge {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
}
.company-badge.featured { background: var(--orange); }
.career-items { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.career-item {
  padding: 16px 20px;
  background: var(--bg);
  border-radius: 4px;
  border-left: 3px solid var(--orange);
}
.career-company {
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 2px;
}
.career-role { font-size: 13px; color: var(--gray-text); }
.career-period {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* FAQ */
.faq-section { background: var(--bg); }
.faq-list {
  margin-top: 40px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-white);
}
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: white;
  font-weight: 700;
  transition: transform 0.2s;
  font-family: sans-serif;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  padding: 22px 28px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* PRICE */
.price-section { background: var(--bg-white); padding: 80px 40px; }
.price-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.price-inner .section-title { color: var(--black); }
.price-context {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.price-context-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 32px;
  text-align: left;
  background: var(--bg);
  border-radius: 8px;
  padding: 24px 28px;
}
.price-context-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-text);
  text-decoration: line-through;
}
.price-context-item::before {
  content: '✗';
  color: #ccc;
  font-size: 14px;
  flex-shrink: 0;
}
.price-context-item.highlight {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.price-context-item.highlight::before { content: '→'; color: var(--orange); }
.price-card {
  background: var(--black);
  border-radius: 8px;
  padding: 48px;
  border: 2px solid var(--orange);
}
.price-label-sm {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
  display: block;
}
.price-value {
  font-family: var(--condensed);
  font-size: 72px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.price-installment { font-size: 14px; color: #444; margin-bottom: 32px; }
.price-note {
  font-size: 14px;
  color: var(--orange);
  font-style: italic;
  margin-bottom: 24px;
}
.price-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1e1e1e;
  text-align: left;
}
.price-include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #ccc;
}
.price-include-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.btn-buy {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}
.btn-buy:hover { background: var(--orange-light); transform: translateY(-1px); }
.guarantee-note { font-size: 13px; color: #444; text-align: center; }

/* CLOSING */
.closing-section {
  background: var(--bg-dark);
  padding: 80px 40px;
  text-align: center;
}
.closing-two-paths {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 56px;
}
.path-card {
  padding: 40px 32px;
  text-align: left;
  border-radius: 6px;
}
.path-card.bad { background: #161616; }
.path-card.good { background: var(--orange); }
.path-label {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.path-card.bad .path-label { color: #444; }
.path-card.good .path-label { color: rgba(255,255,255,0.7); }
.path-title {
  font-family: var(--condensed);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.path-card.bad .path-title { color: #444; }
.path-card.good .path-title { color: var(--white); }
.path-items { display: flex; flex-direction: column; gap: 10px; }
.path-item { font-size: 14px; line-height: 1.5; padding-left: 16px; position: relative; }
.path-item::before { content: ','; position: absolute; left: 0; }
.path-card.bad .path-item { color: #555; }
.path-card.bad .path-item::before { color: #333; }
.path-card.good .path-item { color: rgba(255,255,255,0.85); }
.path-card.good .path-item::before { color: rgba(255,255,255,0.5); }
.closing-bottom { max-width: 600px; margin: 0 auto; }
.closing-title {
  font-family: var(--condensed);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.05;
}
.closing-title span { color: var(--orange); }
.closing-sub { font-size: 15px; color: #555; margin-bottom: 36px; }

/* FOOTER */
footer {
  background: #000;
  padding: 24px 40px;
  text-align: center;
  font-size: 12px;
  color: #333;
  font-family: var(--condensed);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-accent {
  width: 4px;
  align-self: stretch;
  min-height: 52px;
  background: var(--orange);
  flex-shrink: 0;
}

.cookie-banner-text { flex: 1; min-width: 260px; }

.cookie-banner-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 2px 8px;
  margin-bottom: 6px;
}

.cookie-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
}
.cookie-banner-title span { color: var(--orange); }

.cookie-banner-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-banner-desc button {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.cookie-btn.btn-accept {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.cookie-btn.btn-accept:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.cookie-btn.btn-decline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.cookie-btn-decline:hover { background: var(--black); color: var(--white); }

/* ════════════════════════════
   MODAL POLÍTICA DE PRIVACIDADE
════════════════════════════ */
#privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.60);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#privacy-modal.open { display: flex; }

.pmodal-box {
  background: var(--white);
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--orange);
  animation: fadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cabeçalho fixo do modal */
.pmodal-header {
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.pmodal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 2px 6px;
  transition: color 0.15s;
}
.pmodal-close:hover { color: var(--black); }

.pmodal-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 2px 8px;
  margin-bottom: 8px;
}

.pmodal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.1;
}

.pmodal-updated {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Corpo com scroll */
.pmodal-body {
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
  flex: 1;
  scroll-behavior: smooth;
}

/* Tipografia do conteúdo */
.pmodal-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin: 1.75rem 0 0.5rem;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--border);
}
.pmodal-body h3:first-child { margin-top: 0; }

.pmodal-body p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.pmodal-body ul {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}

.pmodal-body ul li {
  font-size: 13.5px;
  color: #444;
  line-height: 1.6;
  padding: 4px 0 4px 16px;
  position: relative;
}
.pmodal-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 2px;
  background: var(--orange);
}

/* Bloco de destaque */
.pmodal-body .info-block {
  background: var(--bg-modal);
  border-left: 3px solid var(--orange);
  padding: 0.875rem 1rem;
  margin: 0.75rem 0;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}
.pmodal-body .info-block strong { color: var(--black); }

/* Rodapé fixo do modal */
.pmodal-footer {
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 0; }
  .hero-img-wrap { height: 300px; }
  .stats-bar { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .stat { border-right: none; border-bottom: 1px solid #1e1e1e; padding: 0 0 24px; }
  .stat:last-child { border-bottom: none; }
  section { padding: 60px 24px; }
  .method-grid, .for-who-grid, .module-item, .author-grid, .closing-two-paths { grid-template-columns: 1fr; }
  .module-item.reverse { direction: ltr; }
  .bonus-card { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
  .price-card { padding: 32px 24px; }
  .author-grid { gap: 32px; }
}