@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: #20171c;
  --muted: #7b6872;
  --line: rgba(66, 32, 49, .11);
  --pink: #f6bfd4;
  --pink-deep: #dd7aa1;
  --surface: rgba(255, 255, 255, .78);
  --shadow: 0 24px 80px rgba(85, 40, 62, .16);
  --card-shadow: 0 12px 34px rgba(64, 28, 46, .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 15% 0%, rgba(255, 209, 228, .75), transparent 36rem),
    radial-gradient(circle at 100% 35%, rgba(238, 219, 255, .62), transparent 34rem),
    linear-gradient(160deg, #fffafd 0%, #fff4f8 53%, #fbf9ff 100%);
  overflow-x: hidden;
}

button, a { -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: 14rem; height: 14rem; right: -5rem; top: 7rem; background: linear-gradient(145deg, rgba(255, 196, 220, .7), rgba(229, 205, 255, .28)); }
.ambient-two { width: 11rem; height: 11rem; left: -4rem; bottom: 14rem; background: linear-gradient(145deg, rgba(255, 221, 190, .42), rgba(255, 181, 213, .45)); }
.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 { text-align: center; padding-top: 6px; }
.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 200deg, #fff, #f3b6ce, #ead5ff, #fff, #f7c6d9);
  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,.96);
  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: #b16f8b;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
}
h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 10vw, 3rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.bio {
  margin: 13px auto 17px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.55;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 26px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(87, 43, 64, .10);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 8px 22px rgba(74, 33, 54, .07);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.social-link:hover { transform: translateY(-2px); background: white; box-shadow: 0 12px 28px rgba(74, 33, 54, .12); }
.social-link:focus-visible, .card-main:focus-visible, .coupon:focus-visible { outline: 3px solid rgba(213, 112, 155, .42); outline-offset: 3px; }

.links-list { display: grid; gap: 15px; }
.brand-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;
}
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent, #e7a7c0);
}
.brand-card::after {
  content: "";
  position: absolute;
  width: 150px; height: 150px;
  top: -95px; right: -75px;
  border-radius: 50%;
  background: var(--glow, rgba(246,191,212,.28));
  pointer-events: none;
}
.brand-card:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(64, 28, 46, .15); border-color: rgba(89, 46, 66, .16); }
.brand-card.featured { border-color: rgba(222, 126, 164, .22); box-shadow: 0 20px 55px rgba(160, 70, 108, .16); }
.lbfit-card { --accent:#e995b6; --glow:rgba(255, 190, 216, .42); }
.growth-card { --accent:#159ed1; --glow:rgba(23, 158, 209, .13); }
.farma-card { --accent:#ee1432; --glow:rgba(238, 20, 50, .10); }
.card-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) 25px;
  align-items: center;
  gap: 14px;
  min-height: 116px;
  padding: 18px 18px 48px 19px;
  text-decoration: none;
}
.logo-box {
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 0 0 1px rgba(66,32,49,.06), 0 7px 20px rgba(47,25,36,.08);
}
.logo-box img { display:block; width: 62px; height: 62px; object-fit: contain; }
.logo-lbfit img { width: 64px; height: 64px; }
.card-copy { min-width: 0; }
.card-copy > * { display: block; }
.partner-label {
  margin-bottom: 3px;
  color: var(--accent);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.card-copy strong { overflow: hidden; text-overflow: ellipsis; color: #2a1d24; font-size: 1rem; line-height: 1.25; }
.card-copy small { margin-top: 5px; color: #806d77; font-size: .77rem; line-height: 1.35; }
.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; }
.coupon {
  position: absolute;
  z-index: 2;
  left: 105px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 28px;
  padding: 0 10px;
  border: 1px dashed color-mix(in srgb, var(--accent) 52%, white);
  border-radius: 999px;
  color: #5d4551;
  background: rgba(255,255,255,.74);
  font: inherit;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.coupon:hover { transform: scale(1.025); background: white; }
.coupon span { color: #8b6e7c; font-size: .61rem; font-weight: 700; letter-spacing: .08em; }
.coupon b { color: #2e2128; font-size: .72rem; letter-spacing: .07em; }
.coupon svg { width: 13px; height:13px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

footer { padding: 30px 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; }

.toast {
  position: fixed;
  z-index: 10;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  translate: -50% 16px;
  opacity: 0;
  pointer-events: none;
  padding: 11px 16px;
  border-radius: 999px;
  color: white;
  background: rgba(35,24,30,.94);
  box-shadow: 0 12px 40px rgba(38,22,31,.24);
  font-size: .78rem;
  font-weight: 600;
  transition: opacity .22s ease, translate .22s ease;
}
.toast.show { opacity:1; translate:-50% 0; }

@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; }
  .card-main { grid-template-columns: 78px minmax(0,1fr) 28px; min-height:122px; padding-left:22px; }
  .logo-box { width:78px; height:78px; }
  .logo-box img { width:68px; height:68px; }
  .coupon { left:114px; }
}

@media (max-width: 360px) {
  .page-shell { padding-inline: 12px; }
  .card-main { grid-template-columns:64px minmax(0,1fr) 20px; gap:11px; padding-inline:15px; }
  .logo-box { width:64px; height:64px; border-radius:18px; }
  .logo-box img { width:56px; height:56px; }
  .coupon { left:90px; }
  .card-copy small { font-size:.72rem; }
}

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

/* Chamada para o programa de influenciadoras */
.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-card a:focus-visible { outline: 3px solid rgba(213, 112, 155, .42); outline-offset: 3px; }
.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 (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; }
}

@media (prefers-reduced-motion: reduce) {
  .influencer-card a { transition: none !important; }
}
