:root {
  --bg: #07111f;
  --panel: rgba(10, 20, 36, 0.78);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eff4ff;
  --muted: #a8b6cf;
  --accent: #f7c76a;
  --accent-strong: #ffd993;
  --accent-soft: rgba(247, 199, 106, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(116, 91, 255, 0.12), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(247, 199, 106, 0.08), transparent 18%),
    linear-gradient(180deg, #06101d 0%, #091423 48%, #050c15 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 25%, transparent 78%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.6px, transparent 0.8px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 18, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.topbar-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, rgba(247, 199, 106, 0.95), rgba(255, 255, 255, 0.95));
  color: #07111f;
  box-shadow: 0 14px 30px rgba(247, 199, 106, 0.2);
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}

.topnav a:hover,
.footer a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #08111c;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 34px rgba(247, 199, 106, 0.2);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 22%, rgba(255, 250, 232, 0.34) 46%, rgba(255, 255, 255, 0) 68%);
  transform: translateX(-135%);
  transition: transform 0.7s ease;
  z-index: -1;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.button-primary:hover {
  transform: translateY(-2px) scale(1.015);
  background: linear-gradient(135deg, #ffd27c, #ffe3aa);
  box-shadow: 0 18px 40px rgba(247, 199, 106, 0.3);
}

.button-primary:hover::before,
.button-primary:focus-visible::before {
  transform: translateX(135%);
}

.button-primary:focus-visible {
  transform: translateY(-2px) scale(1.015);
  background: linear-gradient(135deg, #ffd27c, #ffe3aa);
  box-shadow: 0 0 0 4px rgba(247, 199, 106, 0.14), 0 18px 40px rgba(247, 199, 106, 0.3);
  outline: none;
}

.topbar-cta {
  min-width: 11.5rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(247, 199, 106, 0.22);
}

.topbar-cta:hover,
.topbar-cta:focus-visible {
  box-shadow: 0 22px 44px rgba(247, 199, 106, 0.32);
}

.button-ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.button-full {
  width: 100%;
}

.pill,
.section-kicker,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1rem;
  color: #dfe7f7;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill::before,
.section-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(247, 199, 106, 0.5);
}

.hero {
  position: relative;
  padding-top: 4rem;
  min-height: calc(100vh - 5rem);
  overflow: clip;
}

#stars {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-ambient {
  position: absolute;
  filter: blur(110px);
  z-index: -1;
  opacity: 0.52;
}

.hero-ambient-violet {
  top: -6rem;
  left: 10%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(114, 98, 255, 0.34), transparent 68%);
}

.hero-ambient-gold {
  right: 3%;
  bottom: 0;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(247, 199, 106, 0.22), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-intro h2 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.65rem, 5.9vw, 4.75rem);
  max-width: 12ch;
}

.hero-text,
.section-intro p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 40rem;
  margin-top: 1.5rem;
}

.hero-note {
  max-width: 36rem;
  margin-top: 1rem;
  color: rgba(239, 244, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-seals {
  margin-top: 1rem;
}

.hero-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #dfe7f7;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-seal {
  padding: 0.55rem 0.85rem;
}

.hero-seal-urgent {
  border-color: rgba(247, 199, 106, 0.25);
  background: rgba(247, 199, 106, 0.12);
  color: var(--accent-strong);
}

.hero-actions,
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 1rem;
  margin-top: 2rem;
}

.hero-benefits {
  gap: 0.8rem 1.5rem;
  list-style: none;
  margin-top: 1.5rem;
  color: #dbe5f9;
}

.hero-benefits li {
  position: relative;
  padding-left: 1.1rem;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-card,
.mini-card,
.highlight-card,
.book-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(8, 16, 29, 0.74);
}

.hero-card h2 {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.2;
}

.hero-card p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-stats article,
.mini-card {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats article {
  padding: 1rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-stats span,
.mini-card span {
  color: var(--muted);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  min-height: 7.8rem;
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-md);
}

.mini-card strong {
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.section-intro {
  max-width: 48rem;
}

.section-intro h2 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
}

.section-intro p {
  margin-top: 1rem;
}

.section-intro-compact {
  max-width: 40rem;
}

.align-between {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: end;
}

.highlight-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card {
  border-radius: var(--radius-md);
  padding: 1.55rem;
}

.highlight-card strong {
  font-size: 1.02rem;
}

.highlight-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 0.85rem;
}

