/* ============================================================
   Links.med — premium rebuild · crie.studio
   ============================================================ */

:root {
  /* brand */
  --copper-100: #f3c6a3;
  --copper-200: #e89c6d;
  --copper-300: #d98046;
  --copper-400: #c26a32;
  --copper-500: #a3592a;

  /* surface */
  --bg: #060403;
  --bg-2: #0c0907;
  --ink: #0a0503;
  --card: rgba(255, 255, 255, 0.025);
  --card-brd: rgba(255, 255, 255, 0.08);
  --card-brd-hi: rgba(217, 128, 70, 0.45);

  /* text */
  --white: #fbf8f5;
  --zinc-300: #c9c3bd;
  --zinc-400: #9b948d;
  --zinc-500: #6f6862;

  --grad: linear-gradient(105deg, var(--copper-200), var(--copper-300) 55%, var(--copper-500));
  --shadow-glow: 0 0 40px rgba(217, 128, 70, 0.28);

  --maxw: 1200px;
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, .brand__name { font-family: "Sora", sans-serif; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ===================== BACKGROUND FIELD ===================== */
.bg-field { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aurora { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; mix-blend-mode: screen; }
.aurora--1 { width: 50vw; height: 50vw; left: -10vw; top: -12vw;
  background: radial-gradient(circle, rgba(217,128,70,.55), transparent 65%); animation: drift1 22s ease-in-out infinite; }
.aurora--2 { width: 46vw; height: 46vw; right: -12vw; top: 18vh;
  background: radial-gradient(circle, rgba(194,106,50,.42), transparent 65%); animation: drift2 28s ease-in-out infinite; }
.aurora--3 { width: 60vw; height: 60vw; left: 20vw; bottom: -30vw;
  background: radial-gradient(circle, rgba(163,89,42,.38), transparent 65%); animation: drift3 32s ease-in-out infinite; }
@keyframes drift1 { 50% { transform: translate(8vw, 6vh) scale(1.15); } }
@keyframes drift2 { 50% { transform: translate(-6vw, 4vh) scale(1.1); } }
@keyframes drift3 { 50% { transform: translate(4vw, -6vh) scale(1.2); } }

.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.grain {
  position: absolute; inset: -50%;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain { 10%{transform:translate(-4%,3%)} 30%{transform:translate(2%,-5%)} 50%{transform:translate(-3%,4%)} 70%{transform:translate(5%,2%)} 90%{transform:translate(-2%,-3%)} }

.cursor-glow {
  position: fixed; top: 0; left: 0; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,128,70,.10), transparent 60%);
  transform: translate(-50%, -50%); pointer-events: none; z-index: -1;
  transition: opacity .4s; opacity: 0;
}

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--grad); box-shadow: 0 0 12px var(--copper-300); }

/* ===================== BUTTONS ===================== */
.btn {
  --pad: 14px 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad);
  border-radius: 999px; border: 1px solid transparent;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--sm { --pad: 10px 18px; font-size: .85rem; }
.btn--lg { --pad: 17px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--copper-300); color: #1a0d04;
  box-shadow: 0 8px 30px rgba(217,128,70,.25);
}
.btn--primary:hover { background: var(--copper-200); box-shadow: 0 0 28px rgba(217,128,70,.5); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,.04); color: var(--white);
  border-color: rgba(255,255,255,.12); backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6,4,3,.6); backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,.06);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; color: #1a0d04;
  background: var(--grad); box-shadow: var(--shadow-glow);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 800; font-size: 1.15rem; }
.brand__name .dot { color: var(--copper-300); }
.brand__sub { font-size: .68rem; color: var(--zinc-500); letter-spacing: .04em; }

.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: .92rem; color: var(--zinc-300); position: relative; transition: color .25s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 20px; }
.nav__portal { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--zinc-300); transition: color .25s; }
.nav__portal svg { width: 17px; height: 17px; }
.nav__portal:hover { color: var(--copper-200); }

