/* ============================================================
   VARIABLES DE MARCA — ajusta aquí los colores globales
   ============================================================ */
:root {
  /* Colores de marca */
  --color-cream: #F5EDE0;      /* fondo principal crema/beige */
  --color-cream-dark: #EBE0CE; /* variante crema para bordes/tarjetas */
  --color-navy: #1A3A6B;       /* azul marino: títulos y texto de marca */
  --color-navy-dark: #142E54;  /* variante oscura del navy */
  --color-wine: #8B2131;       /* rojo vino: acento, botones, cintas */
  --color-wine-dark: #6E1926;  /* wine oscuro para hover */

  /* Neutros */
  --color-text: #2A2A2A;
  --color-text-light: #5A5A5A;
  --color-white: #FFFFFF;
  --color-placeholder-bg: #E4E4E4;
  --color-placeholder-border: #B8B8B8;
  --color-placeholder-text: #8A8A8A;

  /* Tipografía */
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Forma y layout — página de ventas: columna única centrada */
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 8px 30px rgba(26, 58, 107, 0.10);
  --container: 720px;
}

/* ============================================================
   RESET BÁSICO
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.16; letter-spacing: -0.025em; color: var(--color-navy); margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; }

/* ============================================================
   LAYOUT / UTILIDADES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.center { text-align: center; }

.section { padding: 64px 0; }
.section--cream { background-color: var(--color-cream); }
.section--navy { background-color: var(--color-navy); }
.section--navy h2, .section--navy h3 { color: var(--color-cream); }
.section--navy p, .section--navy li { color: rgba(245, 237, 224, 0.9); }

.section__title {
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  font-weight: 700;
}

/* Destacados de copy */
.hl { color: var(--color-wine); }                 /* palabras clave en vino (fondo claro) */
.hl-light {                                        /* palabras clave sobre fondo navy */
  color: #E8909D;
}
.hl-underline {                                    /* subrayado vino en narrativa */
  background-image: linear-gradient(transparent 62%, rgba(139, 33, 49, 0.28) 62%);
  font-weight: 600;
  color: var(--color-wine);
}

/* Checkmark (glifo de texto, sin librerías) */
.check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-wine);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 800;
}
.check--big { width: 32px; height: 32px; font-size: 1rem; }

/* ============================================================
   BOTONES CTA
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
  letter-spacing: .01em;
  text-align: center;
}
.btn--primary {
  background-color: var(--color-wine);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(139, 33, 49, 0.30);
}
.btn--primary:hover {
  background-color: var(--color-wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(139, 33, 49, 0.38);
}
.btn--lg { padding: 18px 36px; font-size: 1.08rem; width: 100%; max-width: 420px; }
.btn--block { display: block; width: 100%; max-width: none; }

/* ============================================================
   PLACEHOLDERS DE IMAGEN / ÍCONO
   ============================================================ */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-placeholder-bg);
  border: 2px dashed var(--color-placeholder-border);
  color: var(--color-placeholder-text);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 16px;
}
.placeholder--image { width: 100%; }
.placeholder--dark {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 237, 224, 0.35);
  color: rgba(245, 237, 224, 0.7);
}
.placeholder--avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  font-size: 0.6rem;
  margin: 0 auto 16px;
  flex: 0 0 auto;
}
.placeholder--seal {
  width: 130px; height: 130px;
  border-radius: 50%;
  flex: 0 0 auto;
  font-size: 0.7rem;
}

/* ============================================================
   BARRA SUPERIOR
   ============================================================ */
.topbar {
  background: var(--color-navy);
  color: var(--color-cream);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 16px;
}

/* ============================================================
   1. HERO — headline SIEMPRE primero, luego mockup, checks, CTA
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  padding: 48px 0 56px;
  text-align: center;
}
.hero__headline {
  font-size: clamp(1.7rem, 5.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1em;
}
/* Carrusel infinito de la hero: cinta horizontal (marquee) */
.hero__carousel {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 30px;
}
.carousel {
  position: relative;
  overflow: hidden;
  /* Difumina los bordes izq/der para reforzar el efecto "sin fin" */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.carousel__track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 8px 0;                 /* aire para la sombra de las tarjetas */
  list-style: none;
  will-change: transform;
}
/* La animación solo arranca cuando el JS ya duplicó los slides (is-ready),
   así el loop nunca muestra un corte. */
.carousel__track.is-ready {
  animation: carousel-scroll 32s linear infinite;
}
.carousel:hover .carousel__track { animation-play-state: paused; }

.carousel__slide {
  flex: 0 0 auto;
  width: clamp(200px, 62vw, 230px);
  margin-right: 16px;             /* margin (no gap) => el clon calza exacto en el -50% */
}
.carousel__slide img {
  display: block;
  width: 100%;
  height: auto;                   /* aspect-ratio calcula la altura (si no, gana el height="1536" del HTML) */
  aspect-ratio: 230 / 330;        /* ~230x330; reserva la altura => cero CLS */
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid rgba(26, 58, 107, 0.08);
  box-shadow: 0 14px 32px rgba(26, 58, 107, 0.18);
}

