/* ============================================================
   SuperDani — Libro solidario
   CSS común + dos enfoques (A: fiel al Figma | B: replanteo)
   ============================================================ */

/* ---------- Reset + base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fef9f6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Tokens ---------- */
:root {
  --pink: #cc3382;
  --pink-deep: #aa2a6c;
  --yellow: #facc15;
  --green: #78b94c;
  --blue: #54c2e5;
  --purple: #473bf0;
  --navy: #161c2d;
  --cream: #fef9f6;
  --cream-2: #fff4ea;
  --text: #161c2d;
  --muted: #555;
  --line: #ebebeb;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
h1 {
  font-family: "Fraunces", "DM Serif Display", serif;
  font-weight: 900;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 50;
  letter-spacing: -0.03em;
}
h2 {
  font-family: "Fraunces", "DM Serif Display", serif;
  font-weight: 900;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 50;
  letter-spacing: -0.025em;
}
h3 {
  font-family: "DM Serif Display", serif;
  letter-spacing: -0.01em;
}
p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ---------- Nav (reusado de la home) ---------- */
nav.libro-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 249, 246, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(22, 28, 45, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.nav-logo span {
  font-family: "DM Serif Display", serif;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  color: #666;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a.current {
  color: var(--pink);
  font-weight: 600;
}
.btn-donate-nav {
  background: var(--pink);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-donate-nav:hover {
  background: var(--pink-deep) !important;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 120px 0;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
}

/* ---------- Botón CTA tipo "píldora" coloreada ---------- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  background: var(--pink);
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 8px 24px -8px rgba(204, 51, 130, 0.5);
}
.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(204, 51, 130, 0.6);
}
.btn-pill.is-green {
  background: var(--green);
  box-shadow: 0 8px 24px -8px rgba(120, 185, 76, 0.5);
}
.btn-pill.is-blue {
  background: var(--blue);
  box-shadow: 0 8px 24px -8px rgba(84, 194, 229, 0.5);
}
.btn-pill.is-navy {
  background: rgba(48, 82, 117, 0.85);
}
.btn-pill.is-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(22, 28, 45, 0.15);
  box-shadow: none;
}
.btn-pill.is-ghost:hover {
  border-color: var(--text);
  background: rgba(22, 28, 45, 0.03);
}

/* ---------- Subrayado garabato ---------- */
.squiggle {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.squiggle svg {
  position: absolute;
  left: -4%;
  bottom: -14px;
  width: 108%;
  height: 16px;
  pointer-events: none;
}
.squiggle.is-cyan svg path {
  stroke: var(--blue);
}
.squiggle.is-green svg path {
  stroke: var(--green);
}
.squiggle.is-pink svg path {
  stroke: var(--pink);
}
.squiggle.is-yellow svg path {
  stroke: var(--yellow);
}

/* ---------- Blobs SVG orgánicos (reutilizables) ---------- */
.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Strip de valores (4 items con iconos) ---------- */
.values-strip {
  background: #fff;
  border-top: 1px solid rgba(22, 28, 45, 0.06);
  border-bottom: 1px solid rgba(22, 28, 45, 0.06);
  padding: 32px 0;
  position: relative;
  z-index: 5;
}
.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 960px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.value-text .value-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}
.value-text .value-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   ENFOQUE A — FIEL AL FIGMA REFINADO
   ============================================================ */

body[data-variant="a"] .variant-b {
  display: none !important;
}
body[data-variant="b"] .variant-a {
  display: none !important;
}

/* ---------- A: HERO ---------- */
.a-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: repeating-linear-gradient(
    95deg,
    transparent 0 40px,
    rgba(22, 28, 45, 0.03) 40px 42px
  );
}
.a-hero-bg-blob {
  position: absolute;
  left: 50%;
  top: -10%;
  width: 72%;
  height: 110%;
  z-index: 0;
}
.a-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.a-hero-content {
  position: relative;
  z-index: 3;
}
.a-hero-eyebrow {
  display: inline-block;
  background: rgba(48, 82, 117, 0.85);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.a-hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.25rem);
  margin-bottom: 24px;
}
.a-hero h1 em {
  font-style: normal;
  color: var(--pink);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 900;
}
.a-hero-lead {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  max-width: 520px;
  margin-bottom: 24px;
}
.a-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.a-hero-sub strong {
  color: var(--text);
}
.a-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.a-hero-note {
  font-size: 0.82rem;
  color: #999;
}

/* Libro 3D recreado en CSS */
.a-hero-book {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.book-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3e2 100%);
  border-radius: 4px 14px 14px 4px;
  box-shadow:
    inset 8px 0 0 rgba(22, 28, 45, 0.04),
    inset 12px 0 16px -12px rgba(22, 28, 45, 0.2);
  padding: 26px 24px 24px 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.book-topline {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  margin-bottom: 10px;
}
.book-title {
  font-family: "Fraunces", "DM Serif Display", serif;
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1;
  margin-bottom: 14px;
}
.book-title .s1 {
  color: #473bf0;
}
.book-title .s2 {
  color: var(--pink);
}
.book-title .s3 {
  color: var(--green);
}
.book-title .s4 {
  color: var(--yellow);
}
.book-title .s5 {
  color: var(--blue);
}
.book-title .s6 {
  color: #f57059;
}
.book-title .s7 {
  color: var(--purple);
}
.book-title .s8 {
  color: var(--pink);
}
.book-hero-img {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  margin: 6px 0;
}
.book-hero-img::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(250, 204, 21, 0.35),
      transparent 30%
    ),
    radial-gradient(
      circle at 75% 20%,
      rgba(204, 51, 130, 0.25),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 75%,
      rgba(84, 194, 229, 0.3),
      transparent 32%
    ),
    radial-gradient(circle at 80% 70%, rgba(120, 185, 76, 0.3), transparent 28%);
  filter: blur(2px);
}
.book-hero-img img {
  position: relative;
  max-height: 220px;
  width: auto;
  filter: drop-shadow(2px 4px 0 rgba(22, 28, 45, 0.12));
}
.book-hero-img .book-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.book-hero-img .book-stars span {
  position: absolute;
  font-size: 1.2rem;
}
.book-quote {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-align: center;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1.5px dashed rgba(22, 28, 45, 0.15);
}
.book-values {
  position: absolute;
  right: -14px;
  top: 40%;
  transform: translateY(-50%);
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 0.7rem;
  line-height: 1.35;
  text-align: right;
  color: var(--text);
  letter-spacing: 0.04em;
}
.book-values span {
  display: block;
}
.book-values .v1 {
  color: var(--yellow);
  -webkit-text-stroke: 0.5px var(--text);
}
.book-values .v2 {
  color: var(--pink);
}
.book-values .v3 {
  color: var(--blue);
}
.book-values .v4 {
  color: var(--green);
}
.book-footer-line {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--text);
  text-transform: uppercase;
  width: 80%;
  line-height: 1.5;
}
.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(
    90deg,
    rgba(22, 28, 45, 0.15),
    rgba(22, 28, 45, 0.03)
  );
  border-radius: 4px 0 0 4px;
}

