/* ===== Tokens (company/BRAND.md + peças físicas) ===== */
:root {
  --deep: #07182F;
  --deep-2: #0d2440;
  --deep-3: #122c4f;
  --ink-black: #0a0a0c;
  --ivory: #F8F5EF;
  --coral: #FF6655;
  --coral-dark: #d94a3a;
  --ink: #0f1a2b;
  --ink-soft: rgba(15, 26, 43, .68);
  --ivory-soft: rgba(248, 245, 239, .72);
  --line-light: rgba(7, 24, 47, .1);
  --line-dark: rgba(248, 245, 239, .16);

  /* Degradê da marca (feixe de luz das peças sociais) */
  --g1: #FFC96E;
  --g2: #FF6655;
  --g3: #E0509B;
  --g4: #8A5CD1;
  --grad: linear-gradient(120deg, var(--g1) 0%, var(--g2) 42%, var(--g3) 72%, var(--g4) 100%);
  /* Versao clara do degrade, para texto sobre fundo escuro */
  --grad-text: linear-gradient(100deg, #FFD08A 0%, #FF7A5C 42%, #F06BA8 100%);

  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-script: "Dancing Script", cursive;
  --font-body: "Mukta", "Segoe UI", system-ui, -apple-system, sans-serif;

  --max-width: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --focus: 3px solid var(--coral);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

svg {
  flex-shrink: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--coral);
  color: var(--ivory);
  padding: .75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: .5rem;
  top: .5rem;
  border-radius: 8px;
}

:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

/* ===== Feixe de luz ===== */
.beam {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

.beam--section {
  top: 0;
  height: 62%;
  opacity: .85;
}

.beam--footer {
  top: 0;
  height: 100%;
  opacity: .8;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.nav.nav--scrolled {
  background: rgba(7, 24, 47, .82);
  border-bottom-color: rgba(248, 245, 239, .1);
  box-shadow: 0 10px 30px rgba(2, 8, 18, .2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1.25rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  color: var(--ivory);
  text-decoration: none;
}

.nav__logo img {
  display: block;
  width: 128px;
  height: auto;
}

.nav__links {
  display: flex;
  gap: 1.25rem;
}

.nav__links a {
  color: var(--ivory-soft);
  text-decoration: none;
  font-size: .9rem;
}

.nav__links a:hover {
  color: var(--ivory);
}

.nav__cta {
  color: var(--ivory);
  text-decoration: none;
  background: var(--coral);
  padding: .55rem 1.2rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s;
}

.nav__cta:hover {
  background: var(--coral-dark);
}

@media (max-width: 980px) {
  .nav__links {
    display: none;
  }
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: 4.5rem 1.25rem;
  overflow: hidden;
}

.section--tight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 780px;
}

.section--ivory {
  background: var(--ivory);
  color: var(--ink);
}

.section--deep {
  background: radial-gradient(80% 50% at 12% 0%, rgba(255, 102, 85, .10), transparent 60%), var(--deep);
  color: var(--ivory);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--coral-dark);
  margin: 0 0 .9rem;
}

.eyebrow--light {
  color: var(--coral);
}

.section__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 1rem;
  max-width: 24ch;
}

.section__title--light {
  color: var(--ivory);
}

.section__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 2.5rem;
}

.section__lead--light {
  color: var(--ivory-soft);
}

.demo-caption {
  text-align: center;
  font-size: .78rem;
  color: rgba(248, 245, 239, .42);
  margin: 1.5rem 0 0;
}

.demo-caption--dark {
  color: rgba(15, 26, 43, .42);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s, border-color .2s;
}

.btn--primary {
  background: var(--coral);
  color: var(--ivory);
  box-shadow: 0 8px 24px rgba(255, 102, 85, .32);
}

.btn--primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(248, 245, 239, .45);
  color: var(--ivory);
}

.btn--ghost:hover {
  border-color: var(--ivory);
  background: rgba(248, 245, 239, .08);
}

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

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  color: var(--ivory);
  background-color: var(--deep);
  background-image: linear-gradient(90deg, rgba(2, 8, 18, .22), rgba(2, 8, 18, .04)), url("assets/hero-background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: calc(clamp(1.25rem, 4vh, 3rem) + 64px) 1.25rem clamp(1.25rem, 4vh, 3rem);
}

.hero__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: stretch;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  max-width: 620px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(255, 102, 85, .42);
  border-radius: 999px;
  background: rgba(255, 102, 85, .1);
  padding: .4rem .85rem;
  font-size: .78rem;
  line-height: 1.2;
  letter-spacing: .03em;
  color: #ff8b7e;
  font-weight: 700;
  margin: 0 0 1.35rem;
}

.hero__title {
  max-width: 100%;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  text-wrap: balance;
  margin-bottom: 1.35rem;
}

.hero__title em {
  font-style: normal;
  background: var(--coral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6;
  color: var(--ivory-soft);
  max-width: 52ch;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 2rem;
}

.hero__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  padding: 1.15rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(248, 245, 239, .14);
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .82rem;
  line-height: 1.35;
  color: var(--ivory-soft);
}

.hero__bullets svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
}

/* --- Composição do kit --- */
.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.hero__composition {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 620px;
  max-height: 620px;
  isolation: isolate;
}

.hero__composition::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 2%;
  right: 0;
  bottom: 1.5%;
  height: 14%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .52) 30%, transparent 66%),
    radial-gradient(ellipse at 69% 55%, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .5) 36%, transparent 72%);
  filter: blur(7px);
  transform: scaleY(.62);
  transform-origin: center bottom;
}

