/* ==========================================================================
   BladderWise — design system V3
   Direction: "sunlit clinic" — vivid coral against deep teal on warm cream.
   Layered cards, coloured shadows, floating depth. Commercial, not editorial.
   Single committed light theme. No third-party requests. No trackers.
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/fraunces-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/karla-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;

  /* --- surfaces --- */
  --cream:       #fff7f0;
  --cream-deep:  #ffece1;
  --blush:       #ffe0d6;
  --card:        #ffffff;

  /* --- ink --- */
  --ink:         #10222a;
  --ink-soft:    #3c545f;
  --ink-faint:   #556c7a;

  /* --- coral (primary) --- */
  --coral:       #ff6b4a;   /* decorative only — never behind small text */
  --coral-btn:   #d2381f;   /* 4.85:1 on white */
  --coral-btn-2: #a82a16;
  --coral-text:  #b33018;   /* 5.9:1 on cream */
  --coral-soft:  #ffdfd6;

  /* --- teal --- */
  --teal:        #0c4a50;
  --teal-deep:   #06333a;
  --teal-mid:    #12626a;
  --teal-soft:   #d6ecea;

  /* --- gold --- */
  --gold:        #f0a92a;
  --gold-text:   #8a5a05;
  --gold-soft:   #fff0d4;

  --rule:        #f0d9cd;
  --rule-strong: #e3bda9;

  --shell:  76rem;
  --measure: 40rem;

  --shadow-sm: 0 1px 2px rgba(16,34,42,.06), 0 4px 10px rgba(16,34,42,.05);
  --shadow-md: 0 2px 4px rgba(16,34,42,.05), 0 12px 28px -8px rgba(16,34,42,.14);
  --shadow-lg: 0 4px 8px rgba(16,34,42,.05), 0 28px 60px -18px rgba(16,34,42,.26);
  --shadow-coral: 0 10px 30px -10px rgba(210,56,31,.45);

  --r-sm: .625rem;
  --r-md: 1.125rem;
  --r-lg: 1.75rem;
  --r-xl: 2.5rem;

  --step--1: .84rem;
  --step-0:  1.0625rem;
  --step-1:  clamp(1.16rem, 1.08rem + .38vw, 1.36rem);
  --step-2:  clamp(1.42rem, 1.24rem + .82vw, 1.95rem);
  --step-3:  clamp(1.8rem,  1.44rem + 1.6vw, 2.7rem);
  --step-4:  clamp(2.05rem, 1.45rem + 2.7vw, 3.45rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Karla', ui-sans-serif, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  font-weight: 700;
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 40;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); font-weight: 600; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--coral-text); text-underline-offset: .18em; text-decoration-thickness: .07em; }
a:hover { color: var(--coral-btn-2); }

:focus-visible {
  outline: 3px solid var(--teal-mid);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }
@media (max-width: 30rem) { .shell { width: min(100% - 1.75rem, var(--shell)); } }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--teal-deep); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.muted { color: var(--ink-faint); }
.mt-md { margin-top: 2rem; }
.nowrap { white-space: nowrap; }

/* ==========================================================================
   Masthead
   ========================================================================== */

.masthead {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,247,240,.92);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.25rem;
}
.wordmark {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--teal-deep);
}
.wordmark__mark {
  width: 2rem; height: 2rem; flex: none;
  color: var(--coral-btn);
  filter: drop-shadow(0 2px 4px rgba(210,56,31,.28));
}
.wordmark__name {
  display: block;
  font-family: 'Fraunces', Georgia, serif; font-weight: 800;
  font-variation-settings: 'SOFT' 40, 'WONK' 1, 'opsz' 20;
  font-size: 1.24rem; line-height: 1.05; letter-spacing: -.025em;
}
.wordmark__kicker {
  display: block; font-size: .62rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-top: .12rem;
}

.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav a {
  color: var(--ink-soft); text-decoration: none; font-size: .94rem; font-weight: 600;
  padding: .35rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--coral-text); border-bottom-color: var(--coral-btn); }

.navtoggle { display: none; }
.navtoggle__panel { display: contents; }

@media (max-width: 52rem) {
  .nav { display: none; }
  .navtoggle {
    display: block; border: 0; background: none; padding: 0; margin: 0;
    font: inherit; color: inherit;
  }
  .navtoggle > summary {
    list-style: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: .45rem;
    min-height: 44px; padding: .4rem .85rem;
    border: 1.5px solid var(--rule-strong); border-radius: 999px;
    font-size: .86rem; font-weight: 700; color: var(--teal-deep);
    background: var(--card);
  }
  .navtoggle > summary::-webkit-details-marker { display: none; }
  .navtoggle__panel {
    display: block; position: absolute; right: 1.25rem; margin-top: .6rem;
    background: var(--card); border: 1px solid var(--rule);
    border-radius: var(--r-md); box-shadow: var(--shadow-lg);
    padding: .5rem; min-width: 13rem; z-index: 50;
  }
  .navtoggle__panel a {
    display: block; padding: .8rem .9rem; text-decoration: none;
    color: var(--ink); border-radius: var(--r-sm); font-weight: 600;
  }
  .navtoggle__panel a:hover { background: var(--blush); color: var(--coral-text); }
}

