@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --ink: #21171c;
  --muted: #806b76;
  --pink: #f8cde0;
  --pink-deep: #d86e9c;
  --surface: rgba(255, 255, 255, .80);
  --line: rgba(74, 34, 54, .10);
  --shadow: 0 24px 80px rgba(91, 41, 65, .15);
  --card-shadow: 0 13px 38px rgba(72, 31, 51, .10);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: #fff7fa; }
body {
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 13% 3%, rgba(255, 202, 224, .78), transparent 34rem),
    radial-gradient(circle at 100% 38%, rgba(239, 220, 255, .60), transparent 32rem),
    linear-gradient(160deg, #fffafd 0%, #fff3f8 52%, #fbf9ff 100%);
  overflow-x: hidden;
}

a, button { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  opacity: .72;
}
.ambient-one { width: 15rem; height: 15rem; right: -7rem; top: 7rem; background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(242,188,216,.34)); }
.ambient-two { width: 11rem; height: 11rem; left: -4rem; bottom: 10rem; background: linear-gradient(145deg, rgba(255,221,190,.36), rgba(255,181,213,.40)); }
.ambient-three { width: 9rem; height: 9rem; right: 6%; bottom: -4rem; background: rgba(226,205,255,.35); }
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  min-height: 100svh;
  margin: 0 auto;
  padding: max(30px, env(safe-area-inset-top)) 18px max(36px, env(safe-area-inset-bottom));
}

