/* =====================================================
   Mar B Fotografía — Landing Día de la Madre 2026
   Single stylesheet, mobile-first.
   ===================================================== */

/* -----------------------------------------------------
   1. Tokens
   ----------------------------------------------------- */
:root {
  /* Surfaces */
  --cream: #f7f1e8;
  --cream-deep: #ede4d3;
  --black: #1a1612;

  /* Ink */
  --ink: #2a2520;
  --ink-soft: #4a4138;
  --ink-mute: #7a6f64;
  --ink-on-dark: #f7f1e8;
  --ink-on-dark-mute: rgba(247, 241, 232, 0.72);

  /* Accents */
  --sage: #6b7861;
  --sage-soft: #a8b099;
  --terra: #b8654a;
  --terra-deep: #9a4f37;
  --gold: #c8a878;

  /* Lines */
  --line: rgba(42, 37, 32, 0.12);
  --line-on-dark: rgba(247, 241, 232, 0.18);

  /* Overlays */
  --overlay-hero: rgba(26, 22, 18, 0.42);
  --overlay-cierre: rgba(26, 22, 18, 0.7);

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

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 8px 24px rgba(42, 37, 32, 0.08);
  --shadow-card-hover: 0 16px 40px rgba(42, 37, 32, 0.14);
  --shadow-float: 0 6px 20px rgba(42, 37, 32, 0.22);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-normal: 320ms;
  --dur-slow: 600ms;
  --dur-very-slow: 1200ms;
}

/* -----------------------------------------------------
   2. Reset & base
   ----------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}

p {
  margin: 0;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--terra);
  color: var(--ink-on-dark);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------------------------------------------------
   3. Layout primitives
   ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 48px;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--ink-on-dark);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-weight: 500;
  transition: top var(--dur-fast) var(--ease-out);
}

.skip-link:focus {
  top: 16px;
}

/* -----------------------------------------------------
   4. Reusable text styles
   ----------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin: 0 0 var(--space-4) 0;
}

.eyebrow--light {
  color: var(--ink-on-dark-mute);
}

.section-header {
  margin-bottom: var(--space-12);
  max-width: 640px;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* -----------------------------------------------------
   5. Buttons
   ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--terra);
  color: var(--ink-on-dark);
}

.btn--primary:hover {
  background: var(--terra-deep);
  box-shadow: var(--shadow-card);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: #b89868;
  box-shadow: var(--shadow-card);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--ink-on-dark);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink-on-dark);
  border-color: rgba(247, 241, 232, 0.6);
}

.btn--ghost-dark:hover {
  background: var(--ink-on-dark);
  color: var(--ink);
  border-color: var(--ink-on-dark);
}

.btn--ghost-light-on-dark {
  background: transparent;
  color: var(--ink-on-dark);
  border-color: rgba(247, 241, 232, 0.4);
}

.btn--ghost-light-on-dark:hover {
  background: rgba(247, 241, 232, 0.12);
  border-color: var(--ink-on-dark);
}

.btn--terra {
  background: var(--terra);
  color: var(--ink-on-dark);
}

.btn--terra:hover {
  background: var(--terra-deep);
  box-shadow: var(--shadow-card);
}

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

/* -----------------------------------------------------
   6. Reveal-on-scroll utility
   ----------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
}

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

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.reveal-stagger.is-visible>*:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-stagger.is-visible>*:nth-child(2) {
  transition-delay: 120ms;
}

.reveal-stagger.is-visible>*:nth-child(3) {
  transition-delay: 240ms;
}

.reveal-stagger.is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------------
   7. Hero
   ----------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  color: var(--ink-on-dark);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  animation: hero-fade 1400ms var(--ease-out) both;
}

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 22, 18, 0.25) 0%, rgba(26, 22, 18, 0.55) 70%, rgba(26, 22, 18, 0.7) 100%);
}

.hero__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: var(--space-16) var(--space-16);
  max-width: 720px;
}

.hero__title {
  font-size: 2.75rem;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink-on-dark);
  margin-bottom: var(--space-8);
  animation: hero-text 900ms var(--ease-out) 200ms both;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-bottom: var(--space-8);
  font-size: 0.875rem;
  color: var(--ink-on-dark-mute);
  animation: hero-text 900ms var(--ease-out) 350ms both;
}

.hero__meta li {
  display: inline-flex;
  align-items: center;
}

.hero__meta li:not(:last-child)::after {
  content: '·';
  margin-left: 16px;
  opacity: 0.6;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: hero-text 900ms var(--ease-out) 500ms both;
}

.hero__eyebrow {
  animation: hero-text 900ms var(--ease-out) 100ms both;
}

@keyframes hero-text {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  overflow: hidden;
  z-index: 1;
}

.hero__scroll-hint::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--ink-on-dark) 50%, transparent);
  animation: scroll-hint 1800ms ease-in-out infinite;
}

@keyframes scroll-hint {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 5rem;
  }

  .hero__content {
    padding-block: 0 var(--space-24);
  }
}

@media (min-width: 1280px) {
  .hero__title {
    font-size: 5.5rem;
  }
}

/* -----------------------------------------------------
   8. Intro
   ----------------------------------------------------- */
