/* ============================================
   UPWORLD1 LIBRARY · DESIGN SYSTEM
   Editorial premium oceânico
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* === Colors · UpWorld1 LOCKED === */
  --ocean-deep:   #0A2540;
  --ocean-mid:    #163659;
  --ocean-soft:   #E8EEF4;
  --ocean-mist:   #F4F8FB;
  --gold:         #C8A96A;
  --gold-soft:    #DEC79A;
  --gold-deep:    #A88842;
  --ink:          #0A2540;
  --ink-soft:     #5A6B7E;
  --ink-mute:     #8A98A8;
  --paper:        #FFFFFF;
  --paper-warm:   #FAF7F2;
  --line:         #DDE3EA;
  --line-soft:    #ECF1F5;

  /* === Type === */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* === Spacing === */
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 10vw, 8rem);

  /* === Radii === */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* === Easing === */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  font-feature-settings: 'kern', 'liga';
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ocean-deep);
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 4.5vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }

p { color: var(--ink-soft); line-height: 1.65; }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p {
  font-size: 1.0625rem;
  margin-top: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: var(--body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ocean-deep);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--ocean-mid);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(10, 37, 64, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ocean-deep);
  border-color: var(--ocean-deep);
}
.btn-ghost:hover {
  background: var(--ocean-deep);
  color: var(--paper);
}
.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--ocean-deep);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem var(--gutter);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ocean-deep);
}
.brand-sub {
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9375rem;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ocean-deep); }
.lang-toggle {
  display: flex;
  background: var(--ocean-mist);
  border-radius: 999px;
  padding: 4px;
}
.lang-toggle button {
  background: none;
  border: none;
  padding: 0.375rem 0.75rem;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s;
}
.lang-toggle .lang-active {
  background: var(--paper);
  color: var(--ocean-deep);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.lang-toggle button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media (max-width: 720px) {
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .lang-toggle { display: none; }
  .brand-sub { display: none; }
}

/* ============================================
   HERO (HOME)
   ============================================ */
.hero {
  position: relative;
  padding: 7rem var(--gutter) 6rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ocean-mist) 0%, var(--paper) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero-headline {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 1rem 0 1.5rem;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}
.hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.0625rem, 2.2vw, 1.375rem);
  color: var(--ocean-mid);
  margin-bottom: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
.hero-deck {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   COMECE AQUI
   ============================================ */
.comece {
  padding: var(--section-y) 0;
  background: var(--paper-warm);
}
.comece-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.comece-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
  min-height: 240px;
}
.comece-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(10, 37, 64, 0.15);
}
.comece-card .step {
  font-family: var(--display);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.comece-card h3 { margin-bottom: 0.75rem; }
.comece-card p { font-size: 0.9375rem; flex: 1; }
.comece-card .arrow {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: var(--ocean-deep);
  transition: transform 0.3s;
}
.comece-card:hover .arrow { transform: translateX(6px); }

/* ============================================
   CATEGORIAS
   ============================================ */
.categorias { padding: var(--section-y) 0; }
.categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.75rem;
  border-radius: var(--r-lg);
  background: var(--ocean-deep);
  color: var(--paper);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  min-height: 280px;
  border: 1px solid rgba(255,255,255,0.05);
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200, 169, 106, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card:hover::before { opacity: 1; }
.cat-card > * { position: relative; z-index: 1; }
.cat-card h3 {
  color: var(--paper);
  font-size: 1.5rem;
  margin: 1.25rem 0 0.75rem;
}
.cat-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  flex: 1;
}
.cat-card .cat-meta {
  margin-top: 1.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.cat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 106, 0.15);
  border-radius: 50%;
  color: var(--gold-soft);
}

/* ============================================
   ESSENCIAL (Combo Renova)
   ============================================ */