.profile { padding-top: 7px; text-align: center; }
.portrait-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
}
.portrait-halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 205deg, #fff, #f1b0cb, #ead2ff, #fff, #f7c5d9);
  box-shadow: 0 12px 42px rgba(158,75,111,.22);
}
.portrait-halo::after { content: ""; position: absolute; inset: 3px; border-radius: inherit; background: #fff7fb; }
.portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.97);
  box-shadow: 0 10px 28px rgba(74,33,54,.18);
}
.verified {
  position: absolute;
  right: -1px;
  bottom: 7px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 14px rgba(53,28,40,.18);
}
.verified svg { width: 23px; height: 23px; }
.verified svg path:first-child { fill: #df82a6; }
.verified .check { fill: none; stroke: white; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }

.eyebrow {
  margin: 0 0 6px;
  color: #ad6685;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
}
h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 11vw, 3.05rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.bio {
  margin: 13px auto 15px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.55;
}
.site-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  margin-bottom: 27px;
  padding: 0 14px;
  border: 1px solid rgba(87,43,64,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 8px 22px rgba(74,33,54,.07);
  color: #5e4652;
  font-size: .80rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.site-pill svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.site-pill:hover { transform: translateY(-2px); background: white; box-shadow: 0 12px 28px rgba(74,33,54,.12); }

.links-list { display: grid; gap: 15px; }
.link-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(89,46,66,.09);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.link-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}
.link-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -96px;
  right: -76px;
  border-radius: 50%;
  background: var(--glow);
  pointer-events: none;
}
.link-card:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(64,28,46,.15); border-color: rgba(89,46,66,.16); }
.store-card { --accent: #df82a6; --glow: rgba(246,191,212,.42); }
.whatsapp-card { --accent: #35b56a; --glow: rgba(53,181,106,.13); }
.link-card > a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) 25px;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 18px 18px 18px 19px;
  text-decoration: none;
}
.icon-box {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 21px;
  background: rgba(255,255,255,.84);
  box-shadow: inset 0 0 0 1px rgba(66,32,49,.06), 0 7px 20px rgba(47,25,36,.08);
  color: var(--accent);
}
.icon-box svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-copy { min-width: 0; }
.card-copy > * { display: block; }
.card-label {
  margin-bottom: 3px;
  color: var(--accent);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.card-copy strong { color: #2a1d24; font-size: 1rem; line-height: 1.25; }
.card-copy small { margin-top: 5px; color: #806d77; font-size: .77rem; line-height: 1.36; }
.arrow { display: grid; place-items: center; width: 25px; height: 25px; color: #6c5963; }
.arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-pill:focus-visible,
.link-card a:focus-visible,
.influencer-card a:focus-visible { outline: 3px solid rgba(213,112,155,.42); outline-offset: 3px; }

footer { padding: 31px 0 4px; text-align: center; color: #8d7782; }
.footer-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin: 0 auto 9px;
  border: 1px solid rgba(90,44,67,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.66);
  color: #4c3540;
  font-family: "Playfair Display", serif;
  font-size: .75rem;
  font-weight: 700;
}
footer p { margin: 3px 0; font-size: .70rem; }
footer .disclaimer { color: #aa959f; }

@media (min-width: 720px) {
  body { display: grid; place-items: start center; padding: 30px 0; }
  .page-shell {
    min-height: auto;
    padding: 40px 34px 32px;
    border: 1px solid rgba(91,44,67,.10);
    border-radius: 42px;
    background: rgba(255,255,255,.42);
    box-shadow: var(--shadow);
    backdrop-filter: blur(25px);
  }
  .portrait-wrap { width: 146px; height: 146px; }
  .link-card > a { grid-template-columns: 78px minmax(0,1fr) 28px; min-height: 120px; padding-left: 22px; }
  .icon-box { width: 78px; height: 78px; }
}

@media (max-width: 360px) {
  .page-shell { padding-inline: 12px; }
  .link-card > a { grid-template-columns: 64px minmax(0,1fr) 20px; gap: 11px; padding-inline: 15px; }
  .icon-box { width: 64px; height: 64px; border-radius: 18px; }
  .icon-box svg { width: 31px; height: 31px; }
  .card-copy small { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


/* Imagens oficiais dos cards */
.card-brand-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-logo-box { padding: 9px; }
.store-brand-image { width: 100%; height: 100%; }
.whatsapp-logo-box {
  padding: 5px;
  overflow: visible;
  background: rgba(255,255,255,.93);
}
.whatsapp-brand-image {
  width: 108%;
  height: 108%;
  filter: drop-shadow(0 5px 8px rgba(18, 101, 49, .10));
}

/* Chamada para o programa de influenciadoras — mesmo padrão da página da Lara */
.influencer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(190, 77, 124, .20);
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255, 239, 246, .94), rgba(247, 226, 255, .88));
  box-shadow: 0 17px 45px rgba(151, 63, 101, .14);
}
.influencer-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -90px;
  right: -45px;
  border-radius: 50%;
  background: rgba(255,255,255,.54);
}
.influencer-card::after {
  content: "";
  position: absolute;
  inset: auto auto -45px -35px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(237, 148, 187, .14);
}
.influencer-card a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0,1fr) 24px;
  align-items: center;
  gap: 13px;
  min-height: 104px;
  padding: 17px 18px;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease;
}
.influencer-card a:hover { transform: translateY(-2px); background: rgba(255,255,255,.20); }
.influencer-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, #e77da8, #be4e7b);
  box-shadow: 0 10px 26px rgba(177, 66, 111, .24);
}
.influencer-icon svg { width: 31px; height: 31px; fill: currentColor; stroke: none; }
.influencer-icon .spark { fill: none; stroke: white; stroke-width: 1.7; stroke-linecap: round; }
.influencer-copy { display: grid; min-width: 0; }
.influencer-label { margin-bottom: 4px; color: #b8527c; font-size: .59rem; font-weight: 700; letter-spacing: .13em; }
.influencer-copy strong { color: #3c2631; font-size: .94rem; line-height: 1.25; }
.influencer-copy small { margin-top: 4px; color: #856a77; font-size: .74rem; line-height: 1.35; }
.influencer-arrow { display: grid; place-items: center; color: #8d6577; }
.influencer-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

@media (min-width: 720px) {
  .influencer-card a { min-height: 110px; padding-inline: 21px; }
}

@media (max-width: 360px) {
  .influencer-card a { grid-template-columns: 49px minmax(0,1fr) 20px; gap: 10px; padding-inline: 14px; }
  .influencer-icon { width: 49px; height: 49px; border-radius: 15px; }
  .influencer-copy strong { font-size: .86rem; }
}