.intro {
  background: var(--cream);
  padding-block: var(--space-24);
}

.intro__inner {
  text-align: center;
}

.intro__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .intro {
    padding-block: var(--space-32);
  }

  .intro__text {
    font-size: 1.625rem;
  }
}

/* -----------------------------------------------------
   9. Tres formas
   ----------------------------------------------------- */
.formas {
  background: var(--cream);
  padding-block: var(--space-16) var(--space-24);
  border-top: 1px solid var(--line);
}

.formas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.forma-card {
  display: flex;
  flex-direction: column;
}

.forma-card__media {
  overflow: hidden;
  margin-bottom: var(--space-6);
  background: var(--cream-deep);
}

.forma-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.forma-card:hover .forma-card__media img,
.forma-card:focus-within .forma-card__media img {
  transform: scale(1.03);
}

.forma-card__title {
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: var(--space-3);
  transition: color var(--dur-fast) var(--ease-out);
}

.forma-card:hover .forma-card__title {
  color: var(--terra);
}

.forma-card__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (min-width: 768px) {
  .formas {
    padding-block: var(--space-24) var(--space-32);
  }

  .formas__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }

  .forma-card__title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .formas__grid {
    gap: var(--space-12);
  }
}

/* -----------------------------------------------------
   10. El método
   ----------------------------------------------------- */
.metodo {
  background: var(--cream-deep);
  padding-block: var(--space-24);
}

.metodo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.metodo__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.metodo__copy p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}

.metodo__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem !important;
  line-height: 1.5 !important;
  color: var(--ink) !important;
  margin-top: var(--space-8) !important;
  padding-left: var(--space-6);
  border-left: 2px solid var(--gold);
}

@media (min-width: 768px) {
  .metodo {
    padding-block: var(--space-32);
  }

  .metodo__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  .metodo__pull {
    font-size: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  .metodo__grid {
    gap: var(--space-24);
  }
}

/* -----------------------------------------------------
   11. Inversión
   ----------------------------------------------------- */
.inversion {
  background: var(--cream);
  padding-block: var(--space-24);
  border-top: 1px solid var(--line);
}

.planes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 920px;
  margin-inline: auto;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}

.plan__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.plan__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: 4px;
}

.plan__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-6);
}

.plan__features {
  margin-bottom: var(--space-8);
  flex: 1;
}

.plan__features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.plan__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-mute);
}

.plan__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.plan--destacado {
  background: var(--black);
  border: none;
  border-top: 3px solid var(--gold);
  color: var(--ink-on-dark);
}

.plan--destacado .plan__price,
.plan--destacado .plan__features li {
  color: var(--ink-on-dark);
}

.plan--destacado .plan__price span,
.plan--destacado .plan__name {
  color: var(--ink-on-dark-mute);
}

.plan--destacado .plan__features li::before {
  color: var(--gold);
}

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.inversion__note {
  margin-top: var(--space-12);
  text-align: center;
  font-style: italic;
  color: var(--ink-mute);
  max-width: 540px;
  margin-inline: auto;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .inversion {
    padding-block: var(--space-32);
  }

  .planes {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: stretch;
  }

  .plan {
    padding: var(--space-12) var(--space-8);
  }

  .plan__price {
    font-size: 2.75rem;
  }
}

/* -----------------------------------------------------
   12. Testimonios
   ----------------------------------------------------- */
.testimonios {
  background: var(--cream-deep);
  padding-block: var(--space-24);
}

.testimonios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.testimonio {
  margin: 0;
  padding: 0;
  text-align: center;
}

.testimonio p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: var(--space-6);
  position: relative;
}

.testimonio p::before {
  content: '“';
  display: block;
  font-size: 2.5rem;
  line-height: 0.8;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.testimonio cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}