.essencial { padding: var(--section-y) 0; background: var(--ocean-mist); }
.essencial-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4.5rem);
  box-shadow: 0 30px 80px -40px rgba(10, 37, 64, 0.2);
  border: 1px solid var(--gold-soft);
  position: relative;
  overflow: hidden;
}
.essencial-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(200, 169, 106, 0.08), transparent 70%);
  pointer-events: none;
}
.essencial-text { position: relative; }
.essencial-text h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  margin: 1rem 0 1.5rem;
  line-height: 1.1;
}
.essencial-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}
.essencial-list li {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.essencial-list li:last-child { border: none; }
.essencial-list strong {
  color: var(--ocean-deep);
  font-weight: 500;
  font-family: var(--display);
}
.essencial-price {
  font-size: 0.875rem;
  color: var(--ink-mute);
  margin-top: 1rem;
}
.essencial-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-stack {
  position: relative;
  width: 200px;
  height: 280px;
}
.cover-stack > * {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: -10px 20px 40px -15px rgba(10, 37, 64, 0.35);
  transition: transform 0.5s var(--ease);
}
.cover-stack > *:nth-child(1) { transform: rotate(-8deg) translateX(-30px); z-index: 1; }
.cover-stack > *:nth-child(2) { transform: rotate(0deg); z-index: 3; }
.cover-stack > *:nth-child(3) { transform: rotate(8deg) translateX(30px); z-index: 2; }
.essencial-card:hover .cover-stack > *:nth-child(1) { transform: rotate(-12deg) translateX(-45px) translateY(-12px); }
.essencial-card:hover .cover-stack > *:nth-child(3) { transform: rotate(12deg) translateX(45px) translateY(-12px); }

@media (max-width: 880px) {
  .essencial-card { grid-template-columns: 1fr; }
  .essencial-visual { order: -1; height: 320px; }
  .cover-stack { width: 170px; height: 240px; }
}

/* ============================================
   EBOOK GRID
   ============================================ */
.destaque { padding: var(--section-y) 0; }
.ebook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.ebook-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--paper);
  border-radius: var(--r-md);
  transition: transform 0.3s var(--ease);
}
.ebook-card:hover { transform: translateY(-6px); }
.ebook-cover-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-sm);
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(10, 37, 64, 0.3);
  transition: box-shadow 0.3s;
}
.ebook-card:hover .ebook-cover-wrap {
  box-shadow: 0 30px 60px -25px rgba(10, 37, 64, 0.4);
}
.ebook-cover-wrap svg { width: 100%; height: 100%; }
.tier-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}
.tier-free {
  background: var(--gold);
  color: var(--ocean-deep);
}
.tier-premium {
  background: rgba(10, 37, 64, 0.92);
  color: var(--gold-soft);
  backdrop-filter: blur(8px);
}
.ebook-card h3 {
  font-size: 1.0625rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.ebook-card p {
  font-size: 0.875rem;
  flex: 1;
  color: var(--ink-soft);
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ocean-deep);
  transition: color 0.2s, gap 0.2s;
}
.card-cta:hover {
  color: var(--gold-deep);
  gap: 0.625rem;
}

/* ============================================
   SÉRIES GRID (HOME)
   ============================================ */