/* Sello circular flotando */
/* .a-hero-sello {
  position: absolute; right: -30px; top: 60px;
  width: 130px; height: 130px;
  transform: rotate(18deg);
  animation: floatSello 6s ease-in-out infinite;
  z-index: 4;
} */
@keyframes floatSello {
  0%,
  100% {
    transform: rotate(18deg) translateY(0);
  }
  50% {
    transform: rotate(14deg) translateY(-8px);
  }
}

/* ---------- A: Sección "¿Por qué nace este libro solidario?" ---------- */
.a-por-que {
  position: relative;
  padding: 90px 0 0px;
  text-align: center;
  overflow: hidden;
}
.a-por-que-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}
.a-por-que h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  margin-bottom: 28px;
}
.a-por-que .lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.a-cebra-wrap {
  position: relative;
  margin: 0px auto 0;
  max-width: 1100px;
  padding: 0 40px;
  z-index: 1;
}
.a-cebra-wrap .cebra-img {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
}
.a-cebra-blob-1,
.a-cebra-blob-2 {
  position: absolute;
  z-index: 0;
}
.a-cebra-blob-1 {
  left: 6%;
  top: 30%;
  width: 280px;
}
.a-cebra-blob-2 {
  right: 10%;
  top: 18%;
  width: 220px;
}
.a-cebra-sparkles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* ---------- A: Desafío 160K timeline ---------- */
.a-desafio {
  position: relative;
  padding: 120px 0 140px;
  background: rgba(48, 82, 117, 0.07);
  border-radius: 120px;
  margin: 0px 20px;
  overflow: hidden;
}
.a-desafio-head {
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.a-desafio-head h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}
.a-desafio-head p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}
.a-desafio-blob-y {
  position: absolute;
  left: -8%;
  top: 20%;
  width: 420px;
  height: 420px;
  background: var(--yellow);
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
  opacity: 0.7;
  z-index: -1;
}
.a-desafio-blob-g {
  position: absolute;
  left: 5%;
  top: 55%;
  width: 300px;
  height: 240px;
  background: var(--green);
  border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
  opacity: 0.18;
  z-index: -2;
}
.a-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  height: 320px;
  z-index: 2;
}
.a-timeline-line {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 140px;
  transform: translateY(-50%);
  z-index: 1;
}
.a-timeline-milestone {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: translate(-50%, -50%);
}
.a-timeline-milestone .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--text);
  box-shadow: 0 4px 0 rgba(22, 28, 45, 0.1);
}
.a-timeline-milestone .amount {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 3.4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.a-timeline-milestone .label {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  max-width: 160px;
  text-align: center;
  line-height: 1.3;
}
.a-timeline-milestone.is-active .dot {
  background: var(--pink);
  border-color: var(--pink);
}
.m-40 {
  left: 18%;
  top: 75%;
}
.m-40 .amount {
  color: var(--pink);
}
.m-80 {
  left: 42%;
  top: 35%;
}
.m-80 .amount {
  color: var(--green);
}
.m-120 {
  left: 66%;
  top: 65%;
}
.m-120 .amount {
  color: var(--blue);
}
.m-160 {
  left: 88%;
  top: 25%;
}
.m-160 .amount {
  color: var(--yellow);
}

/* ---------- A: "Este cuento es para ti si..." ---------- */
.a-para-ti {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}
.a-para-ti-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.a-para-ti-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.a-para-ti::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 35%, var(--cream) 58%);
  z-index: 1;
  pointer-events: none;
}
.a-para-ti-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 640px;
  position: relative;
  z-index: 2;
}
.a-para-ti-text {
  width: 48%;
  padding: 80px 0 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
  z-index: 3;
}
.a-para-ti h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  margin-bottom: 40px;
}
.a-para-ti-list {
  list-style: none;
  margin-bottom: 40px;
}
.a-para-ti-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(22, 28, 45, 0.12);
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.015em;
}
.a-para-ti-list li::before {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--purple);
  border-radius: 50%;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2l-4.2-4.2-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 66%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- A: "¿Quieres formar parte?" ---------- */
