/* =========================================================
   DESAFIO 5x5 — Landing Page
   Identidade: Editorial feminino — preto, rosa, serifa Forum
   ========================================================= */

/* ---------- RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sauce Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FFFFFF;
  color: #111111;
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ol, ul { list-style: none; }
em { font-style: italic; }

/* ---------- TOKENS ---------- */
:root {
  --pink: #FF1478;
  --pink-light: #FF4D9D;
  --pink-soft: #FFE5F0;
  --brown: #844526;
  --black: #111111;
  --black-soft: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F7F4F1;
  --gray-line: rgba(255,255,255,0.08);
  --gray-text: rgba(255,255,255,0.6);

  --serif: 'Forum', 'Playfair Display', Georgia, serif;
  --sans: 'Open Sauce Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --shadow-pink: 0 10px 40px -10px rgba(255, 20, 120, 0.45);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- TOP STRIP ---------- */
.top-strip {
  background: var(--pink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 10px 16px;
  position: relative;
  z-index: 10;
}
.top-strip__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.top-strip strong { font-weight: 800; }
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

/* ---------- HERO ---------- */
.hero {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,20,120,0.35) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -300px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,77,157,0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.hero__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: clamp(40px, 5vw, 80px);
}

.hero__content { animation: heroIn 0.9s cubic-bezier(.2,.7,.2,1) both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--pink-light);
  margin-bottom: 28px;
}
.eyebrow__line {
  width: 40px;
  height: 1.5px;
  background: var(--pink);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__title .num {
  color: var(--pink);
  font-style: italic;
  display: inline-block;
  transform: translateY(-0.02em);
}

.hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero__sub em {
  color: var(--pink-light);
  font-style: italic;
  font-family: var(--serif);
}

/* COUNTDOWN */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
  max-width: 460px;
}
.countdown__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-line);
  padding: 16px 6px 12px;
  text-align: center;
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.countdown__item:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
}
.countdown__item::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 2px;
  background: var(--pink);
}
.countdown__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.countdown--large {
  max-width: 540px;
  margin: 36px 0;
  gap: 12px;
}
.countdown--large .countdown__item {
  background: rgba(255,255,255,0.06);
  padding: 22px 6px 16px;
}
.countdown--large .countdown__num {
  font-size: clamp(36px, 4.5vw, 56px);
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--pink-light);
  box-shadow: 0 16px 50px -10px rgba(255, 20, 120, 0.7);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn--xl {
  padding: 22px 40px;
  font-size: 17px;
}
.btn__icon { width: 22px; height: 22px; flex-shrink: 0; }
.btn__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .btn__arrow { transform: translateX(6px); }

.hero__guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* HERO PHOTO */
.hero__media {
  position: relative;
  animation: heroIn 0.9s cubic-bezier(.2,.7,.2,1) 0.2s both;
}
.hero__photo-wrap {
  position: relative;
  padding: 30px;
}
.hero__photo-block {
  position: absolute;
  top: 0; right: 0;
  width: 75%; height: 90%;
  background: var(--pink);
  z-index: 0;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05);
}
.hero__badge {
  position: absolute;
  bottom: 0; left: -10px;
  z-index: 2;
  background: var(--black);
  color: var(--white);
  padding: 18px 22px;
  text-align: center;
  border: 2px solid var(--pink);
  transform: rotate(-3deg);
}
.hero__badge-num {
  font-family: var(--serif);
  font-size: 38px;
  display: block;
  line-height: 0.95;
  color: var(--pink);
  font-style: italic;
}
.hero__badge-text {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* MARQUEE */
.hero__marquee {
  background: var(--pink);
  color: var(--white);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--pink-light);
  border-bottom: 1px solid var(--pink-light);
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  animation: marquee 22s linear infinite;
  align-items: center;
}
.marquee__track .dot {
  font-style: normal;
  font-size: 18px;
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- MANIFESTO ---------- */
.manifesto {
  background: var(--pink);
  color: var(--white);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "“";
  position: absolute;
  top: -40px; left: 30px;
  font-family: var(--serif);
  font-size: 400px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
}
.manifesto__small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.85;
}
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 1100px;
}
.manifesto__quote em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.manifesto__quote strong {
  font-weight: 400;
  background: var(--black);
  padding: 0 12px;
  display: inline-block;
  line-height: 1.1;
}

/* ---------- SECTIONS COMMON ---------- */
.section-head {
  margin-bottom: 60px;
}
.section-head--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1.5px;
  background: var(--pink);
}
.section-head--center .section-eyebrow {
  padding-left: 30px;
  padding-right: 30px;
}
.section-head--center .section-eyebrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 22px; height: 1.5px;
  background: var(--pink);
}
.section-eyebrow--light { color: var(--pink-light); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
}
.section-title em {
  color: var(--pink);
  font-style: italic;
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--pink-light); }
.section-lead {
  margin-top: 24px;
  font-size: 17px;
  color: rgba(17,17,17,0.7);
  line-height: 1.65;
}
.num-display {
  color: var(--pink);
  font-style: italic;
  display: inline-block;
}