/* --- disclosure ribbon --- */
.ribbon {
  background: linear-gradient(90deg, var(--teal-deep), var(--teal-mid));
  color: #fff; font-size: .8rem; line-height: 1.45;
  padding: .55rem 0;
}
.ribbon p { margin: 0; text-align: center; }
.ribbon a { color: #ffd9cd; }
.ribbon a:hover { color: #fff; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 3.4rem; padding: .95rem 1.9rem;
  border-radius: 999px; border: 0;
  font-family: inherit; font-size: 1.04rem; font-weight: 800; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer;
  background: linear-gradient(180deg, var(--coral-btn), var(--coral-btn-2));
  color: #fff;
  box-shadow: var(--shadow-coral), inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(210,56,31,.55), inset 0 1px 0 rgba(255,255,255,.28); }
.btn:active { transform: translateY(0); }
.btn__arrow { font-size: 1.1em; line-height: 1; transition: transform .18s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--lg { min-height: 3.9rem; font-size: 1.14rem; padding: 1.05rem 2.4rem; }
.btn--ghost {
  background: transparent; color: var(--teal-deep);
  border: 2px solid var(--rule-strong); box-shadow: none;
}
.btn--ghost:hover { background: var(--card); color: var(--coral-text); border-color: var(--coral-btn); box-shadow: var(--shadow-md); }
.btn--onteal {
  background: linear-gradient(180deg, #ff7a5c, var(--coral-btn));
  box-shadow: 0 14px 34px -12px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.3);
}

.ctablock { text-align: center; }
.ctanote {
  font-size: .82rem; color: var(--ink-faint); margin: .85rem auto 0; max-width: 30rem;
}
.ctastate {
  display: none; margin: 1rem auto 0; max-width: 34rem; text-align: left;
  background: var(--card); border: 1px solid var(--rule-strong); border-left: 4px solid var(--coral-btn);
  border-radius: var(--r-sm); padding: .9rem 1.1rem; font-size: .88rem;
}
.ctastate.is-visible { display: block; }
.ctastate code { display: block; margin-top: .5rem; font-size: .78rem; word-break: break-all; color: var(--ink-soft); }
.ctastate__msg { margin: .35rem 0 0; }

/* ==========================================================================
   Section furniture
   ========================================================================== */

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; position: relative; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--cream { background: var(--cream-deep); }
.section--teal {
  background: var(--teal-deep); color: #fff;
}
.section--teal h2, .section--teal h3, .section--teal h4 { color: #fff; }
.section--teal .lede, .section--teal p { color: rgba(255,255,255,.86); }
.section--teal .eyebrow { color: #ffb59f; }
.section--teal a { color: #ffc7b6; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase;
  color: var(--coral-text); margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), var(--gold)); flex: none;
}
.eyebrow--center { justify-content: center; }

.sectionhead { max-width: 46rem; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.sectionhead--left { margin-inline: 0; text-align: left; }
.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.5; margin: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative; overflow: hidden;
  padding: clamp(1.9rem, 3.4vw, 3rem) 0 clamp(2.6rem, 5vw, 4.5rem);
  background:
    radial-gradient(120% 90% at 88% 8%,  rgba(255,107,74,.20), transparent 55%),
    radial-gradient(90% 80% at 4% 96%,  rgba(18,98,106,.16), transparent 60%),
    linear-gradient(175deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: var(--rule);
}
.hero__grid {
  display: grid; gap: clamp(1.4rem, 3vw, 2rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 60rem) {
  .hero__grid {
    grid-template-columns: 1.02fr .98fr;
    grid-template-areas: "top stage" "bottom stage";
    column-gap: 4rem; row-gap: 1.25rem;
    align-items: start;
  }
  .hero__grid > .hero__copytop    { grid-area: top; align-self: end; }
  .hero__grid > .hero__copybottom { grid-area: bottom; }
  .hero__grid > .hero__stage      { grid-area: stage; align-self: center; }
}
/* No mobile a foto entra logo abaixo do titulo, sem empurrar o CTA para longe */
@media (max-width: 59.99rem) {
  .hero__figure { max-height: 44vh; }
  .hero__figure img { height: 44vh; object-fit: cover; object-position: 50% 22%; }
}

.hero__brandline {
  display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--rule-strong);
  border-radius: 999px; padding: .4rem .95rem .4rem .5rem;
  box-shadow: var(--shadow-sm); margin: 0 0 1.35rem;
  font-size: .82rem; color: var(--ink-soft);
}
.hero__brandpill {
  background: linear-gradient(135deg, var(--teal), var(--teal-mid)); color: #fff;
  border-radius: 999px; padding: .22rem .7rem;
  font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}

.hero h1 { margin-bottom: .55rem; line-height: 1.02; }
.hero h1 em {
  font-style: normal; color: var(--coral-text);
  background-image: linear-gradient(90deg, var(--coral), var(--gold));
  background-repeat: no-repeat;
  background-size: 100% .1em;
  background-position: 0 92%;
  padding-bottom: .06em;
}
.hero__sub {
  font-size: 1.06rem; color: var(--ink-soft); max-width: 33rem;
  margin: 0 0 1.35rem; line-height: 1.5;
}

.hero__bullets { list-style: none; margin: 0 0 1.65rem; padding: 0; display: grid; gap: .7rem; }
.hero__bullets li {
  display: grid; grid-template-columns: 1.55rem 1fr; gap: .7rem; align-items: start;
  font-size: 1.02rem; color: var(--ink);
}
.hero__tick {
  width: 1.55rem; height: 1.55rem; border-radius: 50%; flex: none; margin-top: .1rem;
  background: linear-gradient(135deg, var(--coral), var(--coral-btn));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 4px 10px -3px rgba(210,56,31,.5);
}
.hero__tick svg { width: .85rem; height: .85rem; }

.hero__disclosure { font-size: .8rem; color: var(--ink-faint); margin: 1rem 0 0; max-width: 30rem; }

/* --- hero figure with floating cards --- */
.hero__stage { position: relative; }
.hero__figure {
  position: relative; margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 40px 80px -40px rgba(210,56,31,.4);
  transform: rotate(-1.1deg);
}
.hero__figure img { width: 100%; }
.hero__figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(255,107,74,.10), transparent 45%, rgba(6,51,58,.18));
  pointer-events: none;
}
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(46px); z-index: -1;
}
.hero__blob--a { width: 17rem; height: 17rem; background: rgba(255,107,74,.42); top: -3rem; right: -3rem; }
.hero__blob--b { width: 14rem; height: 14rem; background: rgba(18,98,106,.32); bottom: -3rem; left: -3.5rem; }