.hero__product {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero__product--bag {
  z-index: 1;
  right: 0;
  bottom: 4%;
  width: 96%;
}

.hero__product--package {
  z-index: 2;
  left: 1%;
  bottom: 4%;
  width: 34%;
}

.hero__product--drip {
  z-index: 3;
  left: 2%;
  top: 18%;
  width: 34%;
  animation: hero-float-drip 3.4s ease-in-out infinite;
}

.hero__product--card {
  z-index: 4;
  right: 0;
  top: 20%;
  width: 44%;
  animation: hero-float-card 3.8s ease-in-out -.7s infinite;
}

@keyframes hero-float-drip {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-14px) rotate(0deg);
  }
}

@keyframes hero-float-card {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

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

  .hero__product--drip,
  .hero__product--card {
    animation: none;
  }

  .hero__product--drip {
    transform: rotate(-3deg);
  }

  .hero__product--card {
    transform: rotate(1deg);
  }
}

@media (min-width: 1021px) and (max-height: 720px) {
  .hero {
    padding: calc(1rem + 64px) 1.25rem 1rem;
  }

  .kicker {
    margin-bottom: .75rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 3.3vw, 3.1rem);
    margin-bottom: .75rem;
  }

  .hero__sub {
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .hero__actions {
    margin-bottom: 1rem;
  }

  .hero__bullets {
    padding-top: .75rem;
  }
}

@media (max-width: 1020px) {
  .hero {
    padding: calc(1.25rem + 64px) 1.25rem 1.25rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }

  .hero__copy {
    height: auto;
    max-width: 720px;
  }

  .kicker {
    margin-bottom: .8rem;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(2.1rem, 5.5vw, 3.2rem);
    margin-bottom: .8rem;
  }

  .hero__sub {
    line-height: 1.45;
    margin-bottom: 1rem;
  }

  .hero__actions {
    margin-bottom: 1rem;
  }

  .hero__bullets {
    padding-top: .8rem;
  }

  .hero__art {
    order: 2;
    height: 100%;
  }

  .hero__composition {
    width: clamp(200px, 32svh, 320px);
    height: auto;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 560px) {
  .hero {
    height: auto;
    background-image: linear-gradient(180deg, rgba(2, 8, 18, .08), rgba(2, 8, 18, .02)), url("assets/fundo_mobile.png");
    background-position: center top;
    background-size: cover;
    padding: 6rem 1.1rem 3.5rem;
  }

  .hero__grid {
    height: auto;
    grid-template-rows: auto auto;
    gap: 2.25rem;
  }

  .kicker {
    padding: .35rem .75rem;
    font-size: .75rem;
    margin-bottom: 1rem;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.02;
    margin-bottom: 1rem;
  }

  .hero__sub {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.4rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .7rem;
    margin-bottom: 1.4rem;
  }

  .hero__actions .btn {
    width: 100%;
    padding: .72rem 1rem;
    font-size: .9rem;
  }

  .hero__bullets {
    grid-template-columns: 1fr;
    gap: .65rem;
    padding-top: 1rem;
  }

  .hero__bullets li {
    gap: .4rem;
    font-size: .82rem;
    line-height: 1.35;
  }

  .hero__bullets svg {
    width: 16px;
    height: 16px;
  }

  .hero__art {
    width: 100%;
    height: auto;
  }

  .hero__composition {
    width: 100%;
    height: auto;
    max-width: none;
    aspect-ratio: 1 / 1;
  }

  .hero__composition::after {
    bottom: -1%;
    height: 15%;
  }

  .hero__product--bag {
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .hero__product--package {
    left: 0;
    bottom: 0;
    width: 36%;
  }

  .hero__product--drip {
    left: 1%;
    top: 18%;
    width: 36%;
  }

  .hero__product--card {
    right: 0;
    top: 20%;
    width: 46%;
  }
}

/* ===== A diferença ===== */
.difference {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 1.25rem clamp(4rem, 6vw, 6rem);
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 102, 85, .055), transparent 26%),
    linear-gradient(120deg, #faf7f1 0%, var(--ivory) 55%, #f6f0e8 100%);
}

.difference__inner {
  max-width: 1220px;
}

.difference__eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
  color: var(--coral);
}

.difference__eyebrow svg {
  width: 18px;
  height: 18px;
  fill: var(--coral);
}

.difference__title {
  max-width: 920px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.18;
}

.difference__title em {
  color: var(--coral);
  font-style: normal;
}

.difference__lead {
  max-width: 650px;
  margin: 1rem 0 1.25rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.45;
}

.compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1.12fr);
  align-items: center;
  gap: 0;
}

.compare__col {
  border-radius: 22px;
  padding: 1.45rem 1.6rem;
}

.compare__col--muted {
  background: rgba(248, 245, 239, .34);
  border: 1px solid rgba(7, 24, 47, .14);
}

.compare__col--good {
  background: var(--deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 102, 85, .75);
  box-shadow: 0 18px 42px rgba(7, 24, 47, .12);
}

.compare__col--good::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad);
}

.compare__watermark {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -26px;
  top: 36px;
  color: rgba(138, 92, 209, .14);
}

.compare__bridge {
  position: relative;
  height: 1px;
  background: var(--coral);
}

.compare__bridge::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--coral);
  border-radius: 50%;
  background: var(--ivory);
}