.a-formar-parte {
  position: relative;
  padding: 120px 0 160px;
  overflow: hidden;
}
.a-fp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.a-fp-text h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 28px;
}
.a-fp-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.a-fp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.a-fp-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px 24px;
  box-shadow:
    0 2px 0 rgba(22, 28, 45, 0.04),
    0 18px 40px -20px rgba(22, 28, 45, 0.15);
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.a-fp-card:hover {
  transform: translateY(-6px);
}
.a-fp-card .card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.a-fp-card.is-1 .card-tag {
  background: rgba(204, 51, 130, 0.12);
  color: var(--pink);
}
.a-fp-card.is-2 .card-tag {
  background: rgba(71, 59, 240, 0.12);
  color: var(--purple);
}
.a-fp-card.is-3 .card-tag {
  background: rgba(120, 185, 76, 0.15);
  color: var(--green);
}
.a-fp-card h4 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text);
}
.a-fp-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 18px;
}
.a-fp-card .card-cta {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-top: auto;
}
.a-fp-card.is-1 .card-cta {
  background: var(--pink);
}
.a-fp-card.is-2 .card-cta {
  background: var(--purple);
}
.a-fp-card.is-3 .card-cta {
  background: var(--green);
}

.a-fp-blob {
  position: absolute;
  right: -10%;
  top: 30%;
  width: 500px;
  height: 430px;
  background: var(--pink);
  border-radius: 50% 60% 40% 50% / 60% 40% 60% 40%;
  opacity: 0.9;
  z-index: 0;
  transform: rotate(-20deg);
}
.a-fp-text .a-fp-squiggle svg {
  stroke: var(--green);
}