@media (min-width: 768px) {
  .testimonios__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

/* -----------------------------------------------------
   13. FAQ
   ----------------------------------------------------- */
.faq {
  background: var(--cream);
  padding-block: var(--space-24);
  border-top: 1px solid var(--line);
}

.faq__inner {
  max-width: 760px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item details {
  padding-block: var(--space-6);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease-out);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--terra);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.faq-item__icon {
  flex: none;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink-mute);
  transition: transform var(--dur-normal) var(--ease-out);
}

.faq-item details[open] .faq-item__icon {
  transform: rotate(45deg);
  color: var(--terra);
}

.faq-item__answer {
  padding-top: var(--space-3);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.faq-item__answer p {
  margin: 0;
}

@media (min-width: 768px) {
  .faq-item summary {
    font-size: 1.25rem;
  }
}

/* -----------------------------------------------------
   14. Cierre
   ----------------------------------------------------- */
.cierre {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink-on-dark);
  isolation: isolate;
}

.cierre__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.cierre__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 22, 18, 0.6), rgba(26, 22, 18, 0.78));
}

.cierre__content {
  text-align: center;
  padding-block: var(--space-24);
  max-width: 640px;
  margin-inline: auto;
}

.cierre__title {
  font-size: 2.25rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-on-dark);
  margin-bottom: var(--space-6);
}

.cierre__body {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-on-dark-mute);
  margin-bottom: var(--space-8);
  max-width: 520px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .cierre {
    min-height: 600px;
  }

  .cierre__title {
    font-size: 3.5rem;
  }
}

/* -----------------------------------------------------
   15. Footer
   ----------------------------------------------------- */
.footer {
  background: var(--cream-deep);
  padding-block: var(--space-12);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--ink);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--ink-mute);
}

.footer__nav a {
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__nav a:hover {
  color: var(--terra);
}

.footer__nav span[aria-hidden] {
  color: var(--ink-mute);
  opacity: 0.5;
}

.footer__legal {
  font-size: 0.75rem;
  color: var(--ink-mute);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* -----------------------------------------------------
   16. Floating WhatsApp
   ----------------------------------------------------- */
.float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-float);
  z-index: 50;
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
  transition:
    opacity var(--dur-normal) var(--ease-out),
    transform var(--dur-normal) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out);
}

.float-whatsapp.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-whatsapp:hover {
  background: #1eba59;
}

.float-whatsapp:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .float-whatsapp {
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
  }

  .float-whatsapp svg {
    width: 32px;
    height: 32px;
  }
}

/* -----------------------------------------------------
   17. Página /gracias
   ----------------------------------------------------- */
.page-gracias {
  background: var(--cream);
  min-height: 100vh;
}

.gracias {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: var(--space-16);
}

.gracias__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.gracias__check {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-8);
  background: var(--terra);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-on-dark);
  animation: check-in 600ms var(--ease-out) 200ms both;
}

@keyframes check-in {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gracias__check svg {
  width: 36px;
  height: 36px;
}

.gracias__title {
  font-size: 2.75rem;
  line-height: 1.05;
  margin-bottom: var(--space-3);
}

.gracias__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-8);
}

.gracias__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: var(--space-8);
}

.gracias__body p {
  margin-bottom: var(--space-4);
}

.gracias__body p:last-child {
  margin-bottom: 0;
}

.gracias__note {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.9375rem;
}

.gracias__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .gracias__title {
    font-size: 4rem;
  }

  .gracias__subtitle {
    font-size: 1.5rem;
  }
}

/* -----------------------------------------------------
   18. Página /privacidad
   ----------------------------------------------------- */
.page-privacidad {
  background: var(--cream);
}

.privacidad {
  padding-block: var(--space-16) var(--space-24);
}

.privacidad__inner {
  max-width: 720px;
}

.privacidad h1 {
  font-size: 2.25rem;
  margin-bottom: var(--space-8);
}

.privacidad h2 {
  font-size: 1.375rem;
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}

.privacidad p,
.privacidad li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}

.privacidad ul {
  padding-left: var(--space-6);
}

.privacidad ul li {
  list-style: disc;
  margin-bottom: var(--space-2);
}

.privacidad a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacidad__back {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .privacidad h1 {
    font-size: 3rem;
  }
}

/* -----------------------------------------------------
   19. Utilities
   ----------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: inline;
  }

  .hidden-desktop {
    display: none;
  }
}