/* ===========================================================
   ACHADINHOS PRA MAMÃES — Landing Page
   Minimal, warm, premium aesthetic
   =========================================================== */

:root {
  /* Palette */
  --bg:           #FBF8F4;   /* off-white / soft ivory */
  --bg-soft:      #F5EFE7;   /* warm beige */
  --rose:         #F4DCD6;   /* soft rosé */
  --rose-deep:    #E8B9AE;
  --mint:         #DCEEDD;   /* whisper mint (WhatsApp echo) */
  --whatsapp:     #25D366;
  --whatsapp-dk:  #128C7E;
  --ink:          #2A2622;   /* warm near-black */
  --ink-soft:     #6B6359;
  --ink-mute:     #A39A8E;
  --line:         #ECE5DB;
  --white:        #FFFFFF;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans:    'Manrope', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
}

/* Subtle paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.035 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .6;
  mix-blend-mode: multiply;
}

/* ================ AMBIENT BACKGROUND BLOBS ================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.blob--rose {
  width: 520px; height: 520px;
  background: var(--rose);
  top: -180px; right: -160px;
}
.blob--cream {
  width: 600px; height: 600px;
  background: var(--bg-soft);
  top: 30%; left: -240px;
  opacity: .8;
}
.blob--mint {
  width: 420px; height: 420px;
  background: var(--mint);
  bottom: -160px; right: -120px;
  opacity: .5;
}

/* ================ LAYOUT ================ */
.topbar, main, .foot {
  position: relative;
  z-index: 2;
}

.topbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--rose-deep);
  box-shadow: 0 4px 14px rgba(167,128,118,.16),
              inset 0 0 0 1px rgba(232,185,174,.35);
}
.brand__name { letter-spacing: -.01em; }
.brand__dot { color: var(--whatsapp); }

.topbar__hint {
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .topbar__hint { display: none; }
}

/* ================ HERO ================ */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 28px 40px;
  text-align: center;
}
.hero__inner { display: flex; flex-direction: column; align-items: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: .03em;
  color: var(--ink-soft);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset,
              0 6px 18px rgba(167,128,118,.06);
}
.eyebrow__pulse {
  width: 8px; height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 6.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 24px 0 18px;
  color: var(--ink);
  max-width: 18ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--ink) 0%, #6a4f47 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dots {
  display: inline-block;
  color: var(--rose-deep);
  letter-spacing: -.04em;
}

.hero__sub {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 32px;
}

/* CTA */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.005em;
  padding: 18px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .2s var(--ease);
  will-change: transform;
  isolation: isolate;
}
.cta--primary {
  background: linear-gradient(180deg, #2DDC74 0%, var(--whatsapp) 50%, #1FB857 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,.4) inset,
    0 -2px 0 rgba(0,0,0,.06) inset,
    0 10px 24px rgba(37,211,102,.28),
    0 2px 6px rgba(37,211,102,.18);
}
.cta--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.35), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.cta--primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.4) inset,
    0 -2px 0 rgba(0,0,0,.06) inset,
    0 14px 30px rgba(37,211,102,.35),
    0 4px 10px rgba(37,211,102,.22);
  filter: brightness(1.03);
}
.cta--primary:active { transform: translateY(0); filter: brightness(.98); }
.cta__icon { display: inline-flex; }
.cta__arrow {
  font-size: 18px;
  transition: transform .25s var(--ease);
  display: inline-block;
}
.cta:hover .cta__arrow { transform: translateX(3px); }
.cta--center { display: inline-flex; }

@media (max-width: 480px) {
  .cta { width: 100%; max-width: 360px; padding: 18px 22px; font-size: 15.5px; }
}