/* ---------- A: Strip IG ---------- */
.ig-strip-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 20px;
  background: #fff0f7;
  flex-wrap: wrap;
}
.ig-strip-custom p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}
.ig-strip-custom .ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(
    220deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}
.ig-strip-custom .ig-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================================
   ENFOQUE B — REPLANTEO: "la web como un libro abierto"
   ============================================================ */

body[data-variant="b"] {
  background: var(--cream);
  /* textura de papel sutil */
  background-image:
    radial-gradient(rgba(22, 28, 45, 0.018) 1px, transparent 1px),
    radial-gradient(rgba(22, 28, 45, 0.012) 1px, transparent 1px);
  background-size:
    3px 3px,
    7px 7px;
  background-position:
    0 0,
    1px 2px;
}

/* "Página" marker en el margen */
.b-page-marker {
  position: absolute;
  left: 40px;
  top: 40px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(22, 28, 45, 0.35);
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 5;
}

/* ---------- B: HERO (spread de portada de libro) ---------- */
.b-hero {
  position: relative;
  min-height: 760px;
  padding: 140px 0 60px;
  overflow: hidden;
}
.b-hero-paper {
  position: absolute;
  inset: 80px 40px 40px;
  z-index: 0;
  border-radius: 4px;
  background: #fffaf2;
  box-shadow:
    0 1px 0 rgba(22, 28, 45, 0.08),
    inset 0 0 120px rgba(22, 28, 45, 0.03),
    0 30px 60px -30px rgba(22, 28, 45, 0.1);
}
.b-hero-spine {
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(22, 28, 45, 0.12) 20%,
    rgba(22, 28, 45, 0.12) 80%,
    transparent
  );
  transform: translateX(-50%);
  z-index: 1;
  box-shadow:
    -14px 0 20px -10px rgba(22, 28, 45, 0.1),
    14px 0 20px -10px rgba(22, 28, 45, 0.1);
}
.b-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 640px;
}
.b-hero-left {
  position: relative;
}
.b-hero-pageno {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(22, 28, 45, 0.4);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 28px;
}
.b-hero-pageno::before,
.b-hero-pageno::after {
  content: "—";
  margin: 0 10px;
  color: rgba(22, 28, 45, 0.25);
}
.b-hero-tagline {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--pink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.b-hero h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  margin-bottom: 28px;
  line-height: 1.02;
}
.b-hero h1 .ital {
  font-style: italic;
  font-weight: 500;
  color: var(--pink);
  display: block;
}
.b-hero-lead {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 460px;
}
.b-hero-sub {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 36px;
}
.b-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.b-hero-note {
  margin-top: 18px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(22, 28, 45, 0.5);
}
.b-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Stickers puntuales alrededor del libro */
.b-sticker {
  position: absolute;
  z-index: 3;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(22, 28, 45, 0.3);
}
.b-sticker.s-1 {
  background: var(--yellow);
  color: var(--text);
  top: 40px;
  left: -20px;
  transform: rotate(-8deg);
}
.b-sticker.s-2 {
  background: var(--blue);
  bottom: 60px;
  right: -10px;
  transform: rotate(6deg);
}
.b-sticker.s-3 {
  background: var(--green);
  top: 200px;
  right: -30px;
  transform: rotate(-4deg);
}

/* ---------- B: Values strip (variante editorial) ---------- */
body[data-variant="b"] .values-strip {
  background: transparent;
  border: none;
  padding: 20px 0 60px;
}
body[data-variant="b"] .values-grid {
  border-top: 1.5px solid rgba(22, 28, 45, 0.1);
  border-bottom: 1.5px solid rgba(22, 28, 45, 0.1);
  padding: 32px 28px;
  max-width: 1200px;
}