.nav__burger { display: none; background: none; border: 0; width: 44px; height: 44px; flex-direction: column; gap: 6px; justify-content: center; align-items: center; cursor: pointer; }
.nav__burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 74px; left: 0; right: 0; z-index: 99;
  background: rgba(8,5,4,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 4px; padding: 16px 24px 26px;
  transform: translateY(-120%); transition: transform .45s var(--ease); visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a { padding: 14px 6px; color: var(--zinc-300); font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-menu .btn { margin-top: 14px; }

/* ===================== HERO ===================== */
.hero { padding: 140px 0 0; position: relative; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
  min-height: 78vh;
}
.hero__copy { max-width: 600px; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px; font-size: .82rem; font-weight: 500;
  background: rgba(217,128,70,.08); border: 1px solid rgba(217,128,70,.25);
  color: var(--copper-100); margin-bottom: 28px;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--copper-200); box-shadow: 0 0 0 0 rgba(232,156,109,.6); animation: ping 2.2s infinite; }
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(232,156,109,.55)} 70%,100%{box-shadow:0 0 0 9px rgba(232,156,109,0)} }

.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.04; margin-bottom: 26px; }
.hero__title .line { display: block; }

.hero__lede { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--zinc-400); max-width: 540px; margin-bottom: 36px; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__stats { display: flex; align-items: center; gap: 28px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: "Sora", sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1; color: var(--white); }
.stat__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--zinc-500); font-weight: 600; margin-top: 6px; }
.stat__sep { width: 1px; height: 42px; background: linear-gradient(transparent, rgba(255,255,255,.18), transparent); }

/* phone device */
.hero__device { position: relative; display: grid; place-items: center; perspective: 1400px; }
.device-glow {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,128,70,.4), transparent 65%); filter: blur(40px);
}
.phone {
  position: relative; width: 300px; height: 600px; border-radius: 44px;
  background: linear-gradient(160deg, #1c1714, #0b0807);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), inset 0 1px 1px rgba(255,255,255,.08);
  padding: 12px; transform-style: preserve-3d;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-16px); } }
.phone__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #050403; border-radius: 999px; z-index: 3; }
.phone__screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden; position: relative;
  background: radial-gradient(120% 60% at 50% 0%, #16100c, #090706);
}