.compare__bridge::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--coral);
  border-right: 1px solid var(--coral);
  transform: rotate(45deg);
}

.compare__head {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .015em;
  margin: 0 0 .65rem;
  position: relative;
  z-index: 1;
}

.compare__mark,
.compare__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.compare__mark {
  width: 38px;
  height: 38px;
}

.compare__mark svg {
  width: 20px;
  height: 20px;
}

.compare__icon {
  width: 42px;
  height: 42px;
}

.compare__icon svg {
  width: 23px;
  height: 23px;
}

.compare__col--muted .compare__mark,
.compare__col--muted .compare__icon {
  color: #8e8a82;
  border-color: rgba(7, 24, 47, .1);
}

.compare__col--good .compare__mark,
.compare__col--good .compare__icon {
  color: var(--coral);
  border-color: rgba(255, 102, 85, .55);
}

.compare__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
}

.compare__col li {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  padding: .65rem 0;
  border-top: 1px solid rgba(7, 24, 47, .09);
}

.compare__col li:first-child {
  border-top: 0;
}

.compare__col--good li {
  border-color: rgba(248, 245, 239, .08);
}

.compare__col li>span:last-child {
  display: grid;
}

.compare__col strong {
  color: inherit;
  font-size: .95rem;
  line-height: 1.25;
}

.compare__col small {
  color: inherit;
  font-size: .9rem;
  line-height: 1.35;
}

.compare__col--muted li {
  color: var(--ink-soft);
}

.compare__col--good li {
  color: var(--ivory-soft);
}

.compare__col--good li strong {
  color: var(--ivory);
}

.difference-flow {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 1rem 1.7rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(7, 24, 47, .14);
  border-radius: 22px;
}

.difference-flow li {
  position: relative;
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}

.difference-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: .55rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral);
  font-size: 1.4rem;
  font-weight: 300;
}

.difference-flow__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #eee8df;
  color: #77736c;
}

.difference-flow__icon svg {
  width: 25px;
  height: 25px;
}

.difference-flow li>span:last-child {
  display: grid;
  min-width: 0;
}

.difference-flow strong {
  font-size: .8rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.difference-flow small {
  max-width: 14ch;
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.25;
}

.difference-flow__result .difference-flow__icon {
  color: var(--coral);
  background: rgba(255, 102, 85, .09);
}

.difference-flow__result strong {
  color: var(--coral);
}

.difference__closing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .65rem;
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
}

.difference__closing svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
}

.difference__closing strong {
  color: var(--coral);
}

@media (max-width: 900px) {
  .compare {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .compare__bridge {
    width: 1px;
    height: 28px;
    justify-self: center;
  }

  .compare__bridge::before {
    left: -4px;
    top: -1px;
  }

  .compare__bridge::after {
    right: -4px;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }

  .difference-flow {
    grid-template-columns: 1fr;
    padding: .75rem 1.1rem;
  }

  .difference-flow li {
    padding: .6rem 0 1.5rem;
  }

  .difference-flow li:not(:last-child)::after {
    content: "↓";
    left: 22px;
    right: auto;
    top: auto;
    bottom: -.15rem;
    transform: none;
  }

  .difference-flow small {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .difference {
    padding: 4rem 1.05rem;
  }

  .difference__title br {
    display: none;
  }

  .difference__lead {
    margin-bottom: 1.5rem;
  }

  .compare__col {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .compare__head {
    font-size: .92rem;
  }

  .compare__icon {
    width: 38px;
    height: 38px;
  }

  .compare__col li {
    gap: .8rem;
    min-height: 64px;
  }

  .compare__col strong {
    font-size: .9rem;
  }

  .compare__col small {
    font-size: .82rem;
  }

  .difference-flow {
    border-radius: 18px;
    margin-top: 1rem;
  }

  .difference__closing {
    align-items: flex-start;
    text-align: left;
    font-size: .95rem;
  }
}

/* ===== Por que café ===== */
.coffee-gift {
  background: transparent;
  border-top: 1px solid rgba(7, 24, 47, .06);
}

.coffee-gift__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.coffee-gift__visual {
  min-width: 0;
}

.coffee-gift__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coffee-gift__image-wrap img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.coffee-gift__image-note {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  padding: .65rem .9rem;
  border: 1px solid rgba(248, 245, 239, .22);
  border-radius: 999px;
  background: rgba(7, 24, 47, .76);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ivory);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.2;
}

.coffee-gift__image-note svg {
  width: 17px;
  height: 17px;
  color: var(--coral);
}

.coffee-gift__eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.coffee-gift__eyebrow svg {
  width: 19px;
  height: 19px;
}

.coffee-gift__title {
  max-width: 18ch;
  margin-bottom: 1rem;
}

.coffee-gift__title em {
  color: var(--coral);
  font-style: normal;
}

.coffee-gift__lead {
  max-width: 52ch;
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.coffee-gift__reasons {
  display: grid;
  gap: .25rem;
}

.coffee-reason {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(7, 24, 47, .09);
}

.coffee-reason:first-child {
  border-top: 0;
  padding-top: 0;
}

.coffee-reason__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 102, 85, .09);
  color: var(--coral-dark);
}

.coffee-reason__icon svg {
  width: 24px;
  height: 24px;
}

.coffee-reason h3 {
  margin: 0 0 .2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.coffee-reason p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.45;
}

.coffee-gift__closing {
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--coral);
  color: var(--ink-soft);
  font-size: 1rem;
}