.floatcard {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: .8rem 1rem;
  display: flex; align-items: center; gap: .7rem;
  max-width: 15rem;
}
.floatcard__icon {
  width: 2.4rem; height: 2.4rem; border-radius: .7rem; flex: none;
  display: grid; place-items: center; color: #fff;
}
.floatcard__icon svg { width: 1.2rem; height: 1.2rem; }
.floatcard__icon--coral { background: linear-gradient(135deg, var(--coral), var(--coral-btn)); }
.floatcard__icon--teal  { background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep)); }
.floatcard__icon--gold  { background: linear-gradient(135deg, var(--gold), #d18b0d); }
.floatcard b { display: block; font-size: .92rem; line-height: 1.2; color: var(--ink); }
.floatcard span { display: block; font-size: .74rem; color: var(--ink-faint); line-height: 1.3; margin-top: .1rem; }

.floatcard--tl { top: 1.6rem; left: -1.4rem; transform: rotate(-2.4deg); }
.floatcard--br { bottom: 2.2rem; right: -1.2rem; transform: rotate(2deg); }

@media (max-width: 60rem) {
  .hero__figure { transform: none; }
  .floatcard--tl { top: .8rem; left: .6rem; max-width: 12.5rem; padding: .6rem .75rem; }
  .floatcard--br { bottom: .8rem; right: .6rem; max-width: 12.5rem; padding: .6rem .75rem; }
  .floatcard b { font-size: .82rem; }
  .floatcard span { font-size: .68rem; }
  .floatcard__icon { width: 2rem; height: 2rem; }
}
@media (max-width: 24rem) {
  .floatcard--br { display: none; }
}

/* ==========================================================================
   Benefit strip
   ========================================================================== */

.benefits {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
}
.benefit {
  background: var(--card); border-radius: var(--r-md); padding: 1.5rem 1.35rem;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
}
.benefit__icon {
  width: 3rem; height: 3rem; border-radius: .9rem; margin-bottom: .9rem;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep));
  box-shadow: 0 8px 18px -8px rgba(12,74,80,.7);
}
.benefit:nth-child(2) .benefit__icon { background: linear-gradient(135deg, var(--coral), var(--coral-btn)); box-shadow: 0 8px 18px -8px rgba(210,56,31,.7); }
.benefit:nth-child(3) .benefit__icon { background: linear-gradient(135deg, var(--gold), #cf8a0d); box-shadow: 0 8px 18px -8px rgba(180,120,10,.7); }
.benefit:nth-child(4) .benefit__icon { background: linear-gradient(135deg, #4b8f7d, #245a4d); box-shadow: 0 8px 18px -8px rgba(36,90,77,.7); }
.benefit__icon svg { width: 1.5rem; height: 1.5rem; }
.benefit h3 { font-size: 1.16rem; margin-bottom: .35rem; }
.benefit p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   Split blocks (image + copy)
   ========================================================================== */

.split {
  display: grid; gap: clamp(1.8rem, 4vw, 3.5rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 56rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wideleft { grid-template-columns: 1.15fr .85fr; }
  .split--wideright { grid-template-columns: .85fr 1.15fr; }
  .split--flip .split__media { order: 2; }
}
.split__media { position: relative; margin: 0; }
.split__media img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.split__media--tilt img { transform: rotate(1.2deg); }
.split__media--glow::before {
  content: ""; position: absolute; inset: 8% -6% -8% 6%;
  background: linear-gradient(135deg, rgba(255,107,74,.35), rgba(18,98,106,.3));
  filter: blur(40px); border-radius: var(--r-xl); z-index: -1;
}

.figcap {
  font-size: .76rem; color: var(--ink-faint); margin: .7rem 0 0; line-height: 1.45;
}
.section--teal .figcap { color: rgba(255,255,255,.6); }

/* ==========================================================================
   Video block
   ========================================================================== */

.videoblock { max-width: 58rem; margin-inline: auto; }
.videoframe {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 40px 90px -40px rgba(255,107,74,.5);
  background: var(--teal-deep);
}
.videoframe img { width: 100%; }
.videoframe__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(94deg, rgba(6,51,58,.94) 0%, rgba(6,51,58,.88) 34%, rgba(6,51,58,.52) 58%, rgba(6,51,58,.10) 88%);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}
.videoframe__kicker {
  font-size: .7rem; letter-spacing: .17em; text-transform: uppercase; font-weight: 800;
  color: #ffb59f; margin: 0 0 .6rem;
}
.videoframe__title {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-variation-settings: 'SOFT' 30, 'WONK' 1;
  font-size: clamp(1.15rem, 3.1vw, 2rem); line-height: 1.12; color: #fff;
  margin: 0 0 1rem; max-width: 20ch; letter-spacing: -.02em;
}
.videoframe__play {
  display: inline-flex; align-items: center; gap: .7rem;
  color: #fff; font-size: .9rem; font-weight: 700;
}
.playglyph {
  width: 3.2rem; height: 3.2rem; border-radius: 50%; flex: none;
  background: linear-gradient(180deg, #ff7a5c, var(--coral-btn));
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(210,56,31,.8);
}
.playglyph svg { width: 1.15rem; height: 1.15rem; margin-left: .15rem; }
.videostatus {
  margin: 1rem auto 0; text-align: center; font-size: .82rem; color: var(--ink-faint);
  max-width: 34rem;
}
@media (max-width: 34rem) {
  .videoframe__scrim { background: linear-gradient(0deg, rgba(6,51,58,.94) 30%, rgba(6,51,58,.45) 100%); justify-content: flex-end; }
  .videoframe__title { max-width: none; }
}

/* ==========================================================================
   Product panel (FemiCore)
   ========================================================================== */

.product {
  background: linear-gradient(160deg, #ffffff, var(--cream-deep));
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 4vw, 3.2rem);
  position: relative; overflow: hidden;
}
.product::before {
  content: ""; position: absolute; top: -8rem; right: -8rem;
  width: 22rem; height: 22rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,74,.22), transparent 68%);
}
.product__head { position: relative; }
.product__head .eyebrow { display: flex; }
.product__name {
  display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap;
  margin: 0 0 .5rem;
}
.product__name b {
  font-family: 'Fraunces', Georgia, serif; font-weight: 900;
  font-variation-settings: 'SOFT' 40, 'WONK' 1, 'opsz' 60;
  font-size: clamp(2rem, 5.5vw, 3.2rem); line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(120deg, var(--coral-btn), #e0641c 55%, var(--teal-mid));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.product__name span {
  font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800;
  color: var(--teal-mid);
}
.productgrid {
  display: grid; gap: 1rem; margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  position: relative;
}
.productcard {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r-md);
  padding: 1.35rem; box-shadow: var(--shadow-sm);
}
.productcard h3 {
  font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 800;
  font-family: 'Karla', sans-serif; color: var(--coral-text); margin: 0 0 .55rem;
}
.productcard p { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.productcard strong { color: var(--ink); }

.rightsnote {
  margin-top: 1.6rem; position: relative;
  background: var(--teal-soft); border-left: 4px solid var(--teal-mid);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 1rem 1.2rem;
  font-size: .88rem; color: #113c41;
}
.rightsnote b { color: var(--teal-deep); }

/* ==========================================================================
   Ingredients
   ========================================================================== */

.ingredients {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
.ingredient {
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--rule); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.ingredient:hover { transform: translateY(-5px) rotate(-.4deg); box-shadow: var(--shadow-lg); }
.ingredient__img { position: relative; aspect-ratio: 1/1; background: var(--teal-deep); }
.ingredient__img img { width: 100%; height: 100%; object-fit: cover; }
.ingredient__body { padding: 1.15rem 1.2rem 1.35rem; flex: 1; }
.ingredient h3 { font-size: 1.12rem; margin: 0 0 .35rem; }
.ingredient p { font-size: .88rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.ingredient__strains {
  list-style: none; margin: .6rem 0 0; padding: 0; display: grid; gap: .3rem;
  font-size: .84rem; color: var(--ink-soft);
}
.ingredient__strains li { display: flex; gap: .45rem; align-items: baseline; }
.ingredient__strains li::before {
  content: ""; width: .4rem; height: .4rem; border-radius: 50%; flex: none;
  background: var(--coral); transform: translateY(-.15rem);
}
.ingredient--full { grid-column: 1 / -1; }
@media (min-width: 52rem) {
  .ingredient--full { flex-direction: row; align-items: stretch; }
  .ingredient--full .ingredient__img { flex: 0 0 34%; aspect-ratio: auto; }
  .ingredient--full .ingredient__body { padding: 1.7rem 2rem; display: flex; flex-direction: column; justify-content: center; }
  .ingredient--full .ingredient__strains { grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 1.5rem; }
}
.ingredient--full:hover { transform: translateY(-4px); }

/* ==========================================================================
   Formula attributes strip
   ========================================================================== */

.attributes {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}
.attribute {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md); padding: 1.3rem 1.1rem; text-align: center;
}
.attribute__icon {
  width: 2.9rem; height: 2.9rem; border-radius: .85rem; margin: 0 auto .8rem;
  display: grid; place-items: center; color: #06333a;
  background: linear-gradient(135deg, #ffd0c2, #ff9c81);
}
.attribute__icon svg { width: 1.45rem; height: 1.45rem; }
.attribute b { display: block; font-size: 1rem; color: #fff; }
.attribute span { display: block; font-size: .78rem; color: rgba(255,255,255,.66); margin-top: .25rem; }

/* ==========================================================================
   Bonuses
   ========================================================================== */

.bonuses {
  display: grid; gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.bonus {
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--rule); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}
.bonus:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bonus:nth-child(2) { transform: translateY(-.9rem); }
.bonus:nth-child(2):hover { transform: translateY(-1.4rem); }
@media (max-width: 47rem) { .bonus:nth-child(2), .bonus:nth-child(2):hover { transform: none; } }
.bonus__img { position: relative; aspect-ratio: 3/4; max-height: 15rem; overflow: hidden; }
.bonus__img img { width: 100%; height: 100%; object-fit: cover; }
.bonus__tag {
  position: absolute; top: .8rem; left: .8rem;
  background: linear-gradient(135deg, var(--coral-btn), var(--coral-btn-2)); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.6);
}
.bonus__body { padding: 1.2rem 1.25rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.bonus h3 { font-size: 1.08rem; margin: 0 0 .45rem; }
.bonus p { font-size: .88rem; color: var(--ink-soft); margin: 0 0 .9rem; }
.bonus__price {
  margin-top: auto; font-size: .8rem; color: var(--ink-faint);
  border-top: 1px dashed var(--rule-strong); padding-top: .7rem;
}
.bonus__price b { color: var(--gold-text); }

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing {
  display: grid; gap: 1.4rem; align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.price {
  position: relative; background: var(--card);
  border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 1.9rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease;
}
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price--feature {
  border: 2px solid var(--coral-btn);
  box-shadow: var(--shadow-lg), 0 30px 60px -30px rgba(210,56,31,.6);
  background: linear-gradient(170deg, #fff, var(--cream));
}
@media (min-width: 56rem) { .price--feature { transform: scale(1.035); } .price--feature:hover { transform: scale(1.035) translateY(-5px); } }
.price__flag {
  position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral-btn), var(--coral-btn-2)); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem .9rem; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-coral);
}
.price__flag--teal { background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep)); box-shadow: 0 10px 24px -10px rgba(12,74,80,.8); }
.price__tier {
  font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0 0 .3rem;
}
.price__bottles { font-size: 1.24rem; margin: 0 0 1rem; font-weight: 700; }
.price__amount { display: flex; align-items: baseline; gap: .45rem; margin-bottom: .2rem; }
.price__amount b {
  font-family: 'Fraunces', Georgia, serif; font-weight: 800;
  font-variation-settings: 'SOFT' 20, 'opsz' 100;
  font-size: clamp(2.6rem, 6vw, 3.4rem); line-height: .95; letter-spacing: -.04em;
  color: var(--teal-deep);
}
.price--feature .price__amount b { color: var(--coral-btn); }
.price__amount span { font-size: .86rem; color: var(--ink-faint); font-weight: 600; }
.price__total {
  font-size: .95rem; color: var(--ink-soft); margin: 0 0 1.1rem;
  padding-bottom: 1.1rem; border-bottom: 1px solid var(--rule);
}
.price__total b { color: var(--ink); }
.price ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.price li { display: grid; grid-template-columns: 1.15rem 1fr; gap: .55rem; font-size: .91rem; color: var(--ink-soft); align-items: start; }
.price li svg { width: 1.15rem; height: 1.15rem; margin-top: .18rem; color: var(--teal-mid); }
.price--feature li svg { color: var(--coral-btn); }
.price__foot { font-size: .78rem; color: var(--ink-faint); margin: 1.1rem 0 0; line-height: 1.45; }

.pricenote {
  margin-top: 1.6rem;
  background: var(--gold-soft); border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 1.1rem 1.3rem;
  font-size: .88rem; color: #4a3208;
}
.pricenote p:last-child { margin-bottom: 0; }
.pricenote b { color: #2f2004; }

/* ==========================================================================
   Guarantee
   ========================================================================== */

.guarantee {
  display: grid; gap: clamp(1.8rem, 4vw, 3rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 52rem) { .guarantee { grid-template-columns: auto 1fr; } }
.seal {
  width: clamp(9rem, 22vw, 13rem); height: clamp(9rem, 22vw, 13rem);
  margin-inline: auto; filter: drop-shadow(0 20px 40px rgba(240,169,42,.45));
}
.guarantee ul { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .6rem; }
.guarantee li { display: grid; grid-template-columns: 1.2rem 1fr; gap: .6rem; align-items: start; }
.guarantee li svg { width: 1.2rem; height: 1.2rem; margin-top: .2rem; color: var(--gold); }
.guarantee__note {
  margin-top: 1.4rem; font-size: .84rem; color: rgba(255,255,255,.62);
  border-top: 1px solid rgba(255,255,255,.16); padding-top: 1rem;
}

/* ==========================================================================
   Facts / why we review
   ========================================================================== */

.facts { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.fact {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r-md);
  padding: 1.4rem 1.3rem; box-shadow: var(--shadow-sm);
}
.fact b {
  display: block;
  font-family: 'Fraunces', Georgia, serif; font-weight: 800;
  font-variation-settings: 'SOFT' 20, 'opsz' 60;
  font-size: 2rem; line-height: 1; color: var(--coral-text); letter-spacing: -.03em;
  margin-bottom: .35rem;
}
.fact span { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; color: var(--ink-faint); margin-bottom: .5rem; }
.fact p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   Details / FAQ
   ========================================================================== */

.faq { max-width: 50rem; margin-inline: auto; display: grid; gap: .7rem; }
.qa {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.qa[open] { border-color: var(--rule-strong); box-shadow: var(--shadow-md); }
.qa > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; min-height: 44px;
  font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary:hover { color: var(--coral-text); }
.qa__plus {
  width: 1.75rem; height: 1.75rem; border-radius: 50%; flex: none;
  background: var(--blush); color: var(--coral-btn);
  display: grid; place-items: center; font-size: 1.1rem; font-weight: 700;
  transition: transform .2s ease;
}
.qa[open] .qa__plus { transform: rotate(45deg); background: var(--coral-btn); color: #fff; }
.qa__body { padding: 0 1.3rem 1.3rem; }
.qa__body p { font-size: .95rem; color: var(--ink-soft); }
.qa__body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Final CTA
   ========================================================================== */

.finalcta {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--teal-deep);
  padding: clamp(2.4rem, 6vw, 4.5rem) clamp(1.4rem, 4vw, 3.5rem);
  text-align: center; color: #fff;
  box-shadow: var(--shadow-lg);
}
.finalcta__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .38; z-index: 0;
}
.finalcta > * { position: relative; z-index: 1; }
.finalcta h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.finalcta p { color: rgba(255,255,255,.85); max-width: 44ch; margin-inline: auto; }

/* ==========================================================================
   Prose (secondary pages)
   ========================================================================== */

.pagehead {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(90% 100% at 90% 0%, rgba(255,107,74,.16), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--cream-deep));
  border-bottom: 1px solid var(--rule);
}
.pagehead h1 { max-width: 22ch; }
.pagehead p { max-width: var(--measure); color: var(--ink-soft); font-size: var(--step-1); margin: 0; }
.updated { font-size: .8rem; color: var(--ink-faint); margin-top: 1rem; }

.prose { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.prose__body { max-width: var(--measure); }
.prose__body h2 { font-size: var(--step-2); margin-top: 2.6rem; }
.prose__body h2:first-child { margin-top: 0; }
.prose__body h3 { font-size: var(--step-1); margin-top: 1.8rem; }
.prose__body ul, .prose__body ol { padding-left: 1.2rem; }
.prose__body li { margin-bottom: .5rem; }

.note {
  background: var(--card); border: 1px solid var(--rule);
  border-left: 4px solid var(--teal-mid);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.1rem 1.3rem; margin: 1.6rem 0; font-size: .92rem;
  box-shadow: var(--shadow-sm);
}
.note--clay { border-left-color: var(--gold); background: var(--gold-soft); }
.note p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--teal-deep); color: rgba(255,255,255,.72);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem; font-size: .88rem;
}
.footer__inner { display: grid; gap: 1.6rem; }
@media (min-width: 46rem) { .footer__inner { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.footer__brand .wordmark { color: #fff; }
.footer__brand .wordmark__mark { color: #ff7a5c; }
.footer__brand .wordmark__kicker { color: rgba(255,255,255,.55); }
.footer__blurb { margin: .9rem 0 0; max-width: 34rem; color: rgba(255,255,255,.68); }
.footer__links { display: flex; flex-wrap: wrap; gap: .1rem 1rem; margin: -.55rem; }
.footer__links a {
  color: rgba(255,255,255,.86); text-decoration: none; font-weight: 600;
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 .55rem;
}
.footer__links a:hover { color: #ff9c81; text-decoration: underline; }
.footer__legal {
  margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.14);
  font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.55;
}
.footer__legal p { margin-bottom: .6rem; }
.footer__legal a { color: rgba(255,255,255,.8); }

/* ==========================================================================
   Home page
   ========================================================================== */

.homehero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(100% 90% at 85% 10%, rgba(255,107,74,.22), transparent 58%),
    radial-gradient(80% 70% at 0% 100%, rgba(18,98,106,.18), transparent 60%),
    linear-gradient(175deg, var(--cream), var(--cream-deep));
}
.homehero__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 58rem) { .homehero__grid { grid-template-columns: 1.05fr .95fr; } }
.homehero h1 { max-width: 14ch; }
.homehero h1 em { font-style: normal; color: var(--coral-text); }
.homehero__sub { font-size: var(--step-1); color: var(--ink-soft); max-width: 34rem; margin: 0 0 1.8rem; }
.homehero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

.featured {
  display: grid; gap: 0; overflow: hidden;
  background: var(--card); border: 1px solid var(--rule);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
}
@media (min-width: 54rem) { .featured { grid-template-columns: .95fr 1.05fr; align-items: stretch; } }
.featured__media { position: relative; min-height: 15rem; }
.featured__media img { width: 100%; height: 100%; object-fit: cover; }
.featured__body { padding: clamp(1.6rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.featured__body h2 { font-size: var(--step-2); }

.trustrow { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.trust {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md); padding: 1.4rem 1.3rem;
}
.trust b { display: block; color: #fff; font-size: 1.02rem; margin-bottom: .3rem; }
.trust p { font-size: .88rem; color: rgba(255,255,255,.72); margin: 0; }

/* ==========================================================================
   Reveal on scroll — opt-in, JS adds .js-reveal to <html>
   ========================================================================== */

.js-reveal [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.js-reveal [data-reveal].is-in { opacity: 1; transform: none; }
.js-reveal [data-reveal].rv-0 { transition-delay: 0ms; }
.js-reveal [data-reveal].rv-1 { transition-delay: 70ms; }
.js-reveal [data-reveal].rv-2 { transition-delay: 140ms; }
.js-reveal [data-reveal].rv-3 { transition-delay: 210ms; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Utilities — a CSP desta zona e style-src 'self', ou seja o atributo style=
   inline e BLOQUEADO em producao. Tudo que precisaria dele vive aqui.
   ========================================================================== */

.u-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.u-left   { text-align: left; margin-left: 0; }
.u-mt-lg  { margin-top: 2rem; }
.u-mt-sm  { margin-top: 1.5rem; }
.u-measure-wide { max-width: 44rem; }
.u-onteal-note  { color: rgba(255,255,255,.72); }
.u-round-xl     { border-radius: var(--r-xl); }
.benefits-title { font-size: var(--step-2); margin-bottom: 1.4rem; }
.ingredient--full .ingredient__img img { max-height: 15rem; object-fit: cover; }

/* ==========================================================================
   Botão de largura total (usado nos cartões de preço e no diálogo de saída)
   ========================================================================== */

.btn--full { display: flex; width: 100%; }

.price__buy { margin: 1.2rem 0 0; }
.price__buy + .price__foot { margin-top: .85rem; }

/* ==========================================================================
   Faixa de preço repetida — mesma informação, forma compacta
   ========================================================================== */

.pricestrip {
  display: grid; gap: 1rem; align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.pricemini {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 1.5rem 1.35rem; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricemini:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricemini--feature { border: 2px solid var(--coral-btn); box-shadow: var(--shadow-lg), 0 24px 50px -26px rgba(210,56,31,.55); }
.pricemini__tier {
  font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0 0 .5rem;
}
.pricemini__amount { display: flex; align-items: baseline; gap: .4rem; margin: 0 0 .25rem; }
.pricemini__amount b {
  font-family: 'Fraunces', Georgia, serif; font-weight: 800;
  font-variation-settings: 'SOFT' 20, 'opsz' 100;
  font-size: 2.5rem; line-height: .95; letter-spacing: -.04em; color: var(--teal-deep);
}
.pricemini--feature .pricemini__amount b { color: var(--coral-btn); }
.pricemini__amount span { font-size: .82rem; color: var(--ink-faint); font-weight: 600; }
.pricemini__total { font-size: .9rem; color: var(--ink-soft); margin: 0 0 1.15rem; }
.pricemini .btn { margin-top: auto; }

/* ==========================================================================
   Diálogo de saída
   ========================================================================== */

.has-exitpop { overflow: hidden; }

.exitpop { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 1.25rem; }
.exitpop[hidden] { display: none; }
.exitpop__backdrop {
  position: absolute; inset: 0; background: rgba(6,51,58,.62);
  backdrop-filter: blur(3px); animation: exitfade .22s ease both;
}
.exitpop__card {
  position: relative; z-index: 1;
  width: min(100%, 30rem); max-height: calc(100vh - 2.5rem); overflow-y: auto;
  background: linear-gradient(165deg, #fff, var(--cream-deep));
  border: 1px solid var(--rule-strong); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), 0 40px 90px -30px rgba(6,51,58,.7);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  animation: exitrise .28s cubic-bezier(.16,1,.3,1) both;
}
@keyframes exitfade { from { opacity: 0 } to { opacity: 1 } }
@keyframes exitrise { from { opacity: 0; transform: translateY(18px) scale(.97) } to { opacity: 1; transform: none } }
@media (prefers-reduced-motion: reduce) {
  .exitpop__backdrop, .exitpop__card { animation: none; }
}

.exitpop__close {
  position: absolute; top: .6rem; right: .6rem;
  width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: transparent; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--ink-faint);
  display: grid; place-items: center;
}
.exitpop__close:hover { background: var(--blush); color: var(--coral-text); }

.exitpop__card h2 { font-size: var(--step-2); margin-bottom: .5rem; }
.exitpop__card > p { font-size: .93rem; color: var(--ink-soft); }

.exitpop__rows { list-style: none; margin: 1.3rem 0; padding: 0; display: grid; gap: .55rem; }
.exitpop__rows li {
  display: grid; grid-template-columns: 1fr auto auto; gap: .8rem; align-items: baseline;
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r-sm);
  padding: .7rem .9rem;
}
.exitpop__rows b { font-size: .95rem; }
.exitpop__rows span { font-size: .9rem; color: var(--ink-soft); }
.exitpop__rows i {
  font-style: normal; font-weight: 800; font-size: .95rem; color: var(--coral-text);
}
.exitpop__foot {
  font-size: .78rem; color: var(--ink-faint); margin-top: 1rem;
  border-top: 1px solid var(--rule); padding-top: .8rem;
}

/* No mobile o empilhamento dos cartões alonga demais a página. Ritmo mais
   apertado, sem remover nenhum bloco nem nenhum fato. */
@media (max-width: 47rem) {
  .section       { padding: 2.6rem 0; }
  .section--tight { padding: 2rem 0; }
  .sectionhead   { margin-bottom: 1.6rem; }
  .hero          { padding-bottom: 2.2rem; }
}

/* Ingredientes em duas colunas no telefone: empilhados, os cinco cartões
   sozinhos custavam ~1.000 px e jogavam bônus e preço para muito depois do
   ponto em que a página do vendedor os apresenta. */
@media (max-width: 47rem) {
  .ingredients { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
  .ingredient__body { padding: .9rem .9rem 1.1rem; }
  .ingredient h3 { font-size: .98rem; }
  .ingredient p  { font-size: .81rem; }
  .ingredient--full { grid-column: 1 / -1; }
  .ingredient--full .ingredient__strains { grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 1rem; }
}