.card-page { padding: 56px 22px 26px; display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; }
.card-page__cover { position: absolute; top: 0; left: 0; right: 0; height: 130px; background: var(--grad); opacity: .9; }
.card-page__avatar {
  width: 86px; height: 86px; border-radius: 50%; z-index: 2; margin-top: 30px;
  background: #16100c; border: 3px solid #16100c; box-shadow: 0 0 0 1px rgba(255,255,255,.12);
  display: grid; place-items: center; color: var(--copper-200);
}
.card-page__avatar svg { width: 44px; height: 44px; }
.card-page__role { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: var(--copper-200); margin-top: 14px; font-weight: 600; }
.card-page__name { font-size: 1.3rem; font-weight: 700; margin-top: 4px; }
.card-page__verify { display: inline-flex; align-items: center; gap: 5px; font-size: .66rem; color: var(--zinc-400); margin-top: 8px; }
.card-page__verify svg { width: 13px; height: 13px; color: var(--copper-300); }
.card-page__links { width: 100%; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.page-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; border-radius: 14px; font-size: .82rem; font-weight: 600;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: var(--white);
  transition: transform .25s, background .25s;
}
.page-btn--primary { background: var(--copper-300); color: #1a0d04; border-color: transparent; }
.page-btn [class^="ic-"] { width: 16px; height: 16px; opacity: .8; }
.ic-cal::before{content:"📅"} .ic-wa::before{content:"💬"} .ic-globe::before{content:"🌐"} .ic-pin::before{content:"📍"}

.float-badge {
  position: absolute; display: flex; align-items: center; gap: 10px; z-index: 5;
  padding: 11px 15px; border-radius: 16px;
  background: rgba(16,11,8,.85); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.float-badge strong { display: block; font-size: .92rem; font-family: "Sora", sans-serif; }
.float-badge small { display: block; font-size: .66rem; color: var(--zinc-400); }
.float-badge__icon { font-size: 1.1rem; }
.float-badge--speed { top: 14%; left: -6%; animation: floaty 5s ease-in-out infinite .5s; }
.float-badge--lgpd { bottom: 16%; right: -4%; animation: floaty 5.5s ease-in-out infinite 1s; }

/* marquee */
.marquee { margin-top: 90px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); overflow: hidden; }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track span { font-family: "Sora", sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--zinc-500); white-space: nowrap; display: flex; align-items: center; gap: 56px; }
.marquee__track span::before { content: "✦"; color: var(--copper-400); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================== SECTIONS ===================== */
.section { padding: clamp(80px, 12vw, 150px) 0; position: relative; }
.section--alt { background: rgba(255,255,255,.012); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.section__head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.eyebrow { display: inline-block; font-size: .76rem; text-transform: uppercase; letter-spacing: .18em; color: var(--copper-300); font-weight: 700; margin-bottom: 16px; }
.section__title { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 18px; }
.section__lede { font-size: 1.08rem; color: var(--zinc-400); }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--r-lg);
  padding: 34px 30px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.feature::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(217,128,70,.16), transparent 45%);
  transition: opacity .4s;
}
.feature:hover { border-color: var(--card-brd-hi); background: rgba(255,255,255,.04); }
.feature:hover::before { opacity: 1; }
.feature__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem;
  background: rgba(217,128,70,.1); border: 1px solid rgba(217,128,70,.22); margin-bottom: 22px;
}
.feature h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.feature p { color: var(--zinc-400); font-size: .96rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 940px; margin: 0 auto; counter-reset: step; }
.step {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--r-lg); padding: 30px 28px;
  transition: transform .4s var(--ease), border-color .4s;
}
.step:hover { border-color: var(--card-brd-hi); transform: translateY(-4px); }
.step__num {
  font-family: "Sora", sans-serif; font-size: 1.4rem; font-weight: 800; flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad); color: #1a0d04;
}
.step__body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step__body p { color: var(--zinc-400); font-size: .95rem; }

.banner {
  margin-top: 50px; text-align: center; padding: 54px 30px; border-radius: var(--r-lg);
  background: radial-gradient(120% 140% at 50% 0%, rgba(217,128,70,.14), transparent 60%);
  border: 1px solid rgba(217,128,70,.2);
}
.banner h3 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.banner p { color: var(--zinc-400); max-width: 560px; margin: 0 auto; }

/* ===================== CLIENTES — CAROUSEL ===================== */
.carousel { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 4vw, 44px); }