/* Trust line */
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero__trust strong { color: var(--ink); font-weight: 600; }
.dots-stack {
  display: inline-flex;
}
.dots-stack span {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.dots-stack span:nth-child(1){ background: linear-gradient(135deg,#F4DCD6,#E8B9AE); margin-left:0; }
.dots-stack span:nth-child(2){ background: linear-gradient(135deg,#F2E5D5,#D9C3A5); }
.dots-stack span:nth-child(3){ background: linear-gradient(135deg,#DCEEDD,#A9D6B0); }
.dots-stack span:nth-child(4){ background: linear-gradient(135deg,#E7DCEE,#CDB7D9); }

/* Proof tags */
.proof {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 560px;
}
.proof li {
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 999px;
  letter-spacing: .005em;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.proof li:hover {
  transform: translateY(-1px);
  background: #fff8f4;
}

/* ================ DIVIDER ================ */
.soft-divider {
  height: 80px;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(244,220,214,.35), transparent 70%);
  margin-top: 30px;
}

/* ================ BULLETS SECTION ================ */
.bullets {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 28px 80px;
  text-align: center;
}
.bullets__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 4.2vw, 36px);
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 36px;
  max-width: 22ch;
  margin-inline: auto;
}
.bullets__title em {
  font-style: italic;
  color: var(--rose-deep);
}

.bullets__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bullets__list li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(167,128,118,.05);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.bullets__list li:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(167,128,118,.09);
}
.check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--whatsapp-dk);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ================ EMOTIONAL SECTION ================ */
.emotional {
  position: relative;
  padding: 80px 28px 90px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(244,220,214,.22) 50%, transparent 100%);
}
.emotional__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.emotional__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 50px;
  max-width: 18ch;
  margin-inline: auto;
}
.emotional__title em {
  font-style: italic;
  color: var(--rose-deep);
}

/* ----- Discovery illustration ----- */
.discovery {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 50px;
  aspect-ratio: 4 / 5;
}

.phone {
  position: relative;
  width: 235px;
  height: 100%;
  margin: 0 auto;
  background: linear-gradient(160deg, #2A2622 0%, #1a1714 100%);
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 30px 60px -20px rgba(42,38,34,.35),
    0 12px 24px -12px rgba(42,38,34,.25),
    inset 0 0 0 1.5px rgba(255,255,255,.06);
  transform: rotate(-3deg);
}
.phone__notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #0e0c0a;
  border-radius: 999px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #EFE6DE 0%, #F8F2EB 100%);
  border-radius: 30px;
  padding: 42px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: hidden;
  position: relative;
}
.phone__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  padding: 0 4px;
}
.phone__bar span:first-child {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
}
.phone__bar span:last-child {
  flex: 1; height: 8px;
  background: rgba(42,38,34,.08);
  border-radius: 4px;
}
.phone__msg { display: flex; }
.phone__msg--in { justify-content: flex-start; }
.phone__bubble {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  padding: 9px 11px;
  box-shadow: 0 2px 6px rgba(42,38,34,.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 90%;
  animation: msgIn .6s var(--ease) backwards;
}
.phone__msg:nth-child(2) .phone__bubble { animation-delay: .2s; }
.phone__msg:nth-child(3) .phone__bubble { animation-delay: .4s; }
.phone__msg:nth-child(4) .phone__bubble { animation-delay: .6s; }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tag { font-size: 10.5px; color: var(--ink); font-weight: 600; }
.price { font-size: 10.5px; color: var(--ink-soft); }
.price s { color: var(--ink-mute); margin-right: 4px; }
.price b { color: var(--whatsapp-dk); font-weight: 700; }
.phone__bubble--hot {
  background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
  border: 1px solid var(--rose);
  box-shadow: 0 4px 14px rgba(232,185,174,.3);
}
.hot {
  font-size: 9.5px;
  color: #c25a48;
  font-weight: 700;
  letter-spacing: .02em;
}
.phone__typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  padding: 7px 10px;
  border-radius: 12px 12px 12px 4px;
  width: max-content;
  margin-top: 2px;
}
.phone__typing span {
  width: 5px; height: 5px;
  background: var(--ink-mute);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}
.phone__typing span:nth-child(2) { animation-delay: .2s; }
.phone__typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30%           { opacity: 1;  transform: translateY(-2px); }
}

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 10px 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow:
    0 10px 24px rgba(167,128,118,.14),
    0 2px 6px rgba(167,128,118,.08),
    inset 0 0 0 1px var(--line);
  font-size: 11.5px;
  line-height: 1.25;
  color: var(--ink);
  animation: float 5s ease-in-out infinite;
}
.float-card__emoji { font-size: 18px; }
.float-card__text { color: var(--ink-soft); }
.float-card__text b { color: var(--ink); font-weight: 700; }

.float-card--1 {
  top: 8%; left: -8%;
  transform: rotate(-5deg);
  animation-delay: 0s;
}
.float-card--2 {
  top: 38%; right: -10%;
  transform: rotate(4deg);
  background: linear-gradient(180deg, #fff, #f0f9f1);
  animation-delay: 1s;
}
.float-card--3 {
  bottom: 10%; left: -6%;
  transform: rotate(-3deg);
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -6px; }
}

@media (max-width: 440px) {
  .discovery { max-width: 280px; }
  .phone { width: 200px; }
  .float-card--1 { left: -4%; }
  .float-card--2 { right: -4%; }
  .float-card--3 { left: -2%; }
}

.emotional__caption {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ================ FOOTER ================ */
.foot {
  text-align: center;
  padding: 50px 28px 40px;
  font-size: 13px;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  margin-top: 20px;
}
.foot p { margin: 4px 0; }
.foot__mini { font-size: 11.5px; letter-spacing: .04em; }

/* ================ REVEAL ANIMATION ================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal .9s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .scroll-reveal, .float-card, .phone__bubble, .phone__typing span, .eyebrow__pulse {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ================ FOCUS STATES ================ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--whatsapp);
  outline-offset: 3px;
  border-radius: 999px;
}

/* Selection */
::selection {
  background: var(--rose);
  color: var(--ink);
}