.books-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 18.75rem));
  justify-content: center;
  align-items: stretch;
  column-gap: 1.1rem;
  row-gap: 4.25rem;
}

.book-card {
  min-height: 100%;
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: visible;
  isolation: isolate;
  transition: transform 0.2s ease, z-index 0.2s ease;
}

.book-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(247, 199, 106, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  opacity: 0.75;
  pointer-events: none;
}

.book-cover-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.7;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.book-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.78;
  filter: saturate(0.9) brightness(0.94);
  transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.book-card:hover .book-cover-wrap {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.book-card:hover .book-cover {
  opacity: 1;
  filter: saturate(1.03) brightness(1);
  transform: scale(1.015);
}

.book-hover-panel {
  position: absolute;
  left: 50%;
  bottom: -1.35rem;
  width: calc(100% - 1.4rem);
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(9, 18, 32, 0.96), rgba(7, 14, 25, 0.98));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(0.9rem) scale(0.96);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.book-hover-label {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-hover-panel p {
  margin: 0;
  color: #dce6f7;
  font-size: 0.9rem;
  line-height: 1.55;
}

.book-card:hover {
  transform: translateY(-0.12rem);
  z-index: 6;
}

.book-card:hover .book-hover-panel,
.book-card:focus-within .book-hover-panel {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.book-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.book-card h3 {
  margin-top: 0.75rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.book-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.book-tag {
  width: fit-content;
  margin: 0 auto;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 54rem;
  margin-top: 2.5rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 1.3rem 1.4rem;
  text-align: left;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
}

.faq-question:hover {
  color: #f8fafc;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(125, 168, 255, 0.6);
  outline-offset: -3px;
}

.faq-icon {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  color: var(--accent-strong);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .faq-list {
    max-width: none;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .faq-question {
    min-height: 3.5rem;
    gap: 0.85rem;
    padding: 1.1rem 1rem;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.footer {
  padding: 0 0 2rem;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}

.footer p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button {
    transition: none !important;
    transform: none !important;
  }

  .button-primary {
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .align-between {
    grid-template-columns: 1fr;
  }

  .books-grid {
    grid-template-columns: repeat(2, minmax(0, 17.5rem));
    row-gap: 4.25rem;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .topbar {
    padding: 0.85rem 0;
  }

  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .topbar-cta,
  .button,
  .button-full {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.28rem, 10.8vw, 3.55rem);
  }

  .hero-actions,
  .hero-benefits,
  .hero-seals {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-note,
  .hero-text {
    max-width: none;
  }

  .hero-stats,
  .hero-mini-grid,
  .highlight-grid,
  .books-grid {
    grid-template-columns: 1fr;
  }

  .books-grid {
    justify-content: stretch;
    row-gap: 1rem;
  }

  .book-hover-panel {
    display: none;
  }

  .hero-card,
  .mini-card,
  .highlight-card,
  .book-card {
    border-radius: 1.35rem;
  }

  .book-card { min-height: auto; }
}

/* LevelUp Livros V2 — header, hero and collection only */
.v2-container {
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(16, 42, 107, 0.045);
  backdrop-filter: blur(20px) saturate(140%);
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5rem;
  gap: 1.25rem;
}

.site-header .brand {
  width: fit-content;
  gap: 0.65rem;
  color: #102a6b;
  font-size: 1.08rem;
  letter-spacing: -0.035em;
}

.brand-symbol {
  width: 2.75rem;
  height: 2.35rem;
  flex: 0 0 auto;
  overflow: visible;
}

.brand-growth-line,
.brand-growth-arrow,
.brand-book {
  fill: none;
  stroke: #1f2937;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.brand-growth-line,
.brand-growth-arrow,
.brand-book-accent {
  stroke: #315b9a;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.15rem;
  font-weight: 600;
}

.brand-text strong {
  color: #315b9a;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.4vw, 1.35rem);
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(21, 94, 239, 0.08);
  border-radius: 999px;
  background: rgba(247, 250, 255, 0.78);
}

.site-nav a,
.header-link {
  color: #526078;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.header-link:hover {
  color: #155eef;
}

.header-link {
  justify-self: end;
}

.header-cta {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1.05rem;
  border-radius: 0.9rem;
  background: #155eef;
  color: #fff;
  box-shadow: 0 8px 18px rgba(21, 94, 239, 0.18);
}

.header-cta:hover {
  color: #fff;
  background: #0f4fd1;
}

.site-header a:focus-visible,
.v2-button:focus-visible,
.v2-books-grid:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 4px;
}

.v2-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 23%, rgba(37, 99, 235, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  min-height: min(760px, calc(100vh - 4.75rem));
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.v2-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 39rem;
}

.v2-eyebrow {
  color: #155eef;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v2-hero h1,
.v2-catalog-intro h2 {
  margin-top: 1rem;
  color: #102a6b;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.v2-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.1rem, 5.3vw, 5.5rem);
}

.v2-hero-lede {
  max-width: 34rem;
  margin-top: 1.75rem;
  color: #42536e;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.v2-hero-detail {
  margin-top: 1rem;
  color: #667085;
  font-size: 0.92rem;
  font-weight: 650;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.v2-button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 1rem;
  padding: 0.85rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-button:hover {
  transform: translateY(-1px);
}

.v2-button-primary {
  background: #155eef;
  color: #fff;
  box-shadow: 0 13px 24px rgba(21, 94, 239, 0.2);
}

.v2-button-primary:hover {
  background: #0f4fd1;
}

.cta-pulse {
  animation: cta-pulse 2.4s ease-in-out infinite;
}

.cta-pulse:hover,
.cta-pulse:focus-visible {
  animation-play-state: paused;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(21, 94, 239, 0.2), 0 0 0 0 rgba(21, 94, 239, 0.18);
  }

  50% {
    box-shadow: 0 13px 28px rgba(21, 94, 239, 0.28), 0 0 0 7px rgba(21, 94, 239, 0);
  }
}

.v2-button-secondary {
  border-color: #d7e3ff;
  background: #fff;
  color: #155eef;
}

.v2-button-secondary:hover {
  background: #f3f7ff;
}

.hero-books {
  position: relative;
  width: min(100%, 590px);
  height: 530px;
  margin-left: auto;
}

.hero-books::before {
  content: "";
  position: absolute;
  inset: 12% 5% 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12), transparent 68%);
  pointer-events: none;
}

.hero-book {
  position: absolute;
  width: clamp(125px, 15vw, 165px);
  margin: 0;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.16);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hero-book img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-book:hover {
  transform: translateY(-7px) rotate(0deg) !important;
  box-shadow: 0 30px 54px rgba(15, 23, 42, 0.22);
}

.hero-book-1 { top: 2%; left: 50%; width: clamp(185px, 21vw, 225px); transform: translateX(-50%); z-index: 5; }
.hero-book-2 { top: 18%; left: 3%; transform: rotate(-2deg); z-index: 4; }
.hero-book-3 { top: 18%; right: 3%; transform: rotate(2deg); z-index: 4; }
.hero-book-4 { bottom: 1%; left: 22%; width: clamp(125px, 14vw, 150px); transform: rotate(-1deg); z-index: 2; }
.hero-book-5 { right: 22%; bottom: 1%; width: clamp(125px, 14vw, 150px); transform: rotate(1deg); z-index: 2; }

#colecao.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #f8fafc;
}

.v2-catalog-shell {
  position: relative;
}

.v2-catalog-intro {
  max-width: 39rem;
}

.v2-catalog-intro h2 {
  font-size: clamp(2.65rem, 5vw, 4.65rem);
}

.v2-catalog-intro > p:last-child {
  max-width: 31rem;
  margin-top: 1.25rem;
  color: #526078;
  font-size: 1.02rem;
  line-height: 1.7;
}

.v2-books-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.1rem, 2.4vw, 2rem);
  margin-top: clamp(2.8rem, 5vw, 4rem);
}

.v2-book {
  min-width: 0;
  align-self: start;
}

.v2-book img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 1536;
  object-fit: contain;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 14px 25px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v2-book:hover img {
  transform: translateY(-4px);
  box-shadow: 0 20px 32px rgba(15, 23, 42, 0.18);
}

.v2-book-featured img {
  box-shadow: 0 19px 32px rgba(21, 94, 239, 0.17), 0 10px 20px rgba(15, 23, 42, 0.1);
}

.v2-book-featured h3 {
  color: #102a6b;
}

.v2-book div {
  padding: 0.8rem 0.15rem 0;
}

.v2-book span {
  color: #667085;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-book h3 {
  margin-top: 0.3rem;
  color: #172b4d;
  font-size: clamp(0.88rem, 1.15vw, 1.03rem);
  line-height: 1.25;
}

@media (max-width: 900px) {
  .v2-hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(350px, 1.12fr);
    gap: 1.75rem;
  }

  .hero-books {
    height: 490px;
  }

  .v2-books-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .v2-container {
    width: min(100% - 2rem, 38rem);
  }

  .site-header-inner {
    grid-template-columns: 1fr auto;
    min-height: 4.25rem;
  }

  .site-nav {
    display: none;
  }

  .brand-symbol {
    width: 2.45rem;
    height: 2.1rem;
  }

  .site-header .brand {
    gap: 0.5rem;
  }

  .brand-text {
    font-size: 1.02rem;
  }

  .header-cta {
    min-height: 2.6rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.78rem;
  }

  .v2-hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding: 3.5rem 0 4rem;
  }

  .v2-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 13.2vw, 4rem);
  }

  .v2-hero-lede {
    margin-top: 1.35rem;
    font-size: 1rem;
  }

  .v2-hero-actions {
    flex-direction: column;
    margin-top: 1.65rem;
  }

  .v2-button {
    width: 100%;
  }

  .hero-books {
    width: min(100%, 29rem);
    height: min(78vw, 325px);
    margin: 0 auto;
  }

  .hero-book {
    width: clamp(92px, 28vw, 118px);
    border-width: 3px;
    border-radius: 0.85rem;
  }

  .hero-book-1 { top: 0; left: 50%; width: clamp(136px, 40vw, 166px); transform: translateX(-50%); z-index: 3; }
  .hero-book-2 { bottom: 0; left: 3%; transform: none; z-index: 2; }
  .hero-book-3 { right: 3%; bottom: 0; transform: none; z-index: 2; }
  .hero-book-4,
  .hero-book-5 { display: none; }

  #colecao.section {
    overflow: hidden;
    padding: 4.5rem 0;
  }

  .v2-catalog-intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .v2-books-grid {
    display: flex;
    width: auto;
    margin-right: -1rem;
    padding: 0.2rem 1rem 1rem 0.15rem;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0.15rem;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .v2-book {
    width: min(65vw, 235px);
    flex: 0 0 min(65vw, 235px);
    scroll-snap-align: start;
  }

  .v2-book h3 {
    font-size: 0.95rem;
  }

  .v2-catalog-shell::after {
    content: "deslize para explorar \2192";
    display: block;
    margin-top: 1.1rem;
    color: #667085;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-button,
  .hero-book,
  .v2-book img {
    transition: none;
  }

  .cta-pulse {
    animation: none;
  }

}

/* LevelUp Livros V2 — proposition, social proof, themes and offer */
.v2-summary-section {
  background: #ffffff;
}

.v2-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  padding-top: clamp(4.25rem, 7vw, 6.75rem);
  padding-bottom: clamp(4.25rem, 7vw, 6.75rem);
}

