/* Reto 7 Días — white theme landing */

:root {
  --reto-red: #e31837;
  --reto-red-dark: #c4122e;
  --reto-text: #111111;
  --reto-muted: #4b4b4b;
  --reto-bg: #ffffff;
  --reto-bg-soft: #fff5f6;
  --reto-border: #f1d4d8;
  --reto-border-soft: #f7e6e9;
  --reto-max: 1180px;
  --reto-radius: 14px;
  --reto-header-h: 68px;
  --reto-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --reto-hand: 'Caveat', cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.reto-body {
  margin: 0;
  padding: 0;
  font-family: var(--reto-font);
  color: var(--reto-text);
  background: var(--reto-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.reto-body.reto-menu-open {
  overflow: hidden;
}

.reto-container {
  width: min(100% - 2.5rem, var(--reto-max));
  margin-inline: auto;
}

@media (max-width: 767.98px) {
  .reto-container {
    width: min(100% - 2.5rem, var(--reto-max));
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.reto-hand {
  font-family: var(--reto-hand);
  font-weight: 600;
  line-height: 1.15;
  color: var(--reto-text);
}

.reto-hand--accent {
  color: var(--reto-red);
}

.reto-underline {
  position: relative;
  display: inline-block;
}

.reto-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 0.18em;
  background: var(--reto-red);
  border-radius: 999px;
  opacity: 0.85;
  transform: rotate(-1.5deg);
}

.reto-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: var(--reto-bg-soft);
  color: var(--reto-red);
  border: 1px solid var(--reto-border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reto-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.reto-btn:active {
  transform: translateY(1px);
}

.reto-btn--primary {
  background: var(--reto-red);
  color: #fff;
  padding: 0.95rem 1.35rem;
  font-size: 0.92rem;
}

.reto-btn--primary:hover {
  background: var(--reto-red-dark);
}

.reto-btn--header {
  padding: 0.72rem 1.1rem;
  font-size: 0.8rem;
  border-radius: 999px;
}

.reto-btn--block {
  width: 100%;
}

.reto-icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--reto-bg-soft);
  color: var(--reto-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reto-icon-circle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.reto-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reto-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.reto-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reto-header.is-scrolled {
  border-bottom-color: var(--reto-border-soft);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.reto-header__inner {
  min-height: var(--reto-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reto-logo img {
  width: 118px;
  height: auto;
}

.reto-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.reto-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--reto-muted);
  transition: color 0.15s ease;
}

.reto-nav a:hover {
  color: var(--reto-text);
}

.reto-header__cta {
  display: none;
}

.reto-nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.reto-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--reto-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.reto-nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.reto-nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.reto-nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.reto-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.reto-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.reto-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 320px);
  height: 100%;
  background: #fff;
  z-index: 45;
  padding: 5.5rem 1.5rem 2rem;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.08);
}

.reto-nav-drawer.is-open {
  transform: none;
}

.reto-nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.reto-nav-drawer a {
  font-size: 1.05rem;
  font-weight: 600;
}

.reto-nav-drawer .reto-btn {
  margin-top: 1.25rem;
}

@media (min-width: 900px) {
  .reto-nav,
  .reto-header__cta {
    display: flex;
  }

  .reto-nav-toggle {
    display: none;
  }
}

/* Hero */
.reto-hero {
  position: relative;
  padding: 1.35rem 0 2.75rem;
  overflow: visible;
  background: #fff;
}

/* Full-bleed photo used on all viewports */
.reto-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.reto-hero__bg picture,
.reto-hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
}

.reto-hero__bg img {
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.reto-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
}

.reto-hero__intro {
  background: #fff;
  margin: 0 -1.25rem;
  padding: 0 1.25rem 0.35rem;
}

.reto-hero__intro h1 {
  margin: 0.9rem 0 0;
  font-size: clamp(2.15rem, 7.2vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.reto-hero__intro h1 .accent {
  color: var(--reto-red);
}

.reto-hero__text {
  margin: 1rem 0 0;
  color: var(--reto-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 34rem;
}

/* On mobile the photo is revealed as a dedicated band */
.reto-hero__media {
  position: relative;
  margin: 0 -1.25rem;
  width: calc(100% + 2.5rem);
  min-height: min(72vw, 420px);
  height: min(72vw, 420px);
  overflow: visible;
}

.reto-hero__form-wrap {
  background: #fff;
  margin: 0 -1.25rem;
  padding: 1rem 1.25rem 0;
}

.reto-form {
  margin-top: 0;
  display: grid;
  gap: 0.7rem;
}

.reto-form__row {
  display: grid;
  gap: 0.65rem;
}

.reto-input {
  width: 100%;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  border-radius: 12px;
  padding: 0.95rem 1.05rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--reto-text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.reto-input:focus {
  border-color: var(--reto-red);
  box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.12);
}

.reto-form__error {
  margin: 0;
  color: var(--reto-red);
  font-size: 0.86rem;
}

.reto-perks {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.reto-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--reto-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.reto-perks svg {
  width: 1rem;
  height: 1rem;
  color: var(--reto-text);
  flex-shrink: 0;
}

.reto-scribble {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.reto-scribble--dani {
  left: 5%;
  top: 10%;
  max-width: 10.5rem;
  color: #111;
  overflow: visible;
}

.reto-scribble--dani .reto-hand {
  font-size: 1.45rem;
  display: block;
  color: #111;
}

.reto-scribble--dani small {
  display: block;
  margin-top: 0.1rem;
  font-family: var(--reto-font);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
  font-weight: 600;
}

.reto-scribble--life {
  right: 5%;
  top: 16%;
  text-align: right;
  max-width: 7.5rem;
  color: #111;
  transform: rotate(6deg);
  transform-origin: center right;
}

.reto-scribble--life .reto-hand {
  font-size: 1.2rem;
  line-height: 0.95;
  color: #111;
}

.reto-scribble--life .reto-underline::after {
  background: var(--reto-red);
}

.reto-arrow {
  display: block;
  width: 78px;
  height: auto;
  margin-top: 0.35rem;
  margin-left: 0.05rem;
}

/* Mobile: clip the full-bleed bg so it only shows in the media band */
@media (max-width: 899.98px) {
  .reto-hero__bg {
    top: auto;
    bottom: auto;
    /* positioned via JS-less approach: sit behind media using sticky layout trick */
    position: absolute;
    left: 0;
    right: 0;
    /* Approximate: push into media slot — use clip on hero with media as window */
    clip-path: inset(0);
    height: 0;
    visibility: hidden;
  }

  .reto-hero__media {
    background-image: url('/storage/background-dani-andujar-mobile.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media (min-width: 900px) {
  .reto-hero {
    padding: 0;
    min-height: min(86vh, 760px);
    display: flex;
    align-items: center;
  }

  .reto-hero__bg {
    display: block;
    visibility: visible;
    height: auto;
    clip-path: none;
  }

  .reto-hero__bg img {
    object-position: center center;
  }

  .reto-hero__inner {
    width: min(100% - 2.5rem, var(--reto-max));
    margin-inline: auto;
    padding: 3.5rem 0;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
      'intro media'
      'form media';
    align-items: center;
    column-gap: 2rem;
    row-gap: 1.25rem;
  }

  .reto-hero__intro,
  .reto-hero__form-wrap {
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .reto-hero__intro {
    grid-area: intro;
    max-width: 34rem;
    padding: 1.35rem 1.35rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
  }

  .reto-hero__form-wrap {
    grid-area: form;
    max-width: 34rem;
    padding: 1.15rem 1.35rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
  }

  .reto-hero__media {
    grid-area: media;
    margin: 0;
    width: 100%;
    min-height: 520px;
    height: auto;
    background: none;
  }

  .reto-form__row {
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }

  .reto-form__row .reto-btn {
    white-space: nowrap;
    padding-inline: 1.4rem;
  }

  .reto-scribble--dani {
    left: 3%;
    top: 14%;
    max-width: 11rem;
    color: #111;
  }

  .reto-scribble--dani .reto-hand,
  .reto-scribble--dani small {
    color: #111;
  }

  .reto-scribble--dani .reto-hand {
    font-size: 1.7rem;
  }

  .reto-scribble--dani .reto-arrow {
    width: 92px;
  }

  .reto-scribble--life {
    right: 6%;
    top: 18%;
    max-width: 10rem;
    color: #111;
    transform: none;
  }

  .reto-scribble--life .reto-hand {
    font-size: 1.85rem;
    line-height: 1.15;
    color: #111;
  }

  .reto-scribble--life .reto-underline::after {
    background: var(--reto-red);
  }

  .reto-scribble--life {
    color: #111;
  }
}

/* Benefits */
.reto-benefits {
  padding: 0.5rem 0 3.5rem;
}

.reto-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.reto-benefit {
  background: #fff;
  border: 1px solid var(--reto-border-soft);
  border-radius: var(--reto-radius);
  padding: 1.05rem 0.95rem;
}

.reto-benefit h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.reto-benefit p {
  margin: 0;
  color: var(--reto-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .reto-benefits {
    padding: 0.5rem 0 4.75rem;
  }

  .reto-benefits__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }

  .reto-benefit {
    padding: 1.35rem 1.2rem;
  }
}

/* Emotional banner */
.reto-banner {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.reto-banner__media {
  position: absolute;
  inset: 0;
}

.reto-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reto-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.reto-banner__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  max-width: 40rem;
}

.reto-banner h2 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.reto-banner h2 .accent {
  color: #ff5a6e;
}

.reto-banner p {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}

.reto-banner .reto-hand {
  margin-top: 1.35rem;
  color: #fff;
  font-size: 1.85rem;
}

.reto-banner .reto-hand .reto-underline::after {
  background: #ff5a6e;
}

@media (min-width: 900px) {
  .reto-banner {
    min-height: 520px;
    align-items: center;
  }

  .reto-banner__content {
    padding: 5rem 0;
  }
}

/* Seven days */
.reto-days {
  padding: 3.5rem 0;
  position: relative;
}

.reto-section-head {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.reto-section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4.5vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.reto-section-head p {
  margin: 0.85rem 0 0;
  color: var(--reto-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.reto-days__grid {
  display: grid;
  gap: 0.85rem;
}

.reto-day {
  background: #fff;
  border: 1px solid var(--reto-border);
  border-radius: var(--reto-radius);
  padding: 1.15rem 1.1rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.reto-day__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reto-day__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--reto-red);
}

.reto-day h3 {
  margin: 0.7rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 750;
}

.reto-day p {
  margin: 0;
  color: var(--reto-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.reto-days__scribble {
  display: none;
}

@media (min-width: 760px) {
  .reto-days__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .reto-days {
    padding: 5rem 0;
  }

  .reto-days__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .reto-day:hover {
    border-color: var(--reto-red);
    transform: translateY(-2px);
  }

  .reto-days__scribble {
    display: block;
    position: absolute;
    right: max(1.25rem, calc((100vw - var(--reto-max)) / 2 - 0.5rem));
    bottom: 4.5rem;
    font-size: 1.85rem;
    transform: rotate(-6deg);
  }
}

/* Experts */
.reto-experts {
  background: var(--reto-bg-soft);
  padding: 3.5rem 0;
}

.reto-experts__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.reto-expert {
  background: #fff;
  border: 1px solid var(--reto-border-soft);
  border-radius: var(--reto-radius);
  padding: 1.35rem 1.15rem 1.4rem;
  text-align: center;
}

.reto-expert__photo {
  width: 118px;
  height: 118px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--reto-border);
  background: #f4f4f4;
}

.reto-expert__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reto-expert__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--reto-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, #f7e6e9 100%);
}

.reto-expert h3 {
  margin: 0.95rem 0 0.2rem;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.reto-expert__role {
  margin: 0;
  color: var(--reto-red);
  font-size: 0.84rem;
  font-weight: 600;
}

.reto-expert__bio {
  margin: 0.7rem 0 0;
  color: var(--reto-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (min-width: 900px) {
  .reto-experts {
    padding: 5rem 0;
  }

  .reto-experts__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }

  .reto-expert__photo {
    width: 132px;
    height: 132px;
  }
}

/* Dani gallery */
.reto-gallery {
  padding: 2.5rem 0 3.25rem;
  background: #fff;
}

.reto-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.reto-gallery__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f3f3;
  aspect-ratio: 4 / 5;
}

.reto-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (min-width: 900px) {
  .reto-gallery {
    padding: 3.5rem 0 4.5rem;
  }

  .reto-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .reto-gallery__item {
    border-radius: 16px;
  }
}

/* Community CTA */
.reto-community {
  position: relative;
  min-height: 480px;
  color: #fff;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.reto-community__media {
  position: absolute;
  inset: 0;
}

.reto-community__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reto-community__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.reto-community__content {
  position: relative;
  z-index: 1;
  padding: 3.75rem 0;
  max-width: 38rem;
}

.reto-community h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.reto-community p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
}

.reto-community__chips {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.reto-community__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
  font-weight: 500;
}

.reto-community__form {
  margin-top: 1.45rem;
  max-width: 28rem;
}

.reto-community__form .reto-input {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.reto-community__form .reto-form__error {
  color: #ffb4bc;
}

.reto-community .reto-hand {
  margin-top: 1.25rem;
  color: #fff;
  font-size: 1.8rem;
}

@media (min-width: 900px) {
  .reto-community {
    min-height: 560px;
  }

  .reto-community__content {
    padding: 5rem 0;
  }
}

/* Footer */
.reto-footer {
  background: #fff;
  border-top: 1px solid var(--reto-border-soft);
  padding: 2.5rem 0 1.75rem;
}

.reto-footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reto-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.reto-footer__links a {
  color: var(--reto-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.reto-footer__links a:hover {
  color: var(--reto-text);
}

.reto-footer__social {
  display: flex;
  gap: 0.85rem;
}

.reto-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--reto-border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--reto-text);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.reto-footer__social a:hover {
  border-color: var(--reto-red);
  color: var(--reto-red);
}

.reto-footer__social svg {
  width: 1.05rem;
  height: 1.05rem;
}

.reto-footer__copy {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--reto-border-soft);
  color: #8a8a8a;
  font-size: 0.82rem;
}

@media (min-width: 800px) {
  .reto-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.reto-faqs {
  padding: 3rem 0 4rem;
}

.reto-faqs__list {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .reto-faqs {
    padding: 4rem 0 5.5rem;
  }

  .reto-faqs__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
/* Thanks page */
.reto-hero--thanks .reto-hero__intro {
  padding-top: 0.35rem;
}

.reto-thanks__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.reto-thanks__megaphone {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--reto-red);
  display: inline-flex;
  flex-shrink: 0;
}

.reto-thanks__megaphone svg {
  width: 100%;
  height: 100%;
}

.reto-thanks__congrats {
  color: var(--reto-red);
  font-size: 1.05rem;
  font-weight: 800;
}

.reto-hero--thanks .reto-hero__intro h1 {
  margin-top: 0.75rem;
}

.reto-thanks__note {
  margin: 0.85rem 0 0;
  color: var(--reto-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 34rem;
}

.reto-hero--thanks .reto-btn--whatsapp {
  margin-top: 1.25rem;
}

.reto-btn--whatsapp {
  margin-top: 0;
  background: #25d366;
  color: #fff;
  width: 100%;
  padding: 1rem 1.15rem;
  gap: 0.7rem;
  text-transform: uppercase;
  text-decoration: none;
}

.reto-btn--whatsapp:hover {
  background: #1ebe5a;
  color: #fff;
}

.reto-btn__icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.reto-btn__arrow {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-left: auto;
}

.reto-btn--whatsapp span {
  flex: 1;
  text-align: center;
}

@media (min-width: 900px) {
  .reto-hero--thanks .reto-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas: 'intro media';
    align-items: center;
  }

  .reto-hero--thanks .reto-hero__intro {
    grid-area: intro;
    max-width: 34rem;
  }

  .reto-hero--thanks .reto-hero__media {
    grid-area: media;
  }

  .reto-hero--thanks .reto-scribble--life .reto-hand {
    font-size: 1.9rem;
  }
}

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

  .reto-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