.coffee-gift__closing strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .coffee-gift__inner {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .coffee-gift__visual {
    max-width: 700px;
  }

  .coffee-gift__content {
    max-width: 700px;
  }

  .coffee-gift__title {
    max-width: 22ch;
  }
}

@media (max-width: 560px) {
  .coffee-gift {
    padding: 4rem 1.05rem;
  }

  .coffee-gift__inner {
    gap: 2.25rem;
  }

  .coffee-gift__image-note {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    width: fit-content;
    font-size: .72rem;
  }

  .coffee-gift__lead {
    font-size: .98rem;
  }

  .coffee-reason {
    grid-template-columns: 42px 1fr;
    gap: .8rem;
  }

  .coffee-reason__icon {
    width: 42px;
    height: 42px;
  }

  .coffee-reason__icon svg {
    width: 21px;
    height: 21px;
  }
}

/* ===== Passo a passo ===== */
.process {
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  background: radial-gradient(circle at 78% 28%, rgba(30, 64, 113, .27), transparent 34%), var(--deep);
}

.process__beam {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 220px;
  pointer-events: none;
}

.process__inner {
  max-width: 1240px;
}

.process__eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.process__eyebrow svg {
  width: 17px;
  height: 17px;
}

.process__title {
  max-width: 18ch;
  margin-bottom: 2.75rem;
}

.process__title span {
  color: var(--coral);
}

.process__steps {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4.5vw, 5rem);
  margin: 0;
  padding: 0;
}

.process__steps::before {
  display: none;
}

.process-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.process-step__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 52px;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--coral);
}

.process-step__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(248, 245, 239, .44);
  border-radius: 50%;
  color: var(--ivory);
  background: var(--deep);
}

.process-step__icon svg {
  width: 25px;
  height: 25px;
}

.process-step h3 {
  margin: 1rem 0 0;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory);
}

.process-step__tagline {
  margin: .15rem 0 0;
  color: var(--ivory-soft);
  font-size: .95rem;
}

.process-step__visual {
  position: relative;
  height: 285px;
  margin: .75rem 0 1rem;
}

.process-step__description {
  margin: auto 0 0;
  max-width: 34ch;
  color: var(--ivory-soft);
  font-size: .94rem;
  line-height: 1.5;
}

.process-kit {
  overflow: hidden;
}

.process-kit img {
  position: absolute;
  height: auto;
  pointer-events: none;
}

.process-kit__bag {
  z-index: 1;
  left: -8%;
  bottom: 0;
  width: 92%;
}

.process-kit__package {
  z-index: 2;
  left: 38%;
  bottom: 0;
  width: 38%;
}

.process-kit__card {
  z-index: 3;
  right: -2%;
  bottom: 3%;
  width: 50%;
  transform: rotate(-5deg);
}

.process-phone {
  width: 168px;
  height: 282px;
  align-self: flex-start;
  margin-left: 0;
  margin-right: 0;
  border: 4px solid #161a21;
  border-radius: 27px;
  background: linear-gradient(165deg, #06162b, #0a2340);
  box-shadow: 0 18px 30px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(248, 245, 239, .14);
  overflow: hidden;
}

.process-phone__speaker {
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 16px;
  border-radius: 0 0 11px 11px;
  background: #05080d;
  transform: translateX(-50%);
}

.process-phone__spark {
  position: absolute;
  top: 33px;
  left: 50%;
  width: 19px;
  height: 19px;
  color: var(--ivory);
  transform: translateX(-50%);
}

.process-phone__scan {
  position: absolute;
  top: 78px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 1px solid var(--coral);
  transform: translateX(-50%);
}

.process-phone__scan svg {
  width: 74px;
  height: 74px;
  color: var(--ivory);
}

.process-phone__message {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 11px;
  display: grid;
  gap: 3px;
  padding: 9px;
  border: 1px solid rgba(248, 245, 239, .12);
  border-radius: 8px;
  color: var(--ivory);
  background: rgba(248, 245, 239, .05);
}

.process-phone__message strong {
  font-size: .58rem;
}

.process-phone__message small {
  color: var(--ivory-soft);
  font-size: .47rem;
  line-height: 1.35;
}

.process-laptop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 24px;
}

.process-laptop__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 1.62;
  padding: 12px;
  border: 7px solid #151a22;
  border-radius: 10px 10px 4px 4px;
  background: #07162a;
  box-shadow: 0 18px 30px rgba(0, 0, 0, .3);
  overflow: hidden;
}

.process-laptop__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(248, 245, 239, .1);
  color: var(--ivory);
  font-size: .55rem;
}

.process-laptop__bar span {
  color: var(--coral);
}

.process-laptop__bar i {
  width: 30px;
  height: 5px;
  border-radius: 3px;
  background: rgba(248, 245, 239, .12);
}

.process-laptop__screen>p {
  margin: 8px 0;
  color: var(--ivory);
  font-size: .54rem;
}

.process-laptop__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.process-laptop__metrics>span {
  display: grid;
  padding: 6px;
  border: 1px solid rgba(248, 245, 239, .1);
  border-radius: 4px;
}

.process-laptop__metrics small {
  color: var(--ivory-soft);
  font-size: .38rem;
}

.process-laptop__metrics strong {
  color: var(--ivory);
  font-size: .78rem;
}

.process-laptop__metrics i {
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--coral), transparent);
}

.process-laptop__chart {
  height: 38px;
  margin-top: 6px;
  padding: 8px;
  border: 1px solid rgba(248, 245, 239, .1);
  border-radius: 4px;
}