.v2-summary-intro h2 {
  max-width: 10ch;
  margin-top: 1rem;
  color: #102a6b;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.45rem, 4.2vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.v2-summary-intro > p:not(.v2-summary-note) {
  max-width: 34rem;
  margin-top: 1.25rem;
  color: #42536e;
  font-size: 1.1rem;
  line-height: 1.75;
}

.v2-summary-note {
  max-width: 34rem;
  margin-top: 1.25rem;
  padding-left: 0.9rem;
  border-left: 2px solid #155eef;
  color: #172b4d;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.v2-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: summary-item;
  border-top: 1px solid #d7e3ff;
}

.v2-summary-list li {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid #d7e3ff;
  counter-increment: summary-item;
}

.v2-summary-list li::before {
  content: "0" counter(summary-item);
  color: #155eef;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.v2-summary-list h3 {
  color: #102a6b;
  font-size: 1.2rem;
  line-height: 1.35;
}

.v2-summary-list p {
  margin-top: 0.45rem;
  color: #526078;
  font-size: 1.05rem;
  line-height: 1.7;
}

.v2-offer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.v2-social-proof-section {
  position: relative;
  background: #0b1730;
}

.v2-themes-heading h2,
.v2-offer-copy h2 {
  margin-top: 1rem;
  color: #f6f8fd;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.v2-offer-copy h2 {
  font-size: clamp(2.35rem, 3.8vw, 3.7rem);
}
.v2-offer-copy p {
  margin-top: 0.55rem;
  color: #c9d4e7;
  line-height: 1.7;
}