.cm-phone {
  position: relative; flex: none; width: 300px; height: 620px; border-radius: 50px;
  background: linear-gradient(160deg, #1c1714, #0b0807);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 44px 90px rgba(0,0,0,.6), inset 0 1px 1px rgba(255,255,255,.08);
  padding: 13px; animation: floaty 6s ease-in-out infinite;
}
.cm-island {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%); z-index: 4;
  width: 96px; height: 26px; background: #050403; border-radius: 999px;
}
.cm-screen { position: relative; width: 100%; height: 100%; border-radius: 38px; overflow: hidden; background: #0b0807; }

.cm-track { display: flex; height: 100%; will-change: transform; transition: transform .7s var(--ease); }
.cm-slide { position: relative; flex: 0 0 100%; height: 100%; overflow: hidden; }
.cm-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.cm-slide.is-active img { animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }

.cm-ph {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 26px;
  color: var(--zinc-400);
  background: radial-gradient(120% 80% at 50% 0%, rgba(217,128,70,.14), #100b08);
}
.cm-ph::before {
  content: ""; position: absolute; inset: 16px; border: 2px dashed rgba(217,128,70,.28); border-radius: 26px;
}
.cm-ph__icon {
  width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; color: var(--copper-200);
  background: rgba(217,128,70,.1); border: 1px solid rgba(217,128,70,.25);
}
.cm-ph__icon svg { width: 32px; height: 32px; }
.cm-ph strong { font-family: "Sora", sans-serif; font-size: 1.05rem; color: var(--white); font-weight: 600; }
.cm-ph small { font-size: .78rem; color: var(--zinc-500); letter-spacing: .03em; }

.cm-arrow {
  flex: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: var(--white);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px);
  transition: background .3s, border-color .3s, transform .3s, color .3s;
}
.cm-arrow svg { width: 22px; height: 22px; }
.cm-arrow:hover { background: rgba(217,128,70,.16); border-color: var(--card-brd-hi); color: var(--copper-100); transform: scale(1.08); }
.cm-arrow:active { transform: scale(.96); }

.cm-dots { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 34px; }
.cm-dot {
  position: relative; width: 9px; height: 9px; padding: 0; border: 0; cursor: pointer; overflow: hidden;
  border-radius: 999px; background: rgba(255,255,255,.2);
  transition: width .45s var(--ease), background .3s;
}
.cm-dot.is-active { width: 34px; background: rgba(217,128,70,.25); }
.cm-dot__fill { position: absolute; inset: 0; width: 0; border-radius: 999px; background: var(--grad); }

.pf-cta { margin-top: 46px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; text-align: center; }
.pf-cta span { color: var(--zinc-400); font-size: 1.05rem; }

/* ===================== PRICING ===================== */
.toggle { position: relative; display: inline-flex; margin-top: 34px; padding: 5px; gap: 4px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.toggle__opt { position: relative; z-index: 2; border: 0; background: none; color: var(--zinc-400); font-family: "Sora", sans-serif; font-weight: 600; font-size: .9rem; padding: 10px 22px; border-radius: 999px; cursor: pointer; transition: color .3s; display: inline-flex; align-items: center; gap: 8px; }
.toggle__opt.is-active { color: #1a0d04; }
.toggle__save { font-size: .66rem; padding: 3px 8px; border-radius: 999px; background: rgba(217,128,70,.15); color: var(--copper-200); font-weight: 700; }
.toggle__opt.is-active .toggle__save { background: rgba(26,13,4,.18); color: #1a0d04; }
.toggle__pill { position: absolute; z-index: 1; top: 5px; bottom: 5px; left: 5px; border-radius: 999px; background: var(--grad); transition: transform .4s var(--ease), width .4s var(--ease); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan {
  position: relative; background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--r-lg);
  padding: 36px 30px; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.plan:hover { transform: translateY(-6px); border-color: var(--card-brd-hi); }
.plan--popular {
  border-color: rgba(217,128,70,.5);
  background: linear-gradient(180deg, rgba(217,128,70,.08), rgba(255,255,255,.02));
  box-shadow: 0 30px 70px rgba(217,128,70,.12);
}
.plan--popular::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(180deg, rgba(217,128,70,.6), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #1a0d04; font-family: "Sora", sans-serif; font-weight: 700;
  font-size: .72rem; padding: 6px 16px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-glow);
}
.plan__head h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.plan__head p { color: var(--zinc-400); font-size: .9rem; min-height: 40px; }
.plan__price { display: flex; align-items: flex-start; gap: 3px; margin: 22px 0 4px; }
.plan__currency { font-size: 1.2rem; font-weight: 600; color: var(--zinc-400); margin-top: 8px; }
.plan__amount { font-family: "Sora", sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1; }
.plan__per { color: var(--zinc-400); margin-top: auto; margin-bottom: 8px; font-size: .95rem; }
.plan__setup { font-size: .82rem; color: var(--zinc-500); margin-bottom: 24px; }
.plan .btn { margin-bottom: 26px; }
.plan__feats { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.plan__feats li { position: relative; padding-left: 30px; font-size: .92rem; color: var(--zinc-300); }
.plan__feats li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%;
  background: rgba(217,128,70,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d98046' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5 11-11'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.plan__feats li.is-highlight {
  color: var(--white); font-weight: 500;
  padding: 12px 12px 12px 40px; margin-left: -12px; border-radius: 12px;
  background: rgba(217,128,70,.1); border: 1px solid rgba(217,128,70,.28);
}
.plan__feats li.is-highlight::before { left: 12px; top: 13px; background-color: var(--copper-300); }
.plan__feats li.is-highlight::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a0d04' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5 11-11'/%3E%3C/svg%3E"); }
.plan__feats li.is-highlight strong { color: var(--copper-100); font-weight: 700; }

.fineprint { text-align: center; color: var(--zinc-500); font-size: .85rem; margin-top: 36px; }

/* ===================== CTA ===================== */
.cta { padding: clamp(80px, 12vw, 140px) 0; }
.cta__inner {
  text-align: center; padding: clamp(50px, 8vw, 90px) 30px; border-radius: 34px;
  background: radial-gradient(130% 130% at 50% 0%, rgba(217,128,70,.16), rgba(255,255,255,.02) 55%);
  border: 1px solid rgba(217,128,70,.22); position: relative; overflow: hidden;
}
.cta__inner h2 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.08; margin-bottom: 18px; }
.cta__inner p { color: var(--zinc-400); font-size: 1.1rem; max-width: 520px; margin: 0 auto 34px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid rgba(255,255,255,.06); padding: 50px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer__note { color: var(--zinc-400); font-size: .95rem; }
.footer__copy { color: var(--zinc-500); font-size: .82rem; }

/* ===================== REVEAL ANIMATIONS ===================== */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
.hero__title .line { opacity: 0; transform: translateY(40px); }
.hero__title .line.is-in { animation: lineUp .9s var(--ease) forwards; }
.hero__title .line:nth-child(2).is-in { animation-delay: .12s; }
@keyframes lineUp { to { opacity: 1; transform: none; } }
/* stagger children in grids */
.features [data-reveal]:nth-child(2){transition-delay:.08s}
.features [data-reveal]:nth-child(3){transition-delay:.16s}
.features [data-reveal]:nth-child(4){transition-delay:.06s}
.features [data-reveal]:nth-child(5){transition-delay:.14s}
.features [data-reveal]:nth-child(6){transition-delay:.22s}
.plans [data-reveal]:nth-child(2){transition-delay:.1s}
.plans [data-reveal]:nth-child(3){transition-delay:.2s}
.steps [data-reveal]:nth-child(2){transition-delay:.08s}
.steps [data-reveal]:nth-child(3){transition-delay:.16s}
.steps [data-reveal]:nth-child(4){transition-delay:.24s}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 60px; text-align: center; padding-top: 30px; }
  .hero__copy { max-width: 100%; margin: 0 auto; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .pill { margin-top: 10px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan--popular { order: -1; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero { padding-top: 110px; }
  .features { grid-template-columns: 1fr; }
  .pf-cta { flex-direction: column; gap: 16px; }
  .carousel { gap: 8px; }
  .cm-phone { width: min(74vw, 280px); height: auto; aspect-ratio: 300 / 620; }
  .cm-arrow { width: 42px; height: 42px; }
  .cm-arrow svg { width: 18px; height: 18px; }
  .hero__stats { gap: 16px; }
  .stat__sep { height: 34px; }
  .hero__actions .btn { flex: 1; }
  .phone { width: 260px; height: 520px; }
  .float-badge--speed { left: -2%; }
  .float-badge--lgpd { right: -2%; }
  .section__head { margin-bottom: 44px; }
  .toggle__save { display: none; }
}
@media (max-width: 380px) {
  .float-badge { transform: scale(.85); }
}