.process-laptop__chart span {
  display: block;
  height: 100%;
  border-bottom: 2px solid var(--coral);
  transform: skewY(-5deg);
}

.process-laptop__base {
  display: block;
  width: 112%;
  height: 9px;
  margin-left: -6%;
  border-radius: 1px 1px 9px 9px;
  background: linear-gradient(#313844, #11161e);
  box-shadow: 0 8px 12px rgba(0, 0, 0, .38);
}

.process-google-review {
  position: absolute;
  z-index: 3;
  right: -12px;
  top: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 132px;
  padding: 9px 10px;
  border: 1px solid rgba(7, 24, 47, .1);
  border-radius: 9px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .3);
  color: var(--ink);
  transform: translateX(24%);
}

.process-google-review>svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.process-google-review>span {
  display: grid;
  min-width: 0;
}

.process-google-review small {
  color: var(--ink-soft);
  font-size: .46rem;
  line-height: 1.1;
  white-space: nowrap;
}

.process-google-review strong {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: .78rem;
  line-height: 1.2;
}

.process-google-review i {
  color: #fbbc04;
  font-size: .48rem;
  font-style: normal;
  letter-spacing: -.08em;
}

.process__signature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin: 3.5rem 0 0;
  color: var(--ivory-soft);
}

.process .demo-caption {
  text-align: left;
}

.process__signature svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
}

.process__signature i {
  width: 1px;
  height: 28px;
  background: var(--coral);
}

.process__signature em {
  color: var(--coral);
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-style: normal;
}

@media (max-width: 900px) {
  .process__beam {
    height: 160px;
    opacity: .65;
  }

  .process__title {
    margin-bottom: 2.5rem;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 620px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 1rem;
    padding-bottom: 3.5rem;
  }

  .process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 25px;
    top: 26px;
    bottom: -26px;
    width: 1px;
    background: linear-gradient(var(--coral), rgba(224, 80, 155, .32));
  }

  .process-step__head {
    grid-column: 1;
    grid-row: 1 / span 4;
    align-items: flex-start;
  }

  .process-step__number {
    position: absolute;
    left: 62px;
    top: 10px;
    font-size: 1.45rem;
  }

  .process-step__icon {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
  }

  .process-step h3 {
    grid-column: 2;
    margin: .25rem 0 0 2.6rem;
  }

  .process-step__tagline {
    grid-column: 2;
    margin-left: 2.6rem;
  }

  .process-step__visual {
    grid-column: 2;
    width: min(100%, 390px);
    height: 270px;
    margin: 1rem 0;
  }

  .process-step__description {
    grid-column: 2;
    max-width: 46ch;
  }

  .process-phone {
    width: 158px;
    height: 270px;
    justify-self: start;
  }

  .process-laptop {
    width: min(100%, 390px);
    justify-self: start;
  }

  .process-google-review {
    right: -2px;
    top: 38px;
    transform: translateX(18%);
  }

  .process__signature {
    margin-top: .5rem;
  }
}

@media (max-width: 560px) {
  .process {
    padding: 4rem 1.05rem;
  }

  .process__title br {
    display: none;
  }

  .process__steps {
    margin-top: .5rem;
  }

  .process-step {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: .75rem;
    padding-bottom: 3rem;
  }

  .process-step:not(:last-child)::before {
    left: 21px;
    top: 22px;
    bottom: -22px;
  }

  .process-step__head {
    min-height: 44px;
  }

  .process-step__icon {
    width: 44px;
    height: 44px;
  }

  .process-step__icon svg {
    width: 21px;
    height: 21px;
  }

  .process-step__number {
    left: 52px;
    top: 8px;
    font-size: 1.25rem;
  }

  .process-step h3 {
    margin: .15rem 0 0 2.25rem;
    font-size: .86rem;
    letter-spacing: .12em;
  }

  .process-step__tagline {
    margin-left: 2.25rem;
    font-size: .86rem;
  }

  .process-step__visual {
    height: 230px;
    margin: .8rem 0;
    overflow: hidden;
  }

  .process-kit__bag {
    left: -13%;
    width: 100%;
  }

  .process-kit__package {
    left: 39%;
    width: 40%;
  }

  .process-kit__card {
    right: -4%;
    width: 52%;
  }

  .process-phone {
    width: 142px;
    height: 230px;
    overflow: hidden;
  }

  .process-phone__scan {
    top: 62px;
    width: 78px;
    height: 78px;
  }

  .process-phone__scan svg {
    width: 61px;
    height: 61px;
  }

  .process-phone__message {
    bottom: 8px;
  }

  .process-laptop {
    height: 205px;
    padding-top: 12px;
    overflow: visible;
  }

  .process-google-review {
    right: 0;
    top: 25px;
    width: 112px;
    padding: 7px 8px;
    gap: 6px;
    transform: translateX(12%);
  }

  .process-google-review>svg {
    width: 21px;
    height: 21px;
  }

  .process-google-review small {
    font-size: .4rem;
  }

  .process-google-review strong {
    font-size: .68rem;
  }

  .process-google-review i {
    font-size: .41rem;
  }

  .process__signature {
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: flex-start;
    text-align: left;
    font-size: .82rem;
  }

  .process__signature i {
    display: none;
  }

  .process__signature em {
    width: 100%;
    font-size: 1.2rem;
  }

  .process__signature svg:last-child {
    display: none;
  }
}

/* ===== Kit ===== */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.kit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 10px 26px rgba(7, 24, 47, .06);
  border: 1px solid transparent;
}