/* ---------- BENEFITS ---------- */
.benefits {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 10vw, 130px) 0;
}
.benefits .section-title { color: var(--white); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-line);
  border: 1px solid var(--gray-line);
}
.benefit-card {
  background: var(--black);
  padding: 44px 32px 40px;
  position: relative;
  transition: background 0.4s ease;
}
.benefit-card:hover {
  background: var(--black-soft);
}
.benefit-card:hover .benefit-card__num {
  color: var(--pink-light);
  transform: translateX(4px);
}
.benefit-card__num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--pink);
  line-height: 1;
  font-style: italic;
  display: block;
  margin-bottom: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.benefit-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.benefit-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.benefit-card--accent {
  background: var(--pink);
}
.benefit-card--accent:hover { background: var(--pink-light); }
.benefit-card--accent .benefit-card__num { color: var(--white); }
.benefit-card--accent:hover .benefit-card__num { color: var(--white); }
.benefit-card--accent p { color: rgba(255,255,255,0.92); }

/* ---------- DAYS ---------- */
.days {
  background: var(--off-white);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.days::before {
  content: "5";
  position: absolute;
  top: 60px; right: -80px;
  font-family: var(--serif);
  font-size: 600px;
  line-height: 0.8;
  color: rgba(255,20,120,0.05);
  font-style: italic;
  pointer-events: none;
}
.days__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.day {
  background: var(--white);
  padding: 32px 24px;
  border-top: 3px solid var(--pink);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.day:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
}
.day__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--pink);
  line-height: 1;
  display: block;
  margin-bottom: 24px;
}
.day h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.day p {
  font-size: 14px;
  color: rgba(17,17,17,0.65);
  line-height: 1.6;
}

/* ---------- COACH ---------- */
.coach {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.coach__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
}
.coach__media {
  position: relative;
  border-left: 3px solid var(--pink);
}
.coach__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,20,120,0.15));
  pointer-events: none;
  z-index: 1;
}
.coach__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.coach__content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 520px;
}
.coach__content p strong {
  color: var(--white);
  font-weight: 600;
}
.coach__content .section-title { margin-bottom: 28px; }
.coach__content .btn { margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq {
  background: var(--white);
  padding: clamp(80px, 10vw, 130px) 0;
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid rgba(17,17,17,0.1);
  padding: 6px 0;
}
.faq__item summary {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-family: var(--sans);
  color: var(--pink);
  font-weight: 300;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq__item[open] summary { color: var(--pink); }
.faq__item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}
.faq__item p {
  padding: 0 60px 24px 0;
  font-size: 16px;
  color: rgba(17,17,17,0.7);
  line-height: 1.7;
  animation: faqOpen 0.4s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,20,120,0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.final-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  position: relative;
  z-index: 1;
}
.final-cta__media {
  position: relative;
}
.final-cta__media::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px;
  width: 70%; height: 70%;
  border: 2px solid var(--pink);
  z-index: 0;
}
.final-cta__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: contrast(1.08);
}
.final-cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 18px 0 24px;
}
.final-cta__title em {
  color: var(--pink);
  font-style: italic;
}
.final-cta__title .num {
  color: var(--pink);
  font-style: italic;
}
.final-cta__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.6;
}
.final-cta__hint {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 50px 0 30px;
  border-top: 1px solid var(--gray-line);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--white);
}
.footer__logo-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--pink);
  line-height: 1;
}
.footer__logo-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.footer__copy {
  font-size: 13px;
}
.footer__disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  max-width: 880px;
  border-top: 1px solid var(--gray-line);
  padding-top: 22px;
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: waPulse 2.4s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; margin: 0 auto; }
  .hero__photo-wrap { padding: 20px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .days__list { grid-template-columns: repeat(2, 1fr); }
  .coach__grid { grid-template-columns: 1fr; padding-top: 70px; padding-bottom: 70px; }
  .coach__media { max-width: 480px; margin: 0 auto; border-left: none; border-top: 3px solid var(--pink); }
  .final-cta__inner { grid-template-columns: 1fr; }
  .final-cta__media { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .top-strip { font-size: 11px; padding: 9px 14px; letter-spacing: 0.05em; }
  .eyebrow { font-size: 11px; }
  .hero { padding-top: 32px; }
  .hero__title { font-size: clamp(52px, 14vw, 80px); }
  .hero__sub { font-size: 15px; }
  .countdown { gap: 7px; }
  .countdown__item { padding: 13px 4px 10px; }
  .countdown__num { font-size: 26px; }
  .countdown__label { font-size: 9px; }
  .btn { padding: 16px 22px; font-size: 14px; width: 100%; justify-content: center; }
  .hero__guarantees { gap: 14px; font-size: 12px; }
  .hero__guarantees span { width: 100%; }
  .marquee__track { font-size: 20px; gap: 18px; }
  .manifesto { padding: 70px 0; }
  .manifesto__quote { font-size: 30px; line-height: 1.2; }
  .manifesto::before { font-size: 240px; top: -20px; left: 10px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 36px 26px; }
  .days__list { grid-template-columns: 1fr; }
  .day { padding: 28px 22px; }
  .day__num { font-size: 48px; margin-bottom: 16px; }
  .faq__item summary { font-size: 18px; padding: 18px 36px 18px 0; }
  .faq__item p { font-size: 15px; padding-right: 30px; }
  .final-cta__title { font-size: clamp(54px, 16vw, 90px); }
  .final-cta__sub { font-size: 15px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .section-head { margin-bottom: 40px; }
  .hero__badge { padding: 14px 16px; }
  .hero__badge-num { font-size: 30px; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

::selection {
  background: var(--pink);
  color: var(--white);
}