/* Desplaza exactamente el ancho de la mitad original; al llegar, el clon
   está en la misma posición que el original => reinicio invisible. */
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Accesibilidad: sin movimiento automático, se explora con scroll manual */
@media (prefers-reduced-motion: reduce) {
  .carousel__track.is-ready { animation: none; }
  .carousel { overflow-x: auto; }
}
.pain__image {
  display: block;
  width: calc(100% - 24px);   /* casi todo el ancho de pantalla (12px de aire a cada lado) */
  max-width: 680px;           /* tope en pantallas grandes */
  margin: 26px auto 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.40);
}
.hero__checks {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto 30px;
  text-align: left;
}
.hero__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--color-navy);
}

/* ============================================================
   2. DOLOR — bloque navy con cajas rojas
   ============================================================ -*/
.pain { text-align: center; }
.pain__title {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
}
.pain__sub {
  font-size: 1.05rem;
  margin-bottom: 2em;
  color: rgba(245, 237, 224, 0.75) !important;
}
.pain__lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-cream) !important;
  margin: 1.8em 0 1em;
}
.pain__boxes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.pain__boxes li {
  background: var(--color-wine);
  color: var(--color-white) !important;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   3. AGITACIÓN — narrativa
   ============================================================ */
.story { padding: 56px 0; }
.story .container { max-width: 620px; }
.story p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1.3em;
}
.story__strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem !important;
  color: var(--color-navy);
}

/* ============================================================
   4. PREGUNTA PUENTE
   ============================================================ */
.bridge { padding: 24px 0 64px; text-align: center; }
.bridge__script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--color-wine);
  margin-bottom: 0.8em;
}
.bridge__box {
  background: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-left: 5px solid var(--color-wine);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}
.bridge__box p { font-size: 1.12rem; color: var(--color-navy); }
.bridge__question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   5. TRANSFORMACIÓN — checklist
   ============================================================ */
.transform__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 32px auto 36px;
}
.transform__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 600;
  color: var(--color-navy);
  box-shadow: var(--shadow);
}

/* ============================================================
   6. ENTREGABLES — un bloque por guía
   ============================================================ */
.deliverables__title { margin-bottom: 1.4em; }
.book {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-cream-dark);
}
.book:last-child { border-bottom: none; }
.book__mockup {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 36px rgba(26, 58, 107, 0.18);
}
.book__title { font-size: 1.45rem; margin-bottom: 0.2em; }
.book__tag {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
}
.book__count {
  display: inline-block;
  background: var(--color-wine);
  color: var(--color-white) !important;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 12px;
}
.book__desc { max-width: 480px; margin: 0 auto; }

/* ============================================================
   7. BONOS
   ============================================================ */
.bonuses .book { border-bottom: 1px solid var(--color-cream-dark); }
.bonuses .book:last-of-type { border-bottom: none; }
.bonuses .book__title { color: var(--color-navy); }
.bonuses .book__desc { color: var(--color-text-light); }
.bonus-ribbon {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-cream);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 5px 16px;
  border-radius: 40px;
  margin-bottom: 12px;
}
.bonuses .center { margin-top: 24px; }

/* ============================================================
   8. ES PARA TI SI...
   ============================================================ */
.foryou__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 32px auto 0;
}
.foryou__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 237, 224, 0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 500;
}

/* ============================================================
   9. TESTIMONIOS
   ============================================================ */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 32px auto 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.testimonial-carousel__track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 10px 0 24px;
  list-style: none;
  will-change: transform;
}
.testimonial-carousel__track.is-ready {
  animation: testimonial-scroll 58s linear infinite;
}
.testimonial-carousel:hover .testimonial-carousel__track { animation-play-state: paused; }
.testimonial-carousel__slide {
  flex: 0 0 auto;
  width: clamp(290px, 84vw, 350px);
  margin-right: 18px;
}
.testimonial-carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 14px 32px rgba(26, 58, 107, 0.16);
}
@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-carousel__track.is-ready { animation: none; }
  .testimonial-carousel { overflow-x: auto; }
}

/* ============================================================
   10. SOBRE LA CREADORA
   ============================================================ */
.creator {
  background: var(--color-navy-dark);
  overflow: hidden;
}
.creator__inner {
  display: grid;
  gap: 34px;
  align-items: center;
}
.creator__portrait-wrap {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto;
}
.creator__portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(245, 237, 224, 0.18);
  border-radius: 22px;
}
.creator__portrait {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}
.creator__content { text-align: center; }
.creator__eyebrow {
  margin: 0 0 12px;
  color: #E8909D !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.creator__title { margin-bottom: 0.7em; }
.creator__content p:not(.creator__eyebrow) {
  color: rgba(245, 237, 224, 0.84);
  font-size: 1rem;
}
.creator__content p:last-child { margin-bottom: 0; }

/* ============================================================
   11. OFERTA
   ============================================================ */
.offer__title { margin-bottom: 1em; }

/* --- Card de valor total (componentes con su valor) --- */
.value-stack {
  max-width: 560px;
  margin: 0 auto 30px;
  background: var(--color-navy-dark);
  border: 1px solid rgba(245, 237, 224, 0.14);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.value-stack__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-cream) !important;
  margin: 0 0 12px;
}
.value-stack__list { list-style: none; margin: 0; }
.value-stack__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(245, 237, 224, 0.10);
}
.value-stack__list li:last-child { border-bottom: none; }
.value-stack__item { color: rgba(245, 237, 224, 0.9) !important; font-weight: 500; font-size: 0.95rem; }
.value-stack__price { color: rgba(245, 237, 224, 0.55) !important; white-space: nowrap; font-weight: 600; }
.value-stack__price--struck { text-decoration: line-through; }
/* Total destacado tipo "esto debería costar" */
.value-stack__grand {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 2px solid rgba(245, 237, 224, 0.22);
  text-align: center;
}
.value-stack__grand-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-cream) !important;
  margin-bottom: 4px;
}
.value-stack__grand-price {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: #E8909D !important;
  text-decoration: line-through;
}