.kit-card--accent {
  border-color: rgba(255, 102, 85, .45);
  background: linear-gradient(170deg, rgba(255, 102, 85, .07), #fff 55%);
}

.kit-card__icon {
  width: 28px;
  height: 28px;
  color: var(--coral-dark);
  margin-bottom: .9rem;
}

.kit-card__title {
  font-size: 1.15rem;
  margin-bottom: .4rem;
}

.kit-card__sub {
  margin: 0;
  font-size: .93rem;
  color: var(--ink-soft);
}

.kit-card__sub em {
  font-family: var(--font-script);
  font-size: 1.05rem;
  font-style: normal;
  color: var(--coral-dark);
}

@media (max-width: 900px) {
  .kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .kit-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Split (Google | Plataforma) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.split__arrow {
  align-self: center;
  font-size: 1.5rem;
  color: var(--coral);
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

.mock {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--deep-2);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .4);
}

.mock--light {
  background: #fff;
  border-color: var(--line-light);
  box-shadow: 0 24px 54px rgba(7, 24, 47, .14);
}

.mock--dark {
  background: var(--deep);
}

.mock__head {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ivory-soft);
  background: #050f1c;
  border-bottom: 1px solid var(--line-dark);
}

.mock__head--dark {
  color: var(--ivory-soft);
}

.mock__brand {
  width: 18px;
  height: 18px;
}

.mock__note {
  margin: auto 1.1rem 1.1rem;
  font-size: .84rem;
  color: var(--ivory-soft);
  border-left: 2px solid var(--coral);
  padding-left: .7rem;
}

/* Cartão do Google */
.gcard {
  padding: 1.2rem 1.1rem .6rem;
}

.gcard__rating {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  flex-wrap: wrap;
}

.gcard__score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ivory);
  line-height: 1;
}

.gcard__stars {
  display: inline-flex;
  gap: 1px;
}

.gcard__stars svg {
  width: 17px;
  height: 17px;
  color: #FFC96E;
}

.gcard__count {
  font-size: .84rem;
  color: var(--ivory-soft);
}

.gcard__delta {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: .7rem 0 0;
  font-size: .84rem;
  font-weight: 700;
  color: var(--g1);
}

.gcard__delta svg {
  width: 14px;
  height: 14px;
}

.chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart--reviews {
  padding: 0 1.1rem .6rem;
}

.reviews {
  list-style: none;
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  display: grid;
  gap: .7rem;
}

.review {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--deep-3);
  border-radius: var(--radius-sm);
  padding: .7rem .8rem;
}

.review__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review__stars {
  display: inline-flex;
  gap: 1px;
  margin-bottom: .15rem;
}

.review__stars svg {
  width: 12px;
  height: 12px;
  color: #FFC96E;
}

.review__text {
  margin: 0;
  font-size: .84rem;
  color: var(--ivory-soft);
}

.review__time {
  margin-left: auto;
  font-size: .72rem;
  color: rgba(248, 245, 239, .4);
  white-space: nowrap;
}

/* Mini stats + atribuição */
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  padding: 1.1rem 1.1rem .4rem;
}

.mini-stat {
  background: var(--deep-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: .8rem .9rem;
}

.mini-stat__label {
  margin: 0 0 .25rem;
  font-size: .74rem;
  color: var(--ivory-soft);
}

.mini-stat__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ivory);
  line-height: 1;
}

.panel__title {
  margin: 0;
  padding: 1rem 1.1rem .6rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ivory-soft);
}

.attrib {
  list-style: none;
  margin: 0;
  padding: 0 1.1rem 1rem;
  display: grid;
  gap: .5rem;
}

.attrib li {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  background: var(--deep-3);
  border-radius: var(--radius-sm);
  padding: .6rem .8rem;
  font-size: .82rem;
  color: var(--ivory-soft);
}

.attrib__id {
  font-weight: 700;
  color: var(--ivory);
}

.attrib__stars {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  color: #FFC96E;
  font-weight: 700;
}

.attrib__stars svg {
  width: 12px;
  height: 12px;
}

.attrib__who {
  color: rgba(248, 245, 239, .55);
}

.attrib__time {
  margin-left: auto;
  font-size: .72rem;
  color: rgba(248, 245, 239, .4);
}

.tagpill {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .15rem .6rem;
  background: rgba(248, 245, 239, .1);
  color: var(--ivory-soft);
}

.tagpill--won {
  background: rgba(255, 201, 110, .16);
  color: var(--g1);
}

.tagpill--new {
  background: rgba(255, 102, 85, .16);
  color: var(--coral);
}

/* ===== Fluxo de indicação ===== */
.flow {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: .6rem;
  flex-wrap: wrap;
}

.flow__step {
  flex: 1 1 180px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 22px rgba(7, 24, 47, .05);
}

.flow__step--accent {
  border-color: rgba(255, 102, 85, .5);
  background: linear-gradient(170deg, rgba(255, 102, 85, .08), #fff 60%);
}

.flow__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  margin-bottom: .8rem;
}

.flow__icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.flow__title {
  font-weight: 700;
  margin: 0 0 .2rem;
}

.flow__sub {
  margin: 0;
  font-size: .87rem;
  color: var(--ink-soft);
}

.flow__arrow {
  align-self: center;
  color: var(--coral);
  font-size: 1.3rem;
}

@media (max-width: 780px) {
  .flow__arrow {
    display: none;
  }
}