.v2-social-proof-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 46% 10%, rgba(21, 94, 239, 0.08), transparent 29%),
    #0b1730;
}

.v2-social-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.v2-social-proof article {
  min-width: 0;
  padding: 0.25rem clamp(1rem, 3vw, 3rem);
  text-align: center;
}

.v2-social-proof article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.v2-social-proof strong,
.v2-social-proof span {
  display: block;
}

.v2-social-proof strong {
  color: #f6f8fd;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.v2-rating {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.v2-rating-stars {
  color: #155eef;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.v2-social-proof .v2-rating-disclaimer {
  margin-top: 0.25rem;
  color: #aebed8;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.v2-reader-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  padding-top: clamp(4rem, 7vw, 6.75rem);
}

.v2-reader-proof-intro {
  position: relative;
  max-width: 27rem;
}

.v2-reader-proof-intro h2 {
  margin-top: 1rem;
  color: #f6f8fd;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.7rem, 4.4vw, 4.35rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.v2-reader-proof-intro p {
  max-width: 19rem;
  margin-top: 1.5rem;
  color: #c9d4e7;
  font-size: 1.12rem;
  line-height: 1.7;
}

.v2-reader-rule {
  display: block;
  width: 4rem;
  height: 2px;
  margin-top: 2rem;
  background: #155eef;
}