/* --- Oferta única: card blanca limpia (el mock de fondo blanco se integra) --- */
.offer-box {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
  padding: 22px 26px 30px;
  text-align: center;
}
/* Mockup pequeño (thumbnail) arriba de la oferta */
.offer-box__mock {
  display: block;
  width: 100%;
  max-width: 170px;
  margin: 0 auto 4px;
}
.offer-box__brand {
  font-family: var(--font-display);
  color: var(--color-navy) !important;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
}
.offer-box__brand-em {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-wine);
}
.offer-box__divider {
  border: none;
  border-top: 1px solid var(--color-cream-dark);
  margin: 16px 0;
}
/* Lista de lo que recibe */
.offer-box__features {
  list-style: none;
  margin: 0;
  text-align: left;
}
.offer-box__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.95rem;
  color: var(--color-text) !important;
  border-bottom: 1px dashed var(--color-cream-dark);
}
.offer-box__features li:last-child { border-bottom: none; }
.pcheck { flex: 0 0 auto; color: var(--color-wine); font-weight: 800; }
.plan__strike { margin-left: auto; text-decoration: line-through; color: var(--color-text-light); font-weight: 600; white-space: nowrap; }
.offer-box__from {
  color: var(--color-text-light) !important;
  font-size: 1.05rem;
  margin: 0 0 2px;
}
.offer-box__from s { color: var(--color-wine); text-decoration: line-through; font-weight: 600; }
.offer-box__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 14vw, 4rem);
  color: var(--color-wine) !important;
  margin: 0;
  line-height: 1;
}
.offer-box__currency { font-size: 1.05rem; font-weight: 600; color: var(--color-text-light); }
.offer-box__price-note { font-size: 0.85rem; color: var(--color-text-light) !important; margin: 8px 0 22px; }
.offer-box__save {
  color: var(--color-wine) !important;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 14px 0 0;
}

.offer__reassurance {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.7) !important;
  margin: 30px auto 0;
}

/* ============================================================
   12. GARANTÍA
   ============================================================ */
.guarantee__inner {
  display: flex;
  gap: 32px;
  align-items: center;
}
.guarantee__seal {
  flex: 0 0 auto;
  width: 160px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(26, 58, 107, 0.25));
}
.guarantee__content p { font-size: 1.08rem; }

/* ============================================================
   13. FAQ (acordeón)
   ============================================================ */
.faq__list { margin-top: 32px; }
.faq-item {
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius);
  background: var(--color-white);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-navy);
}
.faq-item__question:hover { color: var(--color-wine); }
.faq-item__icon { flex: 0 0 auto; position: relative; width: 18px; height: 18px; }
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--color-wine);
  transition: transform .25s ease;
}
.faq-item__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-item__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }

.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item__answer p { padding: 0 22px 20px; margin: 0; color: var(--color-text-light); }

/* ============================================================
   14. CTA FINAL
   ============================================================ */
.final-cta { padding: 72px 0; }
.final-cta__text {
  max-width: 520px;
  margin: 0 auto 2em;
  font-size: 1.1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-navy-dark);
  color: rgba(245, 237, 224, 0.75);
  padding: 28px 0;
}
.footer__inner { text-align: center; }
.footer__copy {
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: rgba(245, 237, 224, 0.72);
}
.footer__disclaimer {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(245, 237, 224, 0.46);
}

/* ============================================================
   RESPONSIVE — desktop: misma columna única, más aire
   ============================================================ */
@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .hero { padding: 64px 0 72px; }
  .creator__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 46px;
  }
  .creator__content { text-align: left; }
  .book {
    flex-direction: row;
    text-align: left;
    gap: 36px;
  }
  .book__mockup { flex: 0 0 300px; }
  .book__info { flex: 1; }
  .book__desc { margin: 0; }
  /* Alterna lado del mockup para ritmo visual */
  .book:nth-child(odd) { flex-direction: row-reverse; }
  .bonuses .book { flex-direction: row; }
  .bonuses .book:nth-of-type(odd) { flex-direction: row-reverse; }
}
@media (max-width: 620px) {
  .guarantee__inner { flex-direction: column; text-align: center; }
  .offer-box { padding: 24px 20px 28px; }
}