/* Página de indicação (mock claro) */
.refpage {
  padding: 1.6rem 1.4rem;
  display: grid;
  gap: .6rem;
}

.refpage__kicker {
  margin: 0;
  font-size: .7rem;
  letter-spacing: .24em;
  font-weight: 700;
  color: var(--ink-soft);
}

.refpage__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: .3rem 0 0;
  line-height: 1.25;
}

.refpage__sub {
  margin: 0 0 .6rem;
  font-size: .9rem;
  color: var(--ink-soft);
}

.refpage__field {
  border: 1px solid rgba(15, 26, 43, .18);
  border-radius: 8px;
  padding: .65rem .8rem;
  font-size: .84rem;
  color: rgba(15, 26, 43, .4);
}

.refpage__btn {
  background: var(--coral);
  color: #fff;
  border-radius: 999px;
  padding: .7rem;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  margin-top: .3rem;
}

.refpage__foot {
  margin: .5rem 0 0;
  text-align: center;
  font-size: .72rem;
  color: rgba(15, 26, 43, .35);
  font-style: italic;
}

/* ===== Painel ===== */
.dash {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
  border: 1px solid var(--line-dark);
}

.dash__chrome {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1rem;
  background: #050f1c;
  border-bottom: 1px solid var(--line-dark);
}

.dash__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(248, 245, 239, .22);
}

.dash__url {
  margin-left: .8rem;
  font-size: .76rem;
  color: rgba(248, 245, 239, .45);
}

.dash__body {
  background: var(--deep-2);
  padding: 1.5rem;
  display: grid;
  gap: 1.1rem;
}

.dash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
}

.dash__title {
  font-weight: 700;
  margin: 0;
  color: var(--ivory);
}

.dash__badge {
  font-size: .76rem;
  color: var(--ivory-soft);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: .25rem .8rem;
}

.dash__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}

.stat {
  background: var(--deep-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.stat__label {
  margin: 0 0 .35rem;
  font-size: .78rem;
  color: var(--ivory-soft);
}

.stat__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ivory);
  line-height: 1;
}

.stat__unit {
  font-size: 1rem;
  color: var(--ivory-soft);
}

.stat__meta {
  margin: .35rem 0 0;
  font-size: .76rem;
  color: var(--coral);
  font-weight: 600;
}

@media (max-width: 720px) {
  .dash__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dash__row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.1rem;
}

@media (max-width: 820px) {
  .dash__row {
    grid-template-columns: 1fr;
  }
}

.dash__panel {
  background: var(--deep-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
}

.dash__panel .panel__title {
  padding: 0 0 1rem;
}

.funnel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .8rem;
}

.funnel li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: .7rem;
}

.funnel__label {
  font-size: .8rem;
  color: var(--ivory-soft);
}

.funnel__bar {
  height: 12px;
  border-radius: 4px;
  background: var(--coral);
}

.funnel__val {
  font-weight: 700;
  font-size: .9rem;
  color: var(--ivory);
}

@media (max-width: 480px) {
  .funnel li {
    grid-template-columns: 90px 1fr auto;
  }
}

.activity {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.activity li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .87rem;
  color: var(--ivory-soft);
}

.activity__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.activity__dot--idle {
  background: rgba(248, 245, 239, .3);
}

.activity__text {
  flex: 1;
}

.activity__text strong {
  color: var(--ivory);
  font-weight: 700;
}

.activity__time {
  font-size: .78rem;
  color: rgba(248, 245, 239, .45);
  white-space: nowrap;
}

.dash__caption {
  background: #050f1c;
  padding: .7rem 1rem;
  font-size: .76rem;
  color: rgba(248, 245, 239, .45);
  text-align: center;
}

/* ===== Ganhos ===== */
.gain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.gain-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 10px 26px rgba(7, 24, 47, .06);
}

.gain-card__icon {
  width: 28px;
  height: 28px;
  color: var(--coral-dark);
  margin-bottom: .9rem;
}

.gain-card__title {
  font-size: 1.12rem;
  margin-bottom: .4rem;
}

.gain-card__sub {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .gain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gain-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Pacotes ===== */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.plan {
  position: relative;
  background: var(--deep-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.plan--featured {
  background: linear-gradient(170deg, rgba(255, 102, 85, .14), var(--deep-2) 55%);
  border-color: var(--coral);
  box-shadow: 0 20px 46px rgba(255, 102, 85, .18);
}

.plan__flag {
  position: absolute;
  top: -13px;
  left: 1.6rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  background: var(--grad);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 999px;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  margin: 0 0 .2rem;
}

.plan__price {
  font-size: .85rem;
  color: var(--coral);
  font-weight: 700;
  margin: 0 0 .9rem;
}

.plan__pitch {
  font-size: .92rem;
  color: var(--ivory-soft);
  margin: 0 0 1.3rem;
}

.plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: .65rem;
  flex: 1;
}

.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  color: var(--ivory-soft);
}

.plan__list svg {
  width: 17px;
  height: 17px;
  color: var(--coral);
  margin-top: .15rem;
}

@media (max-width: 900px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ===== Formatos disponíveis ===== */
.product-offers {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 102, 85, .08), transparent 25%),
    linear-gradient(180deg, #fbf8f3, var(--ivory));
}

.product-offers__eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.product-offers__eyebrow svg {
  width: 17px;
  height: 17px;
}

.product-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 47, .1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(7, 24, 47, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 102, 85, .35);
  box-shadow: 0 22px 46px rgba(7, 24, 47, .12);
}