.v2-reader-proof-intro::after {
  content: "“";
  position: absolute;
  top: calc(100% + 2rem);
  left: -0.45rem;
  color: rgba(77, 137, 255, 0.36);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(8rem, 14vw, 14rem);
  font-weight: 600;
  line-height: 0.7;
  pointer-events: none;
}

.v2-reader-testimonials {
  min-width: 0;
}

.v2-reader-testimonial {
  min-width: 0;
}

.v2-reader-testimonial-featured {
  padding: 1.75rem 0 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.v2-reader-stars {
  display: block;
  color: #7da8ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.v2-reader-testimonial blockquote {
  margin: 1rem 0 0;
  color: #f6f8fd;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.42;
}

.v2-reader-testimonial-featured blockquote {
  max-width: 23ch;
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  line-height: 1.18;
}

.v2-reader-testimonial footer {
  margin-top: 1.4rem;
}

.v2-reader-testimonial footer strong {
  color: #f6f8fd;
  font-size: 0.9rem;
}

.v2-reader-testimonial footer {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.v2-reader-testimonial footer::before {
  content: "";
  width: 1.55rem;
  height: 2px;
  background: #155eef;
}

.v2-reader-testimonial footer span {
  color: #aebed8;
  font-size: 0.78rem;
}

.v2-reader-secondary-testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-top: 2rem;
}

.v2-reader-secondary-testimonials .v2-reader-testimonial + .v2-reader-testimonial {
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.v2-social-proof span {
  margin-top: 0.55rem;
  color: #c9d4e7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-themes-section {
  background: #f8fafc;
}

.v2-themes-heading {
  max-width: 43rem;
}

.v2-themes-heading h2 {
  color: #102a6b;
  font-size: clamp(2.15rem, 3.6vw, 3.45rem);
}

.v2-themes-heading > p {
  max-width: 35rem;
  margin-top: 1rem;
  color: #526078;
  font-size: 1.05rem;
  line-height: 1.7;
}

.v2-themes-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding: 0;
  list-style: none;
}

.v2-themes-list li {
  min-width: 0;
  padding: 1rem 0.7rem;
  border-bottom: 1px solid #cfdcf4;
  color: #172b4d;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.v2-themes-list li:nth-child(4n + 1) {
  padding-left: 0;
}

.v2-convenience {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid #cfdcf4;
}

.v2-convenience-heading h3 {
  max-width: 13ch;
  margin-top: 0.85rem;
  color: #102a6b;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.v2-convenience-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.v2-convenience-items article {
  min-width: 0;
  padding-top: 0.9rem;
  border-top: 2px solid #155eef;
}

.v2-convenience-items strong {
  color: #172b4d;
  font-size: 1rem;
}

.v2-convenience-items p {
  margin-top: 0.65rem;
  color: #526078;
  font-size: 0.9rem;
  line-height: 1.65;
}

.v2-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  padding: clamp(2.2rem, 5vw, 4.5rem) 0;
}