.series { padding: var(--section-y) 0; background: var(--ocean-deep); color: var(--paper); }
.series h2, .series .eyebrow { color: inherit; }
.series h2 { color: var(--paper); }
.series h2 em { color: var(--gold-soft); }
.series .eyebrow { color: var(--gold-soft); }
.series-head p { color: rgba(255,255,255,0.7); }
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.serie-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
  min-height: 220px;
}
.serie-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.serie-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.serie-card h3 { color: var(--paper); margin-bottom: 0.5rem; }
.serie-card p { font-size: 0.9375rem; flex: 1; color: rgba(255,255,255,0.7); }
.serie-card .serie-meta {
  margin-top: 1.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.serie-card.serie-future {
  border-style: dashed;
  border-color: rgba(255,255,255,0.15);
}
.serie-card.serie-future .serie-meta { color: var(--ink-mute); }

/* ============================================
   POSICIONAMENTO
   ============================================ */
.posicionamento {
  padding: var(--section-y) 0;
  background: var(--paper-warm);
}
.posicionamento .container {
  max-width: 880px;
  text-align: center;
}
.positioning-quote {
  font-family: var(--display);
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--ocean-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.positioning-quote em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.posicionamento cite {
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
}

/* ============================================
   CONVERSÃO
   ============================================ */
.conversao {
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.conversao::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 169, 106, 0.07), transparent 60%);
  pointer-events: none;
}
.conv-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}
.conv-secondary {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  flex-wrap: wrap;
  justify-content: center;
}
.conv-secondary a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s;
}
.conv-secondary a:hover {
  color: var(--ocean-deep);
  border-color: var(--gold);
}
.conv-secondary .dot { color: var(--ink-mute); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  background: var(--ocean-deep);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-mark { color: var(--paper); }
.footer-brand .brand-sub { color: var(--gold-soft); display: block; margin-top: 4px; }
.footer-brand p { margin-top: 0.75rem; color: rgba(255,255,255,0.65); font-size: 0.875rem; max-width: 320px; }
.footer-brand .contact { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 1.5rem; }
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   PÁGINA DE SÉRIE
   ============================================ */
.serie-hero {
  padding: 6.5rem var(--gutter) 5rem;
  background: linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.serie-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(200, 169, 106, 0.14), transparent 60%);
}
.serie-hero-content { position: relative; max-width: 720px; margin: 0 auto; z-index: 1; }
.serie-hero h1 { color: var(--paper); }
.serie-hero h1 em { color: var(--gold-soft); font-weight: 300; }
.serie-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-top: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
}
.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.4; }

/* Para quem é */
.para-quem { padding: var(--section-y) 0; background: var(--paper-warm); }
.para-quem .container { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.para-quem h2 { font-size: clamp(1.625rem, 3.5vw, 2.25rem); }
.para-quem-text { font-size: 1.0625rem; line-height: 1.7; }
.para-quem-text p + p { margin-top: 1rem; }
@media (max-width: 768px) {
  .para-quem .container { grid-template-columns: 1fr; }
}

/* O que vai encontrar */
.encontrar { padding: var(--section-y) 0; }
.encontrar-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.encontrar-list li {
  padding: 1.5rem;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 4px 12px -6px rgba(10, 37, 64, 0.08);
  line-height: 1.5;
}

/* Ordem recomendada */
.ordem { padding: var(--section-y) 0; background: var(--ocean-mist); }
.ordem-steps { counter-reset: step; margin-top: 2rem; max-width: 760px; }
.ordem-step {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 5rem;
  margin-bottom: 1rem;
  background: var(--paper);
  border-radius: var(--r-md);
  counter-increment: step;
  box-shadow: 0 6px 16px -8px rgba(10, 37, 64, 0.08);
  transition: transform 0.2s;
}
.ordem-step:hover { transform: translateX(4px); }
.ordem-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
}
.ordem-step h4 {
  font-family: var(--display);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.ordem-step p { font-size: 0.875rem; color: var(--ink-soft); }

/* Bloco destaque na série (Renova) */
.serie-essencial {
  padding: var(--section-y) 0;
  background: var(--paper-warm);
}

/* CTA final série */
.cta-final {
  padding: var(--section-y) 0;
  background: var(--ocean-deep);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 169, 106, 0.12), transparent 60%);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { color: var(--paper); }
.cta-final h2 em { color: var(--gold-soft); }
.cta-final p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 1rem auto 2rem; }
.cta-final-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final .btn-primary {
  background: var(--gold);
  color: var(--ocean-deep);
}
.cta-final .btn-primary:hover { background: var(--gold-soft); }
.cta-final .btn-ghost {
  border-color: rgba(255,255,255,0.3);
  color: var(--paper);
}
.cta-final .btn-ghost:hover {
  background: var(--paper);
  color: var(--ocean-deep);
  border-color: var(--paper);
}

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

/* ============================================
   RESPONSIVE FINAL
   ============================================ */
@media (max-width: 480px) {
  :root { --section-y: 4rem; }
  .hero { padding-top: 4.5rem; padding-bottom: 4rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