/* ---------- B: "¿Por qué nace este libro solidario?" (marcapáginas) ---------- */
.b-por-que {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.b-por-que-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.b-por-que-text {
  position: relative;
}
.b-por-que-text .eyebrow {
  color: var(--pink);
  margin-bottom: 20px;
}
.b-por-que h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  margin-bottom: 28px;
}
.b-por-que .lead {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--text);
  border-left: 3px solid var(--pink);
  padding-left: 24px;
  margin-left: 4px;
}
.b-cebra-stage {
  position: relative;
  height: 520px;
}
.b-cebra-stage .cebra-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}
.b-cebra-blob-a,
.b-cebra-blob-b {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.b-cebra-blob-a {
  width: 380px;
  height: 380px;
  left: 15%;
  top: 10%;
  background: radial-gradient(
    circle,
    var(--yellow) 0%,
    rgba(250, 204, 21, 0.3) 70%,
    transparent 100%
  );
}
.b-cebra-blob-b {
  width: 260px;
  height: 260px;
  right: 10%;
  bottom: 8%;
  background: radial-gradient(
    circle,
    rgba(84, 194, 229, 0.45) 0%,
    transparent 70%
  );
}
.b-cebra-stripes {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(
    12deg,
    transparent 0 22px,
    var(--text) 22px 26px
  );
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
}

/* ---------- B: Desafío 160K (mapa serpenteante) ---------- */
.b-desafio {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.b-desafio-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.b-desafio-head {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}
.b-desafio-head .eyebrow {
  color: var(--green);
  margin-bottom: 20px;
}
.b-desafio-head h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  margin-bottom: 24px;
}
.b-desafio-head p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}

.b-map {
  position: relative;
  height: 620px;
}
.b-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.b-map-cebra {
  position: absolute;
  width: 130px;
  z-index: 4;
  top: 0;
  left: 20%;
  animation: cebraWalk 8s ease-in-out infinite alternate;
}
@keyframes cebraWalk {
  0% {
    transform: translate(0, 0) rotate(-2deg);
  }
  50% {
    transform: translate(10px, -6px) rotate(2deg);
  }
  100% {
    transform: translate(0, 0) rotate(-2deg);
  }
}
.b-map-stop {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.b-map-stop .stop-pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 0.95rem;
  border: 3px solid var(--text);
  box-shadow: 0 6px 0 rgba(22, 28, 45, 0.15);
  color: var(--text);
}
.b-map-stop .stop-amount {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.b-map-stop .stop-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  max-width: 180px;
  line-height: 1.3;
}
.b-map-stop.s-1 {
  left: 8%;
  top: 8%;
}
.b-map-stop.s-1 .stop-amount {
  color: var(--pink);
}
.b-map-stop.s-2 {
  left: 34%;
  top: 55%;
}
.b-map-stop.s-2 .stop-amount {
  color: var(--green);
}
.b-map-stop.s-3 {
  left: 62%;
  top: 15%;
}
.b-map-stop.s-3 .stop-amount {
  color: var(--blue);
}
.b-map-stop.s-4 {
  left: 85%;
  top: 60%;
}
.b-map-stop.s-4 .stop-amount {
  color: #eab308;
  -webkit-text-stroke: 1px var(--text);
}

/* ---------- B: "Para ti si..." (marcapáginas sobre foto) ---------- */
.b-para-ti {
  position: relative;
  padding: 80px 0 140px;
  overflow: hidden;
}
.b-para-ti-photo {
  position: relative;
  height: 580px;
  background: url("assets/familia.png") center 20% / cover no-repeat;
  background-color: #fdeec9;
  border-radius: 32px;
  overflow: hidden;
  margin: 0 28px;
}
.b-para-ti-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(254, 249, 246, 0.92) 0%,
    rgba(254, 249, 246, 0.4) 40%,
    transparent 60%
  );
}
.b-marcapaginas {
  position: absolute;
  left: 60px;
  top: 50px;
  bottom: 50px;
  width: 420px;
  background: #fff;
  padding: 44px 36px 56px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px -16px rgba(22, 28, 45, 0.25);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 92%, 0 100%);
  z-index: 2;
}
.b-marcapaginas::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: var(--pink);
}
.b-marcapaginas .eyebrow {
  color: var(--pink);
  margin-bottom: 14px;
}
.b-marcapaginas h2 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1.05;
  margin-bottom: 28px;
}
.b-marca-list {
  list-style: none;
  flex: 1;
}
.b-marca-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(22, 28, 45, 0.15);
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
}
.b-marca-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--pink);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2l-4.2-4.2-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- B: "Formar parte" (dedicatoria + cards) ---------- */
.b-formar-parte {
  position: relative;
  padding: 120px 0 160px;
}
.b-fp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.b-fp-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}
.b-fp-head .eyebrow {
  color: var(--blue);
  margin-bottom: 20px;
}
.b-fp-head h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.3rem);
  margin-bottom: 28px;
}
.b-fp-head p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto;
}
.b-fp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.b-fp-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 26px 28px;
  border: 1.5px solid rgba(22, 28, 45, 0.06);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.b-fp-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 20px 40px -20px rgba(22, 28, 45, 0.18);
}
.b-fp-card .card-num {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.b-fp-card.is-1 .card-num {
  color: var(--pink);
}
.b-fp-card.is-2 .card-num {
  color: var(--purple);
}
.b-fp-card.is-3 .card-num {
  color: var(--green);
}
.b-fp-card h4 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}
.b-fp-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 22px;
}
.b-fp-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.b-fp-card.is-1 .card-cta {
  color: var(--pink);
}
.b-fp-card.is-2 .card-cta {
  color: var(--purple);
}
.b-fp-card.is-3 .card-cta {
  color: var(--green);
}
.b-fp-card .card-cta svg {
  width: 14px;
  height: 14px;
}
.card-cta.is-soon {
  opacity: .5;
  cursor: default;
  pointer-events: none;
  font-style: italic;
  letter-spacing: .06em;
}