.v2-offer-copy h2 {
  max-width: 13ch;
}

.v2-offer-copy > p:not(.v2-offer-includes) {
  max-width: 35rem;
  font-size: 1.05rem;
}

.v2-offer-includes {
  color: #f6f8fd !important;
  font-size: 0.9rem;
  font-weight: 800;
}

.v2-offer-facts {
  display: grid;
  gap: 0.7rem;
  max-width: 35rem;
  margin-top: 1.6rem;
  padding: 0;
  color: #dbe5f5;
  list-style: none;
}

.v2-offer-facts li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.v2-offer-facts li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #7da8ff;
}

.v2-offer-action {
  align-self: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid #d7e3ff;
  border-radius: 1.5rem;
  background: #f7faff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.v2-offer-action > span {
  color: #526078;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-offer-action strong {
  display: block;
  margin-top: 0.15rem;
  color: #102a6b;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.2rem, 5.4vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.v2-offer-action strong small {
  font-family: "Manrope", sans-serif;
  font-size: 0.22em;
  font-weight: 800;
  letter-spacing: 0;
}

.v2-offer-price-previous {
  margin-top: 0.85rem;
  color: #526078;
  font-size: 0.95rem;
  font-weight: 700;
}

.v2-offer-price-previous s {
  color: #344765;
  text-decoration-thickness: 1.5px;
}

.v2-offer-action .v2-button {
  width: 100%;
  margin-top: 1.5rem;
}

.v2-offer-action p {
  margin-top: 0.9rem;
  color: #526078;
  font-size: 0.84rem;
  line-height: 1.5;
}

.v2-final-cta {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.v2-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.v2-final-cta h2 {
  max-width: 18ch;
  margin-top: 0.8rem;
  color: #f6f8fd;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.v2-final-cta p {
  margin-top: 0.85rem;
  color: #c9d4e7;
  line-height: 1.65;
}

.v2-final-cta .v2-button {
  min-width: 15rem;
}

@media (max-width: 760px) {
  .v2-summary,
  .v2-offer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .v2-summary-intro h2,
  .v2-offer-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .v2-summary-list li {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .v2-social-proof-section {
    padding: 3.75rem 0;
  }

  .v2-social-proof article {
    padding: 1rem 0.25rem;
  }

  .v2-social-proof strong {
    font-size: clamp(1.95rem, 10vw, 2.45rem);
  }

  .v2-rating-stars {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }

  .v2-social-proof .v2-rating-disclaimer {
    font-size: 0.5rem;
  }

  .v2-reader-proof {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.5rem;
  }

  .v2-reader-proof-intro h2 {
    font-size: clamp(2.3rem, 10vw, 3.1rem);
  }

  .v2-reader-proof-intro::after {
    display: none;
  }

  .v2-reader-secondary-testimonials {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .v2-reader-secondary-testimonials .v2-reader-testimonial {
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .v2-reader-secondary-testimonials .v2-reader-testimonial + .v2-reader-testimonial {
    padding-left: 0;
    border-left: 0;
  }

  .v2-reader-testimonial-featured {
    padding-top: 1.25rem;
  }

  .v2-reader-testimonial-featured blockquote {
    font-size: clamp(1.65rem, 7.2vw, 2.1rem);
  }

  .v2-social-proof span {
    font-size: 0.62rem;
    letter-spacing: 0.055em;
  }

  .v2-themes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-themes-list li {
    padding: 0.8rem 0.45rem;
  }

  .v2-themes-list li:nth-child(4n + 1) {
    padding-left: 0.45rem;
  }

  .v2-themes-list li:nth-child(2n + 1) {
    padding-left: 0;
  }

  .v2-convenience {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
  }

  .v2-convenience-items {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .v2-offer {
    padding: 2.5rem 0;
  }

  .v2-offer-action {
    border-radius: 1.2rem;
  }

  .v2-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .v2-final-cta .v2-button {
    width: 100%;
    min-width: 0;
  }
}