.product-card--featured {
  border-color: rgba(255, 102, 85, .42);
}

.product-card__visual {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #183452, var(--deep) 68%);
}

.product-card__visual>img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}

.product-card__visual--drip>img {
  width: 88%;
  left: 6%;
  top: 4%;
}

.product-card__visual--coffee {
  isolation: isolate;
}

.product-card__coffee--small {
  z-index: 2;
  width: 31%;
  left: 21%;
  bottom: -7%;
}

.product-card__coffee--large {
  z-index: 1;
  width: 43%;
  right: 17%;
  bottom: -9%;
}

.product-card__weight {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  padding: .28rem .55rem;
  border: 1px solid rgba(248, 245, 239, .2);
  border-radius: 999px;
  background: rgba(7, 24, 47, .75);
  color: var(--ivory);
  font-size: .68rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.product-card__weight--small {
  left: 13%;
}

.product-card__weight--large {
  right: 10%;
}

.product-card__visual--kit {
  isolation: isolate;
}

.product-card__kit-bag {
  z-index: 1;
  right: -8%;
  bottom: -3%;
  width: 102%;
}

.product-card__kit-package {
  z-index: 2;
  left: 0;
  bottom: -5%;
  width: 35%;
}

.product-card__kit-drip {
  z-index: 3;
  left: 7%;
  top: 9%;
  width: 48%;
  transform: rotate(-3deg);
}

.product-card__kit-card {
  z-index: 4;
  right: -1%;
  top: 22%;
  width: 45%;
  transform: rotate(1deg);
}

.product-card__badge {
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 14px;
  padding: .38rem .7rem;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 6px 16px rgba(255, 102, 85, .28);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.product-card__type {
  margin: 0 0 .35rem;
  color: var(--coral-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 .65rem;
  font-size: 1.45rem;
}

.product-card__body>p:not(.product-card__type) {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
}

.product-card .btn {
  margin-top: auto;
}

@media (max-width: 900px) {
  .product-offers__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) 1.1fr;
  }

  .product-card__visual {
    height: 100%;
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .product-offers {
    padding: 4rem 1.05rem;
  }

  .product-offers__grid {
    gap: 1rem;
  }

  .product-card {
    display: flex;
    border-radius: 18px;
  }

  .product-card__visual {
    height: 220px;
    min-height: 0;
  }

  .product-card__body {
    padding: 1.25rem;
  }

  .product-card h3 {
    font-size: 1.3rem;
  }

  .product-card__visual--drip>img {
    width: 82%;
    left: 9%;
    top: 1%;
  }

  .product-card__coffee--small {
    left: 24%;
  }

  .product-card__coffee--large {
    right: 20%;
  }
}

/* ===== Formulário ===== */
.form {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius);
  padding: 1.9rem;
}

.form--light {
  background: #fff;
  border: 1px solid var(--line-light);
  box-shadow: 0 12px 32px rgba(7, 24, 47, .07);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__grid .form__row:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 620px) {
  .form__grid {
    grid-template-columns: 1fr;
  }
}

.form__row {
  display: grid;
  gap: .35rem;
}

.form__row label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
}

.form__row input,
.form__row textarea,
.form__row select {
  font: inherit;
  padding: .7rem .85rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 26, 43, .2);
  background: var(--ivory);
  color: var(--ink);
  width: 100%;
}

.form__row textarea {
  resize: vertical;
}

.form__row input:focus,
.form__row textarea:focus,
.form__row select:focus {
  outline: var(--focus);
  outline-offset: 1px;
}

/* Campo-armadilha anti-spam: fora da tela, sem display:none — robôs costumam
   ignorar campos ocultos por display e preenchem este. */
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  min-height: 1.1em;
  font-weight: 700;
  margin: 0;
  color: var(--coral-dark);
}

.form__status--success,
.form__status--error {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 102, 85, .28);
  border-radius: 10px;
  background: rgba(255, 102, 85, .08);
  color: var(--ink);
  line-height: 1.45;
}

.form__status--error {
  border-color: rgba(7, 24, 47, .18);
  background: rgba(7, 24, 47, .05);
}

.btn[disabled] {
  opacity: .6;
  cursor: progress;
}

/* ===== FAQ ===== */
.faq {
  display: grid;
  gap: .8rem;
}

.faq__item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  box-shadow: 0 6px 16px rgba(7, 24, 47, .05);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--coral-dark);
  font-weight: 700;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: .8rem 0 0;
  color: var(--ink-soft);
}

/* ===== Footer ===== */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--ivory-soft);
  padding: 2.75rem 1.25rem 1.5rem;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__line--script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--coral);
  margin: .4rem 0 0;
}

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

.footer__links a {
  color: var(--ivory-soft);
  text-decoration: none;
  font-size: .9rem;
}

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

.footer__meta {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: .82rem;
  border-top: 1px solid rgba(248, 245, 239, .12);
  padding-top: 1.25rem;
}

/* Selo circular "Pequenas ações / Grandes efeitos" */
.seal {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px solid rgba(255, 201, 110, .4);
  display: grid;
  place-items: center;
  text-align: center;
  gap: .15rem;
  padding: .5rem;
}

.seal__top,
.seal__bottom {
  font-size: .52rem;
  letter-spacing: .12em;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(255, 201, 110, .85);
  font-weight: 600;
}

@media (max-width: 720px) {
  .seal {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3rem 1.1rem;
  }

  .dash__body {
    padding: 1rem;
  }
}