.b-dedicatoria {
  margin: 80px auto 0;
  max-width: 680px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}
.b-dedicatoria::before,
.b-dedicatoria::after {
  content: "✦";
  display: block;
  margin: 0 auto 16px;
  color: var(--pink);
  font-size: 1.1rem;
}
.b-dedicatoria::after {
  margin: 16px auto 0;
}
.b-dedicatoria p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}
.b-dedicatoria .sig {
  margin-top: 14px;
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pink);
}

/* ============================================================
   FOOTER (común)
   ============================================================ */
.libro-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(22, 28, 45, 0.08);
  background: #fff;
}
.libro-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.libro-footer .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.libro-footer .brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.libro-footer .brand span {
  font-family: "DM Serif Display", serif;
  font-size: 1.1rem;
}
.libro-footer p {
  font-size: 0.82rem;
  color: var(--muted);
}
.libro-footer a {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ============================================================
   TWEAKS PANEL (floating bottom-right)
   ============================================================ */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 124px;
  z-index: 200;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px 16px;
  box-shadow:
    0 12px 32px -8px rgba(22, 28, 45, 0.25),
    0 0 0 1px rgba(22, 28, 45, 0.06);
  width: 280px;
  display: none;
  font-family: "DM Sans", sans-serif;
}
.tweaks-panel.is-visible {
  display: block;
}
.tweaks-panel h5 {
  font-family: "DM Serif Display", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
}
.tweaks-row {
  margin-bottom: 14px;
}
.tweaks-row:last-child {
  margin-bottom: 0;
}
.tweaks-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.tweaks-segments {
  display: flex;
  gap: 6px;
  background: #f5f2ed;
  padding: 4px;
  border-radius: 8px;
}
.tweaks-segments button {
  flex: 1;
  padding: 8px 10px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  transition: all 0.15s ease;
}
.tweaks-segments button.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 2px 4px rgba(22, 28, 45, 0.1);
}

/* ============================================================
   El libro (portada ilustrada en CSS)
   ============================================================ */
.a-hero-book {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.book-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  background: linear-gradient(
    90deg,
    rgba(22, 28, 45, 0.18) 0%,
    rgba(22, 28, 45, 0.04) 60%,
    transparent 100%
  );
  border-radius: 8px 0 0 8px;
  pointer-events: none;
}
.book-cover {
  position: absolute;
  inset: 14px 12px 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 14px;
  gap: 10px;
}
.book-topline {
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.book-title {
  font-family: "Fraunces", "DM Serif Display", serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  gap: 1px;
  margin-top: 4px;
}
.book-title span {
  display: inline-block;
  transform-origin: center;
}
.book-title .s1 {
  color: var(--pink);
  transform: rotate(-4deg);
}
.book-title .s2 {
  color: var(--yellow);
  transform: rotate(3deg);
}
.book-title .s3 {
  color: var(--blue);
  transform: rotate(-2deg);
}
.book-title .s4 {
  color: var(--green);
  transform: rotate(4deg);
}
.book-title .s5 {
  color: var(--pink);
  transform: rotate(-3deg);
}
.book-title .s6 {
  color: var(--purple);
  transform: rotate(2deg);
}
.book-title .s7 {
  color: var(--yellow);
  transform: rotate(-4deg);
}
.book-title .s8 {
  color: var(--green);
  transform: rotate(3deg);
}
.book-hero-img {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
}
.book-hero-img > img {
  max-height: 150px;
  width: auto;
  filter: drop-shadow(0 8px 14px rgba(22, 28, 45, 0.18));
}
.book-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.book-stars span {
  position: absolute;
  font-size: 1.1rem;
  animation: twinkle 2.4s ease-in-out infinite;
}
.book-stars span:nth-child(2) {
  animation-delay: 0.6s;
}
.book-stars span:nth-child(3) {
  animation-delay: 1.2s;
}
.book-stars span:nth-child(4) {
  animation-delay: 1.8s;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.book-values {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.book-values .v1 {
  color: var(--pink);
}
.book-values .v2 {
  color: var(--blue);
}
.book-values .v3 {
  color: var(--green);
}
.book-values .v4 {
  color: var(--navy);
  margin-top: 2px;
}
.book-footer-line {
  font-family: "DM Sans", sans-serif;
  font-size: 0.6rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 4px;
  font-style: italic;
}
/* .a-hero-sello {
  position: absolute;
  right: -10px;
  bottom: 20px;
  width: 120px;
  height: auto;
  transform: rotate(-12deg);
  animation: bob 4s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(22,28,45,0.2));
  z-index: 2;
} */
@keyframes bob {
  0%,
  100% {
    transform: rotate(-12deg) translateY(0);
  }
  50% {
    transform: rotate(-10deg) translateY(-6px);
  }
}

/* Cartoon intensity affects decorations */
body[data-cartoon="low"] .blob {
  opacity: 0.5;
}
body[data-cartoon="low"] .book {
  transform: rotate(0);
}
body[data-cartoon="low"] .a-hero-sello {
  transform: rotate(0);
  animation: none;
}
body[data-cartoon="low"] .b-sticker {
  transform: rotate(0) !important;
}
body[data-cartoon="high"] .a-hero-book .book {
  transform: rotate(-5deg);
}
body[data-cartoon="high"] .b-sticker.s-1 {
  transform: rotate(-12deg) scale(1.1);
}
body[data-cartoon="high"] .b-sticker.s-2 {
  transform: rotate(10deg) scale(1.1);
}
body[data-cartoon="high"] .b-sticker.s-3 {
  transform: rotate(-8deg) scale(1.1);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {

  .a-para-ti-img,.a-fp-blob{
    display: none;
    
  }
  .nav-links a:not(.btn-donate-nav) {
    display: none;
  }
  .a-hero-bg-blob {
    display: none;
}
  .a-hero-inner,
  .b-hero-inner,
  .a-para-ti-inner,
  .a-fp-inner,
  .a-desafio-head,
  .b-por-que-inner {
    grid-template-columns: 1fr;
  }
  .a-para-ti {
    min-height: auto;
  }
  .a-para-ti::after {
    display: none;
  }
  .a-para-ti-img {
    position: relative;
    inset: auto;
    height: 320px;
  }
  .a-para-ti-inner {
    flex-direction: column;
    min-height: auto;
    padding: 0;
  }
  .a-para-ti-text {
    width: 100%;
    padding: 48px 28px;
  }
  .a-fp-cards,
  .b-fp-cards {
    grid-template-columns: 1fr;
  }

  .a-timeline,
  .b-map {
    height: auto;
    padding: 0 20px;
  }
  .a-timeline-milestone,
  .b-map-stop {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none;
    margin-bottom: 40px;
  }
  .a-timeline-milestone:nth-child(odd),
  .b-map-stop:nth-child(odd) {
    flex-direction: column-reverse;
  }
  .a-timeline-line,
  .b-map-svg {
    display: none;
  }
  .b-hero-paper,
  .b-hero-spine {
    display: none;
  }
  .b-hero-inner {
    padding: 20px 28px;
  }
  .b-marcapaginas {
    position: relative;
    width: auto;
    left: 0;
    top: 0;
    bottom: auto;
    margin: 20px;
    clip-path: none;
    border-radius: 20px;
  }
  .b-para-ti-photo {
    height: auto;
    min-height: 300px;
  }
  .a-desafio {
    border-radius: 40px;
    margin: 20px 12px;
    padding: 60px 0 80px;
  }
}
