:root {
  --green: #25d366;
  --green-dark: #16a34a;
  --blue: #2563eb;
  --blue-dark: #1e40af;
  --cyan: #0084ff;
  --ink: #172033;
  --text: #4b5563;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --white: #fff;
  --ease: cubic-bezier(.23, 1, .32, 1);
  --shadow: 0 12px 35px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  color: white;
  background: var(--blue-dark);
  border-radius: 8px;
}
.skip-link:focus { top: 10px; }

#site-header-root {
  min-height: 66px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(229, 231, 235, .72);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: slideDown .75s var(--ease) both;
  transition: box-shadow .3s var(--ease);
}

.site-header.scrolled { box-shadow: 0 8px 30px rgba(15, 23, 42, .07); }

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 1.22rem;
  font-weight: 500;
  white-space: nowrap;
}

.brand strong { font-weight: 800; }

.brand-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.brand-text strong { color: var(--blue); font-weight: 800; }

.brand-icon {
  width: 39px;
  height: 39px;
  display: inline-flex;
  filter: drop-shadow(0 5px 8px rgba(37, 211, 102, .22));
}

.brand-icon svg {
  width: 100%;
  fill: var(--green);
  animation: logoSpin 2s linear infinite;
}

.brand-icon .brand-check {
  fill: none;
  stroke: white;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
  flex-wrap: nowrap;
}

.main-nav a {
  position: relative;
  padding: 25px 0;
  color: #374151;
  font-size: .87rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 20px;
  padding: .75rem 1.25rem;
  border: 1px solid #2c47685d;
  border-radius: 50px;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.97); }
.btn img { width: 19px; height: 19px; }
.whatsapp-svg { width: 19px; height: 19px; flex: 0 0 auto; fill: currentColor; }

.btn-restricted {
  color: var(--blue-dark);
  background: #fff;
  border-color: #19a9ff;
}
.btn-restricted:hover { background: #eff6ff; box-shadow: 0 8px 20px rgba(37, 99, 235, .12); }

.btn-whatsapp {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(37, 211, 102, .24);
}
.btn-whatsapp:hover { background: #20c45d; box-shadow: 0 15px 28px rgba(37, 211, 102, .32); }

.btn-large { min-height: 52px; padding: .875rem 1.65rem; font-size: .91rem; }

.btn-outline {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, .5);
  border-color: #bfdbfe;
}
.btn-outline:hover { background: white; box-shadow: 0 12px 25px rgba(30, 64, 175, .1); }

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}
.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s;
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: 132px 0 72px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e8f5ff 48%, #f5f7fb 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: radial-gradient(#60a5fa 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to right, black, transparent 53%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.orb-one {
  width: 480px;
  height: 480px;
  top: -260px;
  right: 6%;
  background: rgba(96, 165, 250, .16);
}
.orb-two {
  width: 320px;
  height: 320px;
  left: -190px;
  bottom: -100px;
  background: rgba(37, 211, 102, .09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  align-items: center;
  gap: 80px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow {
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .13);
}

.hero-kicker {
  margin: 27px 0 3px;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-tagline {
  margin: 22px 0 8px;
  color: var(--blue);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.5;
}

.segment-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.business-content .segment-link { display: block; width: fit-content; }
.business-content .segment-link + .segment-link { margin-top: 6px; }
.segment-link:hover { text-decoration: underline; }

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  width: 100%;
  margin-top: 10px;
}

.site-footer-nav a {
  color: inherit;
  font-size: .78rem;
  opacity: .85;
}

.site-footer-nav a:hover { opacity: 1; text-decoration: underline; }

.aeo-box {
  padding: 20px 22px;
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: rgba(37, 99, 235, .06);
  color: var(--text);
  font-size: .92rem;
  line-height: 1.7;
}

.aeo-box strong { color: var(--ink); }

.hero h1 {
  margin: 0;
  color: #101827;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.12;
}
.hero h1 span { color: var(--blue); }

.hero-description {
  max-width: 610px;
  margin: 27px 0 31px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}
.hero-description strong { color: var(--ink); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.stats {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 44px;
}
.stats .stat-item,
.stats div {
  min-width: 130px;
  padding: 0 28px;
  border-right: 1px solid #cbd5e1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.stats .stat-item:first-child,
.stats div:first-child { padding-left: 0; }
.stats .stat-item:last-child,
.stats div:last-child { border: 0; }
.stats strong {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: var(--blue-dark);
  font-size: 1.55rem;
  line-height: 1;
}
.stats strong i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  display: block;
  border-radius: 50%;
  background: currentColor;
}
.stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.7em;
}

.phone-wrap {
  position: relative;
  width: 355px;
  justify-self: center;
}

.phone-glow {
  position: absolute;
  inset: 12% -22%;
  background: radial-gradient(circle, rgba(37, 211, 102, .24), rgba(59, 130, 246, .09) 45%, transparent 68%);
  filter: blur(14px);
  animation: phoneGlow 4s var(--ease) infinite alternate;
}

.phone {
  position: relative;
  z-index: 1;
  height: 670px;
  display: flex;
  flex-direction: column;
  padding: 13px 9px 10px;
  border: 7px solid #111827;
  border-radius: 44px;
  background: #111827;
  box-shadow: 0 35px 70px rgba(15, 23, 42, .28), inset 0 0 0 1px #374151;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 50%;
  width: 118px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
}
.phone-notch span { width: 42px; height: 4px; background: #374151; border-radius: 10px; }

.chat-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 10px 7px;
  color: white;
  background: #075e54;
  border-radius: 29px 29px 0 0;
}
.chat-header button { padding: 0; color: white; background: none; border: 0; font-size: 28px; line-height: 1; }
.chat-avatar {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #e5f9ed;
  border-radius: 50%;
  font-size: 20px;
}
.chat-contact { display: flex; flex: 1; flex-direction: column; line-height: 1.3; }
.chat-contact strong { font-size: .78rem; }
.chat-contact span { color: #d1fae5; font-size: .63rem; }
.chat-contact i { width: 6px; height: 6px; display: inline-block; background: #4ade80; border-radius: 50%; }
.chat-options { font-size: 21px; }

.chat-body {
  position: relative;
  flex: 1;
  padding: 13px 9px 9px;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(95, 89, 82, .1) .8px, transparent .8px);
  background-size: 12px 12px;
  overflow-y: auto;
  scrollbar-width: none;
}
.chat-body::-webkit-scrollbar { display: none; }

.chat-day {
  width: max-content;
  display: block;
  margin: 0 auto 9px;
  padding: 3px 10px;
  color: #67747d;
  background: #e6f2f5;
  border-radius: 7px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
  font-size: .55rem;
  font-weight: 600;
}

.message {
  position: relative;
  width: fit-content;
  max-width: 87%;
  margin-bottom: 7px;
  padding: 7px 8px 15px;
  color: #202c33;
  border-radius: 7px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .09);
  font-size: .63rem;
  line-height: 1.38;
  opacity: 0;
  transform: translateY(10px);
  animation: messageSlideIn .4s cubic-bezier(.23, 1, .32, 1) forwards;
}
.message time {
  position: absolute;
  right: 6px;
  bottom: 3px;
  color: #667781;
  font-size: .49rem;
}
.message time span { color: #53bdeb; font-weight: 700; }
.user-message { margin-left: auto; padding-right: 54px; background: #d9fdd3; }
.bot-message { padding-right: 36px; background: white; }
.small-message { min-width: 58px; }

.wa-hint {
  display: block;
  margin-top: 4px;
  color: #8696a0;
  font-size: .58rem;
  line-height: 1.35;
}
.wa-options {
  display: flex;
  flex-direction: column;
  margin: 8px -8px -15px;
  border-top: 1px solid rgba(134, 150, 160, .22);
}
.wa-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #00a884;
  border-bottom: 1px solid rgba(134, 150, 160, .18);
  font-size: .62rem;
  font-weight: 600;
  line-height: 1.25;
}
.wa-option:last-child { border-bottom: 0; }
.wa-option i {
  flex-shrink: 0;
  color: #00a884;
  font-style: normal;
  font-size: .72rem;
}
.message.has-options { max-width: 94%; padding-bottom: 0; }
.message.has-options time {
  position: static;
  display: block;
  margin: -2px 10px 6px auto;
  width: fit-content;
  text-align: right;
}
.wa-reply {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0 0 5px;
  padding: 5px 7px;
  border-left: 3px solid #06cf9c;
  border-radius: 5px;
  background: rgba(0, 0, 0, .12);
}
.wa-reply b {
  color: #06cf9c;
  font-size: .55rem;
  font-weight: 700;
}
.wa-reply span {
  overflow: hidden;
  color: #aebac1;
  font-size: .55rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wa-choice { display: block; font-weight: 700; }
.wa-confirm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wa-confirm i {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 4px;
  font-style: normal;
  font-size: .55rem;
  font-weight: 800;
}

.chat-compose {
  min-height: 47px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  color: #6b7c85;
  background: #efeae2;
}
.chat-compose div {
  flex: 1;
  padding: 7px 11px;
  background: white;
  border-radius: 20px;
  font-size: .63rem;
}
.chat-compose b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: white;
  background: #00a884;
  border-radius: 50%;
  font-size: 8px;
}
.chat-encryption {
  padding: 3px;
  color: #9ca3af;
  background: #101827;
  text-align: center;
  font-size: .53rem;
}

.section { padding: 104px 0; }
.how { background: white; }
.business { background: #f8fbff; }
.features { background: white; }

.section-heading {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-label { margin-bottom: 12px; }
.section-heading h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2rem, 3.7vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1.16;
}
.section-heading h2 span { color: var(--blue); }
.section-heading p { max-width: 670px; margin: auto; color: var(--muted); font-size: .95rem; }

.steps,
.business-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.step-card,
.feature-card {
  position: relative;
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .035);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.step-card:hover,
.feature-card:hover {
  border-color: #bfdbfe;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #e5e7eb;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}
.step-icon,
.feature-icon {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  color: var(--blue);
  background: #eff6ff;
  border-radius: 14px;
  font-size: 1.35rem;
}
.step-card:nth-child(3) .step-icon { color: white; background: var(--green); font-weight: 800; }

.step-card h3,
.feature-card h3,
.business-content h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.45;
}
.step-card p,
.feature-card p,
.business-content p {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.75;
}

.business-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.business-card:hover { box-shadow: var(--shadow); transform: translateY(-8px); }
.business-card:hover .business-image { transform: scale(1.035); }

.business-image {
  height: 222px;
  position: relative;
  background-position: center;
  background-size: cover;
  transition: transform .65s var(--ease);
}
.business-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .38), transparent 54%);
}
.business-image span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  padding: 6px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, .93);
  border-radius: 7px;
  font-size: .69rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}
.beauty { background-image: url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=800&q=82"); }
.health { background-image: url("https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?auto=format&fit=crop&w=800&q=82"); }
.services { background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=800&q=82"); }
.business-content { padding: 25px 25px 28px; }
.business-content h3 { font-size: 1.08rem; }

.features-grid { margin-bottom: 76px; }
.feature-card { padding: 31px 28px; }
.feature-icon.green { color: #15803d; background: #dcfce7; }
.feature-icon.blue { color: #1d4ed8; background: #dbeafe; }
.feature-icon.cyan { color: #0277bd; background: #e0f2fe; }

.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.13fr .87fr;
  gap: 70px;
  padding: 57px 62px;
  color: white;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 58%, #0084ff 100%);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(30, 64, 175, .22);
  overflow: hidden;
}
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}
.cta::before { width: 350px; height: 350px; right: -180px; top: -210px; }
.cta::after { width: 230px; height: 230px; left: -120px; bottom: -160px; }
.cta-copy,
.benefit-list { position: relative; z-index: 1; }
.cta-label { font-size: .66rem; font-weight: 800; letter-spacing: .12em; opacity: .75; }
.cta h2 {
  max-width: 580px;
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  letter-spacing: -.04em;
  line-height: 1.14;
}
.cta-copy > p { margin: 0 0 25px; color: #dbeafe; font-size: .88rem; }
.cta .btn-whatsapp { margin-right: 12px; }
.cta-phone { display: inline-block; color: #dbeafe; font-size: .7rem; }
.cta-phone strong { color: white; }

.benefit-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
}
.benefit-list span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #15803d;
  background: #bbf7d0;
  border-radius: 50%;
  font-weight: 900;
}

footer { padding: 27px 0; border-top: 1px solid var(--line); background: #fbfcfe; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { font-size: .95rem; }
.footer-brand .brand-icon { width: 31px; height: 31px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: .71rem; }

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .8s var(--ease) var(--delay, 0s), transform .8s var(--ease) var(--delay, 0s);
}
.reveal { transform: translateY(20px); }
.reveal-left { transform: translateX(-35px); }
.reveal-right { transform: translateX(35px); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0); }

/* Segunda e terceira seções: entrada da esquerda para a direita */
#como-funciona .reveal,
#areas .reveal {
  opacity: 0;
  transform: translateX(-55px);
  transition:
    opacity .8s var(--ease) var(--delay, 0s),
    transform .8s var(--ease) var(--delay, 0s);
}

#como-funciona .reveal.visible,
#areas .reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Penúltimos e últimos elementos: entrada frontal */
#recursos .reveal,
.faq-section .reveal,
.final-conversion .reveal {
  opacity: 0;
  transform: translateY(12px) scale(.9);
  filter: blur(5px);
  transition:
    opacity .85s var(--ease) var(--delay, 0s),
    transform .85s var(--ease) var(--delay, 0s),
    filter .85s var(--ease) var(--delay, 0s);
}

#recursos .reveal.visible,
.faq-section .reveal.visible,
.final-conversion .reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Entrada escalonada dos elementos da primeira seção */
.hero-top .eyebrow,
.hero-top .hero-kicker,
.hero-top h1,
.hero-top .hero-description,
.hero-copy .hero-actions,
.hero-copy .stats,
.hero .phone-wrap {
  opacity: 0;
  will-change: opacity, transform;
}

.hero-top .eyebrow {
  animation: heroFadeUp .7s var(--ease) .12s forwards;
}

.hero-top .hero-kicker {
  animation: heroFadeUp .7s var(--ease) .27s forwards;
}

.hero-top h1 {
  animation: heroFadeUp .85s var(--ease) .42s forwards;
}

.hero-top .hero-description {
  animation: heroFadeUp .75s var(--ease) .6s forwards;
}

.hero-copy .hero-actions {
  transform: translateX(-28px);
  animation: heroFadeLeft .8s var(--ease) .78s forwards;
}

.hero-copy .stats {
  animation: heroFadeUp .75s var(--ease) .96s forwards;
}

.hero .phone-wrap {
  transform: translateX(42px) scale(.97);
  animation: heroPhoneIn 1s var(--ease) .68s forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroPhoneIn {
  from { opacity: 0; transform: translateX(42px) scale(.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes messageSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes logoSpin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
@keyframes phoneGlow {
  from { opacity: .6; transform: scale(.96); }
  to { opacity: 1; transform: scale(1.06); }
}

@media (max-width: 1180px) {
  .main-nav { gap: 12px; }
  .main-nav a { font-size: .76rem; padding-inline: 2px; }
  .btn-top { display: none; }
}

@media (max-width: 1020px) {
  .main-nav { gap: 10px; }
  .main-nav a { font-size: .72rem; }
  .hero-grid { gap: 40px; }
  .cta { gap: 35px; padding: 50px 42px; }
}

@media (max-width: 920px) {
  .container { width: min(100% - 32px, 720px); }
  .navbar { min-height: 70px; }
  .menu-toggle { display: block; margin-left: auto; order: 2; }
  .header-actions { order: 1; margin-left: auto; }
  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 30px rgba(15, 23, 42, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .3s var(--ease);
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 14px; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .main-nav a::after { display: none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { text-align: center; }
  .hero-description { margin-inline: auto; }
  .hero-actions, .stats { justify-content: center; }
  .phone-wrap { width: 345px; }
  .steps, .business-grid, .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps article:last-child, .business-grid article:last-child, .features-grid article:last-child { grid-column: 1 / -1; }
  .cta { grid-template-columns: 1fr; }
  .footer-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .container { width: min(100% - 28px, 500px); }
  .btn-restricted { display: none; }
  .navbar { gap: 10px; }
  .hero { min-height: auto; padding: 116px 0 65px; }
  .hero::before { mask-image: linear-gradient(to bottom, black, transparent 50%); }
  .hero h1 { font-size: clamp(2.1rem, 7.5vw, 2.85rem); }
  .hero-kicker { margin-top: 23px; }
  .hero-description { font-size: .91rem; }
  .hero-actions { flex-direction: column; flex-wrap: wrap; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .stats { width: 100%; max-width: 100%; margin-top: 37px; }
  .stats .stat-item,
  .stats div { min-width: 0; flex: 1 1 0; padding: 0 6px; }
  .stats strong { font-size: clamp(.95rem, 4.2vw, 1.15rem); }
  .stats span { font-size: .55rem; }
  .phone-wrap { width: min(100%, 338px); max-width: 100%; overflow: hidden; }
  .phone { height: 650px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .steps, .business-grid, .features-grid { grid-template-columns: 1fr; }
  .steps article:last-child, .business-grid article:last-child, .features-grid article:last-child { grid-column: auto; }
  .step-card, .feature-card { padding: 27px 24px; }
  .business-image { height: 210px; }
  .features-grid { margin-bottom: 52px; }
  .cta { gap: 35px; padding: 39px 23px; border-radius: 18px; text-align: center; }
  .cta .btn-whatsapp { width: 100%; margin: 0 0 12px; }
  .cta-phone { display: block; }
  .benefit-list { text-align: left; }
  .footer-inner { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .message {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .message:not(.show) {
    position: relative;
    left: auto;
    height: auto;
    margin-bottom: 7px;
    padding: 7px 8px 15px;
    visibility: visible;
  }
}

/* Tema escuro inspirado na referência visual */
:root {
  --green: #159447;
  --green-dark: #0d7c3a;
  --blue: #16a8ff;
  --blue-dark: #1686ff;
  --cyan: #02d6c5;
  --ink: #f7fbff;
  --text: #c6d0df;
  --muted: #718096;
  --line: #172a43;
  --soft: #071123;
  --white: #030a18;
  --shadow: 0 20px 44px rgba(0, 0, 0, .34);
}

body {
  color: var(--ink);
  background-color: #030a18;
  background-image:
    radial-gradient(ellipse 90% 60% at 8% -5%, rgba(22, 168, 255, .16), transparent 52%),
    radial-gradient(ellipse 70% 50% at 92% 8%, rgba(2, 214, 197, .12), transparent 48%),
    radial-gradient(ellipse 50% 40% at 70% 85%, rgba(21, 148, 71, .08), transparent 50%),
    linear-gradient(rgba(23, 54, 88, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 54, 88, .1) 1px, transparent 1px);
  background-size: auto, auto, auto, 68px 68px, 68px 68px;
  background-attachment: fixed;
}

.site-header {
  border-color: rgba(36, 57, 83, .75);
  background: rgba(3, 9, 22, .9);
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(0, 0, 0, .34); }
.navbar { min-height: 72px; }
.brand {
  width: auto;
  max-width: 280px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #fff;
}
.brand-svg,
.brand svg.brand-svg {
  width: auto;
  height: 48px;
  max-width: 220px;
  display: block;
  flex: 0 0 auto;
  color: inherit;
}
.brand-text strong { color: #16a8ff; }
.main-nav a { padding-block: 21px; color: #718096; }
.main-nav a::after { bottom: 14px; background: #19a9ff; }
.main-nav a:hover, .main-nav a.active { color: #dcecff; }
.btn-restricted {
  color: #d5e4f5;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.btn-restricted:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn-whatsapp {
  border: 1px solid rgba(120, 255, 180, .28);
  background: linear-gradient(145deg, rgba(32, 180, 90, .92), rgba(18, 140, 65, .95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 12px 30px rgba(20, 143, 67, .28);
}
.btn-whatsapp:hover {
  background: linear-gradient(145deg, rgba(40, 200, 100, .95), rgba(22, 160, 75, .98));
  transform: translateY(-3px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 18px 40px rgba(20, 160, 72, .38);
}
.menu-toggle {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.menu-toggle span { background: #dbeafe; }

.hero {
  min-height: 1120px;
  align-items: flex-start;
  padding: 122px 0 90px;
  background:
    radial-gradient(circle at 51% 48%, rgba(0, 211, 194, .14), transparent 30%),
    radial-gradient(circle at 28% 24%, rgba(0, 121, 255, .11), transparent 29%),
    #030a18;
}
.hero::before {
  opacity: .24;
  background-image:
    linear-gradient(rgba(34, 74, 116, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 74, 116, .2) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, transparent 2%, black 28%, black 83%, transparent);
}
.orb-one {
  width: 500px;
  height: 500px;
  top: 280px;
  right: 4%;
  background: rgba(0, 207, 182, .07);
  filter: blur(45px);
}
.orb-two {
  width: 500px;
  height: 500px;
  left: 8%;
  bottom: 50px;
  background: rgba(0, 101, 255, .07);
  filter: blur(45px);
}
.orb-three {
  width: 380px;
  height: 380px;
  top: 12%;
  left: 42%;
  background: rgba(22, 168, 255, .08);
  filter: blur(50px);
  animation: floatOrb 9s ease-in-out infinite alternate;
}
@keyframes floatOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(24px, -18px, 0) scale(1.06); }
}
.hero-shell { position: relative; z-index: 2; }
.hero-top {
  max-width: 820px;
  margin: auto;
  text-align: center;
}
.eyebrow {
  color: #23aaf8;
  background: rgba(9, 31, 57, .72);
  border-color: #12375d;
  box-shadow: inset 0 0 16px rgba(21, 153, 255, .05);
}
.eyebrow-dot { background: #12bc78; box-shadow: 0 0 0 4px rgba(18, 188, 120, .1), 0 0 12px #12bc78; }
.hero-kicker {
  margin-top: 22px;
  color: #24a9f5;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-tagline {
  margin-top: 22px;
  color: #24a9f5;
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-note { color: #536277; }
.segment-link { color: #24a9f5; }
.aeo-box {
  color: #c6d0df;
  background: rgba(22, 168, 255, .08);
  border-color: #16a8ff;
}
.aeo-box strong { color: #e3e9f2; }
.footer-inner { flex-wrap: wrap; }
.footer-inner p { color: #536177; }
.site-footer-nav a { color: #536177; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  letter-spacing: -.04em;
  line-height: 1.12;
  text-shadow: 0 7px 28px rgba(0, 0, 0, .28);
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #eaf6ff 10%, #72c9ff 55%, #0ca8ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-description {
  max-width: 720px;
  margin: 27px auto 0;
  color: #e3e9f2;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.7;
}
.hero-description strong { color: #20a9ff; }
.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  align-items: center;
  gap: 85px;
  margin-top: 72px;
  width: 100%;
  max-width: 100%;
}
.hero-copy { align-self: center; padding-top: 80px; min-width: 0; }
.hero-actions { flex-wrap: wrap; }
.hero-actions .btn { min-width: min(200px, 100%); border-radius: 999px; }
.btn-outline {
  color: #eaf4ff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}
.btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(90, 190, 255, .45);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.btn-glass {
  color: #eaf6ff;
  background: rgba(22, 168, 255, .18);
  border: 1px solid rgba(90, 190, 255, .38);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 10px 28px rgba(22, 168, 255, .16);
}
.btn-glass:hover {
  color: #fff;
  background: rgba(22, 168, 255, .3);
  border-color: rgba(120, 210, 255, .55);
  transform: translateY(-3px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 16px 36px rgba(22, 168, 255, .3);
}
.stats {
  width: 100%;
  max-width: 520px;
  margin-top: 52px;
  padding-top: 27px;
  border-top: 1px solid #172941;
  align-items: flex-start;
  box-sizing: border-box;
}
.stats .stat-item,
.stats div {
  min-width: 0;
  flex: 1 1 0;
  padding: 0 16px;
  border-color: #172941;
  overflow: hidden;
}
.stats strong {
  color: white;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  white-space: nowrap;
}
.stats strong i { color: #12a8ff; background: #12a8ff; }
.stats .stat-item:nth-child(2) strong i,
.stats div:nth-child(2) strong i { color: #13ad70; background: #13ad70; }
.stats .stat-item:nth-child(3) strong i,
.stats div:nth-child(3) strong i { color: #f0bc1c; background: #f0bc1c; }
.stats span { color: #a7b4c4; min-height: 2.7em; }

.phone-wrap { width: 350px; max-width: 100%; overflow: hidden; }
.phone-glow {
  inset: 8% -12%;
  background: radial-gradient(circle, rgba(0, 220, 198, .25), rgba(0, 111, 255, .09) 46%, transparent 69%);
  filter: blur(25px);
}
.phone {
  height: 700px;
  padding: 12px 8px 8px;
  border: 7px solid #202c3f;
  background: #131d2c;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .55), inset 0 0 0 2px #344155;
}
.phone-notch { background: #202c3f; }
.phone-notch span { background: #45536a; }
.chat-header {
  min-height: 68px;
  background: #172536;
  border-bottom: 1px solid #263a50;
}
.chat-avatar { background: #106498; }
.chat-contact span { color: #1dc873; }
.chat-body {
  background-color: #0b141a;
  background-image:
    radial-gradient(rgba(255, 255, 255, .035) .7px, transparent .7px);
  background-size: 14px 14px;
}
.chat-day {
  color: #9b885f;
  background: #172333;
  box-shadow: none;
}
.message {
  color: #e7edf6;
  border: 1px solid rgba(80, 109, 141, .12);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .14);
  font-size: .65rem;
}
.message:not(.show) {
  position: absolute;
  left: -9999px;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}
.message.show {
  position: relative;
  left: auto;
  height: auto;
  margin-bottom: 7px;
  padding: 7px 8px 15px;
  border: 1px solid rgba(80, 109, 141, .12);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .14);
  animation: messageSlideIn .4s var(--ease) forwards;
}
.message time { color: #617086; }
.message time span {
  color: #12abed;
  opacity: .35;
  transition: opacity .35s var(--ease), text-shadow .35s var(--ease);
}
.message.delivered time span { opacity: 1; text-shadow: 0 0 7px rgba(18, 171, 237, .45); }
.user-message { background: #005c4b; }
.bot-message { background: #202c33; }
.message.has-options .wa-options {
  border-top-color: rgba(134, 150, 160, .2);
}
.message.has-options .wa-option {
  color: #00a884;
  border-bottom-color: rgba(134, 150, 160, .16);
}
.wa-hint { color: #8696a0; }
.wa-reply {
  background: rgba(0, 0, 0, .22);
  border-left-color: #25d366;
}
.wa-reply b { color: #25d366; }
.wa-reply span { color: #aebac1; }
.typing-indicator {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 7px;
  padding: 7px 10px;
  color: #a9b5c4;
  background: #182738;
  border-radius: 8px;
  font-size: .6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
}
.typing-indicator.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.typing-indicator span {
  width: 4px;
  height: 4px;
  background: #8290a1;
  border-radius: 50%;
  animation: typingDot .9s infinite alternate;
}
.typing-indicator span:nth-child(2) { animation-delay: .18s; }
.typing-indicator span:nth-child(3) { animation-delay: .36s; }
.chat-compose { color: #59687d; background: #111c2c; border-top: 1px solid #203149; }
.chat-compose div { background: #0b1525; }
.chat-compose b { color: #d7fbe5; background: #14974d; font-size: .75rem; }
.chat-encryption { height: 8px; padding: 0; background: #131d2c; }

.section { padding: 84px 0; }
.how, .business, .features { background: rgba(3, 10, 24, .94); }
.business { background: rgba(4, 12, 27, .97); }
.section-label { color: #1ea9fa; letter-spacing: .14em; }
.section-heading { margin-bottom: 52px; }
.section-heading h2 { color: #fff; font-size: clamp(2rem, 3vw, 2.8rem); }
.section-heading h2 span { color: inherit; }
.section-heading p { color: #617088; }
.steps, .business-grid, .features-grid { gap: 28px; }
.step-card, .feature-card, .business-card {
  border-color: #1c304a;
  background: linear-gradient(145deg, #081426, #071121);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .018);
}
.step-card { min-height: 275px; padding: 34px 30px; }
.step-card:hover, .feature-card:hover, .business-card:hover { border-color: #176aa8; box-shadow: 0 18px 40px rgba(0, 0, 0, .35); }
.step-number { top: 28px; left: 30px; right: auto; color: #17243a; }
.step-icon, .feature-icon { margin-left: auto; background: #122549; color: #58a6ff; }
.step-card:nth-child(3) .step-icon { background: #0acda5; }
.step-card:first-child { border-bottom-color: #3975ff; }
.step-card:first-child h3 { color: #1cacff; }
.step-card h3, .feature-card h3, .business-content h3 { color: #fff; font-size: 1.04rem; }
.step-card p, .feature-card p, .business-content p { color: #65748b; }
.business-card { border-radius: 19px; }
.business-image { height: 215px; filter: saturate(.75) contrast(1.04); }
.business-image::after { background: linear-gradient(to top, rgba(5, 13, 29, .88), transparent 58%); }
.business-image span {
  top: 14px;
  bottom: auto;
  color: #39b4ff;
  background: rgba(5, 20, 38, .88);
  border: 1px solid #164c76;
  box-shadow: none;
}
.business-content { padding: 24px 25px 30px; }
.feature-card { min-height: 235px; }
.feature-icon.green { color: #1dd99c; background: #07352f; }
.feature-icon.blue { color: #5a9fff; background: #10264a; }
.feature-icon.cyan { color: #2cb8ff; background: #08273e; }

.cta {
  color: white;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: 65px;
  background: linear-gradient(115deg, #09172b, #071224);
  border: 1px solid #1b304b;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .3);
}
.cta::before {
  width: auto;
  height: 3px;
  inset: 0 16px auto;
  border: 0;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #169eea, #13cb8c, #168eff);
}
.cta::after { border-color: rgba(24, 157, 226, .08); }
.cta h2 { color: #fff; }
.cta-main > p, .cta-phone { color: #68788f; }
.cta-main > p { margin: 0 0 24px; font-size: .82rem; }
.cta-main, .cta-action { position: relative; z-index: 1; }
.cta-action { display: flex; flex-direction: column; align-items: stretch; gap: 10px; text-align: center; }
.cta-action .btn { width: 100%; margin: 0; border-radius: 999px; }
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}
.benefit-list li { padding: 0; color: #738298; background: transparent; border: 0; font-size: .68rem; }
.benefit-list span { color: #14bf78; background: transparent; border: 1px solid #0d7650; }
footer { border-color: #14253a; background: #030916; }
.footer-inner p { color: #536177; }

@keyframes typingDot {
  from { opacity: .28; transform: translateY(1px); }
  to { opacity: 1; transform: translateY(-2px); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; overflow-x: hidden; }
  .hero-stage { grid-template-columns: 1fr; gap: 60px; width: 100%; max-width: 100%; }
  .hero-copy {
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .hero-actions,
  .stats {
    justify-content: center;
    margin-inline: auto;
    width: 100%;
    max-width: 100%;
  }
  .hero-actions .btn { min-width: 0; }
  .stats .stat-item,
  .stats div { padding: 0 10px; }
  .stats strong { font-size: clamp(1rem, 3.8vw, 1.25rem); }
  .phone-wrap { justify-self: center; width: min(100%, 340px); }
  .orb-one,
  .orb-two { max-width: 100vw; }
  .main-nav { background: rgba(3, 9, 22, .98); }
  .main-nav a { border-color: #172a43; }
  .cta { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand { max-width: 180px; height: 40px; }
  .brand-svg,
  .brand svg.brand-svg { height: 40px; max-width: 180px; }
  .btn-restricted { display: none; }
  .hero { padding-top: 105px; }
  .hero h1 { font-size: clamp(1.95rem, 7vw, 2.55rem); letter-spacing: -.03em; }
  .hero-kicker { font-size: .72rem; letter-spacing: .1em; }
  .hero-description { font-size: .92rem; padding-inline: 2px; }
  .hero-stage { margin-top: 40px; gap: 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .stats {
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
    padding-top: 22px;
  }
  .stats .stat-item,
  .stats div {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 4px;
  }
  .stats strong {
    font-size: clamp(.88rem, 3.6vw, 1.05rem);
    gap: 5px;
  }
  .stats strong i { width: 8px; height: 8px; }
  .stats span {
    font-size: .52rem;
    min-height: 0;
    line-height: 1.3;
  }
  .phone-wrap { width: min(100%, 320px); }
  .phone { height: 640px; }
  .phone-glow { inset: 10% -6%; }
  .section { padding: 70px 0; }
  .benefit-list { grid-template-columns: 1fr; }
}

/* Conteúdo comercial e módulos do produto */
.outcomes,
.health-suite,
.faq-section {
  background: rgba(4, 12, 27, .97);
}

.features,
.differences,
.final-conversion {
  background: rgba(3, 10, 24, .96);
}

.outcomes .section-heading h2 span,
.features .section-heading h2 span,
.differences .section-heading h2 span {
  color: #1ea9fa;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.outcome-card {
  position: relative;
  min-height: 220px;
  padding: 29px 25px;
  border: 1px solid #172d48;
  border-radius: 16px;
  background: linear-gradient(145deg, #08162a, #061121);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.outcome-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1aa8fb, transparent);
  opacity: .45;
}

.outcome-card:hover {
  transform: translateY(-7px);
  border-color: #1a6094;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
}

.outcome-card > strong {
  display: block;
  margin-bottom: 34px;
  color: #1d3b5e;
  font-size: 2rem;
  line-height: 1;
}

.outcome-card h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: .98rem;
}

.outcome-card p {
  margin: 0;
  color: #697a91;
  font-size: .78rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 27px;
  border: 1px solid #192e49;
  border-radius: 17px;
  background: linear-gradient(135deg, #081528, #06101f);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #176aa8;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .32);
}

.product-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #42b9ff;
  background: #0d2742;
  border: 1px solid #16456c;
  border-radius: 14px;
  font-size: 1.25rem;
}

.product-card:nth-child(2n) .product-icon {
  color: #23d39c;
  background: #073128;
  border-color: #0b5845;
}

.product-card h3 {
  margin: 0 0 8px;
  color: #f7fbff;
  font-size: 1rem;
}

.product-card p {
  margin: 0 0 13px;
  color: #687990;
  font-size: .77rem;
  line-height: 1.68;
}

.product-card > div:last-child > span {
  display: inline-block;
  color: #36adf3;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-card > div:last-child > span a {
  color: inherit;
}

.product-card > div:last-child > span a:hover {
  text-decoration: underline;
}

.health-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .88fr);
  align-items: center;
  gap: 78px;
}

.health-copy h2,
.faq-intro h2 {
  margin: 12px 0 17px;
  color: #fff;
  font-size: clamp(2.15rem, 3.5vw, 3.35rem);
  letter-spacing: -.05em;
  line-height: 1.08;
}

.health-copy > p,
.faq-intro > p {
  margin: 0;
  color: #687990;
  font-size: .86rem;
  line-height: 1.75;
}

.health-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 20px;
  padding: 0;
  list-style: none;
}

.health-list li {
  display: flex;
  gap: 11px;
  padding: 15px;
  border: 1px solid #18304d;
  border-radius: 12px;
  background: #071426;
}

.health-list li > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #16cf8f;
  border: 1px solid #106b50;
  border-radius: 50%;
  font-size: .65rem;
}

.health-list strong,
.health-list small {
  display: block;
}

.health-list strong {
  margin-bottom: 3px;
  color: #eaf3ff;
  font-size: .76rem;
}

.health-list small {
  color: #a8b6c8;
  font-size: .66rem;
  line-height: 1.5;
}

.module-note {
  color: #52647c !important;
  font-size: .67rem !important;
}

.health-panel {
  padding: 20px;
  border: 1px solid #1a3858;
  border-radius: 20px;
  background: linear-gradient(145deg, #0a192c, #061120);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .35), 0 0 70px rgba(13, 148, 222, .08);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 15px;
  border-bottom: 1px solid #18304b;
}

.panel-top > span {
  width: 7px;
  height: 7px;
  background: #ff6577;
  border-radius: 50%;
}

.panel-top > span:nth-child(2) { background: #f3bd45; }
.panel-top > span:nth-child(3) { background: #23c785; }
.panel-top b { margin-left: auto; color: #60738b; font-size: .61rem; }

.patient-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 19px 0;
}

.patient-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #dff5ff;
  background: linear-gradient(135deg, #168bd1, #1363b5);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
}

.patient-line > div:nth-child(2) { display: flex; flex: 1; flex-direction: column; }
.patient-line strong { color: #fff; font-size: .79rem; }
.patient-line small { color: #61738b; font-size: .63rem; }
.patient-line > span { padding: 4px 8px; color: #23c785; background: #073428; border-radius: 999px; font-size: .57rem; }

.panel-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 12px;
  padding: 5px;
  background: #05101f;
  border-radius: 9px;
}

.panel-tabs span {
  flex: 1;
  padding: 7px 4px;
  color: #607087;
  border-radius: 6px;
  text-align: center;
  font-size: .59rem;
}

.panel-tabs .active { color: #dff3ff; background: #102a46; }

.record-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 9px;
  padding: 13px;
  border: 1px solid #152d48;
  border-radius: 10px;
  background: #071426;
}

.record-card i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #1eb6f4;
  background: #0c2844;
  border-radius: 8px;
  font-size: .75rem;
  font-style: normal;
}

.record-card div { display: flex; flex-direction: column; }
.record-card strong { color: #dce9f8; font-size: .68rem; }
.record-card small { color: #a8b6c8; font-size: .58rem; }

.comparison {
  max-width: 940px;
  margin: 0 auto 50px;
  border: 1px solid #1b3553;
  border-radius: 18px;
  background: #061224;
  overflow: hidden;
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-head {
  color: #7e90a8;
  background: #09192d;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-head span { padding: 16px 24px; }
.comparison-head span:last-child { color: #32b9fa; border-left: 1px solid #1b3553; }

.comparison-row { border-top: 1px solid #162c47; }
.comparison-row > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 68px;
  padding: 15px 24px;
  color: #718198;
  font-size: .76rem;
}
.comparison-row > div:last-child {
  color: #d5e2f1;
  background: rgba(16, 88, 132, .08);
  border-left: 1px solid #1b3553;
}
.comparison-row i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #c86475;
  border: 1px solid #653242;
  border-radius: 50%;
  font-style: normal;
}
.comparison-row > div:last-child i { color: #1cd192; border-color: #126349; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 25px;
  border: 1px solid #172e49;
  border-radius: 15px;
  background: #071426;
}
.trust-card > span { display: block; margin-bottom: 16px; font-size: 1.25rem; }
.trust-card h3 { margin: 0 0 8px; color: #fff; font-size: .9rem; }
.trust-card p { margin: 0; color: #687990; font-size: .72rem; line-height: 1.65; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 76px;
}

.faq-intro {
  position: sticky;
  top: 105px;
}

.text-link {
  display: inline-flex;
  margin-top: 25px;
  color: #24aff5;
  font-size: .78rem;
  font-weight: 700;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid #19304c;
  border-radius: 12px;
  background: #071426;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 21px;
  color: #e9f2fc;
  font-size: .79rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
  color: #2aaef5;
  font-size: 1rem;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 21px 20px;
  color: #aebccd;
  font-size: .73rem;
  line-height: 1.72;
}

.final-conversion { padding: 56px 0 72px; }
.final-conversion .cta { padding: 56px 52px; }
.final-conversion .cta .section-label { margin-bottom: 12px; }

.section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 8px;
}
.section-cta .btn {
  border-radius: 999px;
  min-width: min(220px, 100%);
}

@media (max-width: 1020px) {
  .outcomes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .health-layout { grid-template-columns: 1fr; gap: 48px; }
  .health-panel { width: min(100%, 620px); margin-inline: auto; }
  .faq-layout { gap: 42px; }
}

@media (max-width: 760px) {
  .product-grid,
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .trust-grid { grid-template-columns: 1fr; }
  .comparison-head,
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-head span:first-child { display: none; }
  .comparison-head span:last-child { border-left: 0; }
  .comparison-row > div:last-child { border-top: 1px dashed #1b3553; border-left: 0; }
}

@media (max-width: 560px) {
  .outcomes-grid,
  .health-list { grid-template-columns: 1fr; }
  .outcome-card { min-height: 0; }
  .product-card {
    grid-template-columns: 46px 1fr;
    gap: 13px;
    padding: 21px 18px;
  }
  .product-icon { width: 44px; height: 44px; }
  .health-panel { padding: 14px; }
  .comparison-row > div { padding: 14px 16px; }
  .final-conversion .cta { padding-block: 40px; }
}

/* O tema visual acompanha automaticamente o navegador/sistema. */
@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --green: #18884a;
    --green-dark: #116d3b;
    --blue: #169ed7;
    --blue-dark: #087cae;
    --cyan: #18b7c8;
    --ink: #0e1728;
    --text: #253247;
    --muted: #657386;
    --line: #dbe5ee;
    --soft: #f4f9fc;
    --white: #fff;
    --shadow: 0 18px 45px rgba(25, 64, 86, .1);
  }

  body {
    color: var(--ink);
    background-color: #fff;
    background-image: none;
  }

  .site-header {
    border-color: rgba(220, 231, 239, .82);
    background: rgba(255, 255, 255, .92);
  }
  .site-header.scrolled { box-shadow: 0 10px 30px rgba(26, 58, 78, .09); }
  .main-nav a { color: #637286; }
  .main-nav a:hover,
  .main-nav a.active { color: #087cae; }
  .btn-restricted {
    color: #2d3b4e;
    background: rgba(255, 255, 255, .86);
    border-color: #cbd9e5;
  }
  .btn-restricted:hover {
    color: #087cae;
    background: #f3f9fc;
    box-shadow: 0 8px 22px rgba(24, 108, 149, .1);
  }
  .menu-toggle { background: #fff; border-color: #d6e1e9; }
  .menu-toggle span { background: #334155; }

  .hero {
    background:
      radial-gradient(circle at 72% 54%, rgba(96, 207, 230, .22), transparent 30%),
      radial-gradient(circle at 27% 30%, rgba(115, 203, 235, .16), transparent 34%),
      linear-gradient(140deg, #f8fbff 0%, #effaff 50%, #eefbfa 100%);
  }
  .hero::before {
    opacity: .2;
    background-image:
      linear-gradient(rgba(91, 174, 203, .14) 1px, transparent 1px),
      linear-gradient(90deg, rgba(91, 174, 203, .14) 1px, transparent 1px);
  }
  .orb-one { background: rgba(65, 203, 205, .11); }
  .orb-two { background: rgba(55, 163, 222, .1); }
  .eyebrow {
    color: #168cb9;
    background: rgba(223, 242, 248, .84);
    border-color: #bfdbe7;
    box-shadow: inset 0 0 16px rgba(21, 153, 255, .04);
  }
  .hero-kicker { color: #20a5cf; }
  .hero h1 {
    color: #0d1728;
    text-shadow: none;
  }
  .hero h1 span {
    background: linear-gradient(100deg, #163b58 5%, #1498cf 56%, #0faab9);
    -webkit-background-clip: text;
    background-clip: text;
  }
  .hero-description { color: #253247; }
  .hero-description strong { color: #078bbd; }
  .btn-outline {
    color: #172033;
    background: rgba(255, 255, 255, .7);
    border-color: #d4e0e8;
    box-shadow: 0 8px 25px rgba(27, 83, 111, .06);
  }
  .btn-outline:hover {
    color: #087cae;
    background: #fff;
    border-color: #b9d3e0;
    box-shadow: 0 12px 28px rgba(25, 92, 126, .12);
  }
  .stats { border-color: #cfdee8; }
  .stats .stat-item,
  .stats div { border-color: #cfdee8; }
  .stats strong { color: #111b2d; }
  .stats span { color: #526176; }

  .phone-glow {
    background: radial-gradient(circle, rgba(62, 202, 182, .23), rgba(58, 151, 214, .1) 46%, transparent 69%);
  }
  .phone {
    border-color: #172132;
    background: #172132;
    box-shadow: 0 32px 75px rgba(30, 70, 91, .22), inset 0 0 0 2px #38485a;
  }
  .phone-notch { background: #172132; }
  .chat-header { background: #087568; border-color: #0a685e; }
  .chat-avatar { background: #e5f9ed; }
  .chat-contact span { color: #d1fae5; }
  .chat-body {
    background-color: #efeae2;
    background-image: radial-gradient(rgba(95, 89, 82, .1) .8px, transparent .8px);
    background-size: 12px 12px;
  }
  .chat-day { color: #67747d; background: #e6f2f5; }
  .message,
  .message.show {
    color: #202c33;
    border-color: rgba(60, 75, 85, .08);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .09);
  }
  .message time { color: #667781; }
  .user-message { background: #d9fdd3; }
  .bot-message,
  .typing-indicator { color: #4d5a62; background: #fff; }
  .wa-hint { color: #667781; }
  .wa-option { color: #027a5c; }
  .wa-option i { color: #027a5c; }
  .wa-reply {
    background: rgba(0, 0, 0, .06);
    border-left-color: #06cf9c;
  }
  .wa-reply b { color: #027a5c; }
  .wa-reply span { color: #667781; }
  .wa-options { border-top-color: rgba(0, 0, 0, .08); }
  .wa-option { border-bottom-color: rgba(0, 0, 0, .06); }
  .chat-compose { color: #6b7c85; background: #efeae2; border-color: #dfd9d1; }
  .chat-compose div { background: #fff; }
  .chat-compose b { color: #fff; background: #00a884; }
  .chat-encryption { background: #172132; }

  .how,
  .features,
  .differences,
  .final-conversion { background: #fff; }
  .business,
  .outcomes,
  .health-suite,
  .faq-section { background: #f5f9fc; }
  .section-heading h2,
  .health-copy h2,
  .faq-intro h2 { color: #111b2d; }
  .section-heading p,
  .health-copy > p,
  .faq-intro > p { color: #657386; }

  .step-card,
  .feature-card,
  .business-card,
  .outcome-card,
  .product-card,
  .trust-card,
  .faq-item,
  .health-list li {
    border-color: #dce6ed;
    background: #fff;
    box-shadow: 0 12px 32px rgba(33, 76, 99, .06);
  }
  .step-card:hover,
  .feature-card:hover,
  .business-card:hover,
  .outcome-card:hover,
  .product-card:hover {
    border-color: #8fc7dd;
    box-shadow: 0 18px 42px rgba(35, 95, 126, .12);
  }
  .step-number { color: #d9e6ee; }
  .step-icon,
  .feature-icon { color: #168fc3; background: #e5f4fb; }
  .step-card:nth-child(3) .step-icon { color: #087d63; background: #d9f5ec; }
  .step-card h3,
  .feature-card h3,
  .business-content h3,
  .outcome-card h3,
  .product-card h3,
  .trust-card h3 { color: #142033; }
  .step-card p,
  .feature-card p,
  .business-content p,
  .outcome-card p,
  .product-card p,
  .trust-card p { color: #657386; }
  .health-list strong { color: #1b293b; }
  .health-list small { color: #6b7b8e; }
  .module-note { color: #657386 !important; }
  .business-image::after { background: linear-gradient(to top, rgba(238, 247, 251, .76), transparent 58%); }
  .business-image span {
    color: #087faf;
    background: rgba(247, 252, 255, .92);
    border-color: #bfdae6;
  }
  .outcome-card > strong { color: #c9dce7; }

  .product-icon {
    color: #168fc3;
    background: #e6f5fb;
    border-color: #bee1ee;
  }
  .product-card:nth-child(2n) .product-icon {
    color: #11855f;
    background: #e1f6ee;
    border-color: #b9e5d4;
  }
  .product-card > div:last-child > span { color: #087faf; }

  .health-panel {
    border-color: #cadde8;
    background: linear-gradient(145deg, #fff, #edf7fb);
    box-shadow: 0 25px 60px rgba(35, 86, 111, .12);
  }
  .panel-top { border-color: #d6e4ec; }
  .panel-top b,
  .patient-line small,
  .record-card small { color: #6b7b8e; }
  .patient-line strong,
  .record-card strong { color: #1b293b; }
  .panel-tabs { background: #eaf2f7; }
  .panel-tabs span { color: #66778b; }
  .panel-tabs .active { color: #087ba9; background: #fff; }
  .record-card {
    border-color: #d6e4ec;
    background: #fff;
  }
  .record-card i { color: #108fbd; background: #e1f3fa; }

  .comparison {
    border-color: #d6e3eb;
    background: #fff;
    box-shadow: 0 14px 36px rgba(31, 77, 101, .07);
  }
  .comparison-head { color: #607187; background: #edf5f9; }
  .comparison-head span:last-child { color: #087faf; border-color: #d6e3eb; }
  .comparison-row { border-color: #e0e9ef; }
  .comparison-row > div { color: #66758a; }
  .comparison-row > div:last-child {
    color: #1d2a3c;
    background: #f3fbfd;
    border-color: #d6e3eb;
  }

  .faq-item summary { color: #172236; }
  .faq-item p { color: #657386; }

  .cta {
    color: #172236;
    background: linear-gradient(115deg, #f3f9fc 0%, #eef7fb 55%, #f5fcfb 100%);
    border: 1px solid #c5d9e4;
    box-shadow: 0 24px 55px rgba(34, 86, 111, .1);
    padding: 52px 48px;
    gap: 48px;
  }
  .final-conversion {
    padding: 56px 0 72px;
    background: #f0f5f9;
  }
  .final-conversion .cta {
    padding: 56px 52px;
  }
  .cta .section-label {
    color: #0a8fc4;
    display: inline-block;
    margin-bottom: 12px;
  }
  .cta h2 {
    color: #111b2d;
    margin: 8px 0 18px;
  }
  .cta-main > p {
    color: #3d4f63;
    margin: 0 0 28px;
    line-height: 1.65;
  }
  .cta-phone {
    color: #3d4f63 !important;
    margin-top: 14px;
    font-size: .78rem;
  }
  .cta-phone strong {
    color: #111b2d !important;
    font-weight: 700;
  }
  .benefit-list {
    gap: 14px 24px;
    margin-top: 8px;
  }
  .benefit-list li {
    color: #3d4f63;
    font-size: .78rem;
  }
  .benefit-list span {
    color: #0d9a62;
    border-color: #8fd4b4;
    background: #e8f8f0;
  }
  .cta-action {
    gap: 14px;
    padding-top: 8px;
  }

  footer {
    color: #3d4f63;
    border-color: #d0dde6;
    background: #eef3f7;
    padding: 36px 0 40px;
  }
  .footer-inner {
    gap: 16px;
  }
  .footer-inner p {
    color: #3d4f63;
  }
  .site-footer-nav a {
    color: #2f445a;
  }
  .site-footer-nav a:hover {
    color: #0a8fc4;
  }

  @media (max-width: 900px) {
    .main-nav { background: rgba(255, 255, 255, .98); }
    .main-nav a { border-color: #dce6ed; }
  }
}
/* =========================================================
   Glassmorphism Premium — i9 Agenda
   Telefone/WhatsApp mock: SEM glass (legibilidade)
   Demais UI: vidro fosco, contraste alto, performance
   ========================================================= */
body.liquid-glass-site {
  --glass-bg: rgba(16, 28, 48, .62);
  --glass-bg-strong: rgba(12, 22, 40, .78);
  --glass-border: rgba(255, 255, 255, .16);
  --glass-text: #c9d4e2;
  --glass-title: #f4f8fc;
  --glass-blur: 18px;
  --glass-radius: 20px;
}

body.liquid-glass-site .site-header {
  border-bottom: 1px solid var(--glass-border);
  background: rgba(6, 14, 28, .55);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
}

body.liquid-glass-site .site-header.scrolled {
  background: rgba(4, 10, 22, .78);
}

body.liquid-glass-site .cta,
body.liquid-glass-site .outcome-card,
body.liquid-glass-site .product-card,
body.liquid-glass-site .step-card,
body.liquid-glass-site .business-card,
body.liquid-glass-site .faq-item,
body.liquid-glass-site .aeo-box,
body.liquid-glass-site .sidebar-card,
body.liquid-glass-site .related-card,
body.liquid-glass-site .stat-item,
body.liquid-glass-site .record-card,
body.liquid-glass-site .health-list li,
body.liquid-glass-site .plan-card,
body.liquid-glass-site .content-main,
body.liquid-glass-site .blog-card,
body.liquid-glass-site .info-table,
body.liquid-glass-site footer {
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .1);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

body.liquid-glass-site .cta {
  background: var(--glass-bg-strong);
  border-radius: 24px;
}

body.liquid-glass-site .content-main {
  padding: 28px;
}

body.liquid-glass-site footer {
  border-radius: 0;
  margin-top: 0;
  background: rgba(4, 10, 22, .55);
}

body.liquid-glass-site .stats span,
body.liquid-glass-site .faq-item p,
body.liquid-glass-site .outcome-card p,
body.liquid-glass-site .product-card p,
body.liquid-glass-site .step-card p,
body.liquid-glass-site .business-content p,
body.liquid-glass-site .related-card p,
body.liquid-glass-site .aeo-box,
body.liquid-glass-site .aeo-box p,
body.liquid-glass-site .health-list small,
body.liquid-glass-site .record-card small,
body.liquid-glass-site .plan-card p,
body.liquid-glass-site .content-main p,
body.liquid-glass-site .content-main li,
body.liquid-glass-site .blog-card p,
body.liquid-glass-site footer p {
  color: var(--glass-text);
}

body.liquid-glass-site .faq-item summary,
body.liquid-glass-site .outcome-card h3,
body.liquid-glass-site .product-card h3,
body.liquid-glass-site .step-card h3,
body.liquid-glass-site .business-content h3,
body.liquid-glass-site .related-card h3,
body.liquid-glass-site .health-list strong,
body.liquid-glass-site .record-card strong,
body.liquid-glass-site .stats strong,
body.liquid-glass-site .plan-card h2,
body.liquid-glass-site .plan-card h3,
body.liquid-glass-site .blog-card h2,
body.liquid-glass-site .blog-card h2 a {
  color: var(--glass-title);
}

body.liquid-glass-site .outcome-card:hover,
body.liquid-glass-site .product-card:hover,
body.liquid-glass-site .related-card:hover,
body.liquid-glass-site .step-card:hover,
body.liquid-glass-site .plan-card:hover,
body.liquid-glass-site .blog-card:hover,
body.liquid-glass-site .business-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 200, 255, .35);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 0 24px rgba(22, 168, 255, .08);
}

/* Telefone: nunca glass */
body.liquid-glass-site .phone,
body.liquid-glass-site .phone *,
body.liquid-glass-site .chat-header,
body.liquid-glass-site .chat-body,
body.liquid-glass-site .chat-compose,
body.liquid-glass-site .bot-message,
body.liquid-glass-site .user-message,
body.liquid-glass-site .typing-indicator {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 900px) {
  body.liquid-glass-site {
    --glass-blur: 12px;
    --glass-radius: 16px;
    background-attachment: scroll;
  }

  body.liquid-glass-site .site-header {
    background: rgba(6, 14, 28, .82);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.liquid-glass-site .outcome-card:hover,
  body.liquid-glass-site .product-card:hover,
  body.liquid-glass-site .step-card:hover,
  body.liquid-glass-site .plan-card:hover,
  body.liquid-glass-site .blog-card:hover,
  body.liquid-glass-site .business-card:hover,
  body.liquid-glass-site .btn-glass:hover,
  body.liquid-glass-site .btn-outline:hover,
  body.liquid-glass-site .btn-whatsapp:hover {
    transform: none;
  }
  .orb-three { animation: none; }
}

@media (prefers-color-scheme: light) {
  body.liquid-glass-site {
    --glass-bg: rgba(255, 255, 255, .78);
    --glass-bg-strong: rgba(255, 255, 255, .92);
    --glass-border: rgba(30, 60, 90, .16);
    --glass-text: #3d4f63;
    --glass-title: #111b2d;
  }

  body.liquid-glass-site .site-header {
    background: rgba(255, 255, 255, .82);
    border-bottom-color: rgba(30, 60, 90, .12);
    box-shadow: 0 8px 28px rgba(26, 58, 78, .08);
  }

  body.liquid-glass-site .main-nav a {
    color: #4a5b70;
  }
  body.liquid-glass-site .main-nav a:hover,
  body.liquid-glass-site .main-nav a.active {
    color: #0d1728;
  }

  body.liquid-glass-site .cta {
    background: rgba(255, 255, 255, .9);
    border-color: rgba(30, 60, 90, .14);
    color: #111b2d;
    padding: 56px 52px;
  }

  body.liquid-glass-site .cta h2,
  body.liquid-glass-site .cta .section-label,
  body.liquid-glass-site .cta-phone,
  body.liquid-glass-site .cta-phone strong,
  body.liquid-glass-site .cta-main > p,
  body.liquid-glass-site .benefit-list li {
    color: inherit;
  }

  body.liquid-glass-site .cta h2 { color: #111b2d; }
  body.liquid-glass-site .cta .section-label { color: #0a8fc4; }
  body.liquid-glass-site .cta-main > p,
  body.liquid-glass-site .benefit-list li,
  body.liquid-glass-site .cta-phone { color: #3d4f63; }
  body.liquid-glass-site .cta-phone strong { color: #111b2d; }

  body.liquid-glass-site .faq-item p,
  body.liquid-glass-site .stats span,
  body.liquid-glass-site .outcome-card p,
  body.liquid-glass-site .product-card p,
  body.liquid-glass-site .step-card p,
  body.liquid-glass-site .health-list small,
  body.liquid-glass-site .record-card small {
    color: #3d4f63;
  }

  body.liquid-glass-site .faq-item summary,
  body.liquid-glass-site .outcome-card h3,
  body.liquid-glass-site .product-card h3,
  body.liquid-glass-site .step-card h3,
  body.liquid-glass-site .stats strong,
  body.liquid-glass-site .health-list strong {
    color: #111b2d;
  }

  body.liquid-glass-site footer {
    background: rgba(238, 243, 247, .92);
    color: #3d4f63;
    padding: 36px 0 40px;
  }

  body.liquid-glass-site .site-footer-nav a {
    color: #2f445a;
  }

  body.liquid-glass-site .btn-outline,
  body.liquid-glass-site .btn-restricted {
    color: #172033;
    background: rgba(255, 255, 255, .85);
    border-color: #c5d5e0;
  }

  body.liquid-glass-site .btn-glass {
    color: #0a6fa0;
    background: rgba(22, 168, 255, .12);
    border-color: rgba(22, 168, 255, .35);
  }
}

/* Modo claro: fundo sempre claro ao rolar (sem flash preto) */
@media (prefers-color-scheme: light) {
  html {
    background-color: #f5f8fb;
  }

  body,
  body.liquid-glass-site {
    color: #0e1728 !important;
    background-color: #f5f8fb !important;
    background-image:
      radial-gradient(ellipse 80% 50% at 10% 0%, rgba(22, 168, 255, .1), transparent 55%),
      radial-gradient(ellipse 60% 40% at 90% 10%, rgba(24, 183, 200, .08), transparent 50%) !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat;
  }

  body.liquid-glass-site .site-header,
  body.liquid-glass-site .site-header.scrolled {
    background: rgba(255, 255, 255, .94) !important;
    border-bottom: 1px solid rgba(30, 60, 90, .1) !important;
    box-shadow: 0 8px 28px rgba(26, 58, 78, .08);
  }

  body.liquid-glass-site .brand {
    color: #0a4678 !important;
  }

  body.liquid-glass-site .main-nav a {
    color: #4a5b70 !important;
  }
  body.liquid-glass-site .main-nav a:hover,
  body.liquid-glass-site .main-nav a.active {
    color: #087cae !important;
  }

  .how,
  .features,
  .differences {
    background: #fff !important;
  }

  .business,
  .outcomes,
  .health-suite,
  .faq-section {
    background: #f0f5f9 !important;
  }

  .final-conversion {
    background: #eaf1f6 !important;
  }

  .hero {
    background:
      radial-gradient(circle at 72% 40%, rgba(62, 202, 182, .12), transparent 32%),
      radial-gradient(circle at 28% 24%, rgba(58, 151, 214, .1), transparent 30%),
      #f7fbfe !important;
  }

  body.liquid-glass-site .cta,
  body.liquid-glass-site .outcome-card,
  body.liquid-glass-site .product-card,
  body.liquid-glass-site .step-card,
  body.liquid-glass-site .business-card,
  body.liquid-glass-site .faq-item,
  body.liquid-glass-site .aeo-box,
  body.liquid-glass-site .stat-item,
  body.liquid-glass-site .record-card,
  body.liquid-glass-site .health-list li,
  body.liquid-glass-site .plan-card {
    background: rgba(255, 255, 255, .92) !important;
    border-color: rgba(30, 60, 90, .12) !important;
  }

  body.liquid-glass-site footer {
    background: #e8eef4 !important;
    color: #3d4f63 !important;
  }

  .section-cta { margin-top: 44px; }

  @media (max-width: 700px) {
    .section-cta {
      flex-direction: column;
      align-items: stretch;
    }
    .section-cta .btn {
      width: 100%;
      min-width: 0;
    }
  }
}

/* Modo claro: sombras suaves (sem sombra preta exagerada) */
@media (prefers-color-scheme: light) {
  :root {
    --shadow: 0 6px 18px rgba(30, 70, 100, .06);
  }

  body.liquid-glass-site .cta,
  body.liquid-glass-site .outcome-card,
  body.liquid-glass-site .product-card,
  body.liquid-glass-site .step-card,
  body.liquid-glass-site .business-card,
  body.liquid-glass-site .faq-item,
  body.liquid-glass-site .aeo-box,
  body.liquid-glass-site .sidebar-card,
  body.liquid-glass-site .related-card,
  body.liquid-glass-site .stat-item,
  body.liquid-glass-site .record-card,
  body.liquid-glass-site .health-list li,
  body.liquid-glass-site .plan-card,
  body.liquid-glass-site .blog-card,
  body.liquid-glass-site .content-main,
  body.liquid-glass-site .info-table,
  .cta,
  .outcome-card,
  .product-card,
  .step-card,
  .feature-card,
  .business-card,
  .faq-item,
  .aeo-box,
  .sidebar-card,
  .related-card,
  .stat-item,
  .record-card,
  .health-list li,
  .plan-card,
  .blog-card,
  .content-main,
  .health-panel,
  .comparison,
  .page-hero-inner {
    box-shadow: 0 4px 14px rgba(30, 70, 100, .05) !important;
  }

  body.liquid-glass-site .cta:hover,
  body.liquid-glass-site .outcome-card:hover,
  body.liquid-glass-site .product-card:hover,
  body.liquid-glass-site .step-card:hover,
  body.liquid-glass-site .business-card:hover,
  body.liquid-glass-site .plan-card:hover,
  body.liquid-glass-site .blog-card:hover,
  body.liquid-glass-site .related-card:hover,
  .outcome-card:hover,
  .product-card:hover,
  .step-card:hover,
  .feature-card:hover,
  .business-card:hover,
  .plan-card:hover,
  .blog-card:hover,
  .related-card:hover {
    box-shadow: 0 8px 22px rgba(30, 70, 100, .08) !important;
  }

  .btn-whatsapp,
  body.liquid-glass-site .btn-whatsapp {
    box-shadow: 0 6px 16px rgba(24, 140, 70, .18) !important;
  }
  .btn-whatsapp:hover,
  body.liquid-glass-site .btn-whatsapp:hover {
    box-shadow: 0 8px 20px rgba(24, 140, 70, .24) !important;
  }

  .btn-glass,
  .btn-outline,
  .btn-restricted,
  body.liquid-glass-site .btn-glass,
  body.liquid-glass-site .btn-outline,
  body.liquid-glass-site .btn-restricted {
    box-shadow: 0 2px 8px rgba(30, 70, 100, .04) !important;
  }

  .btn-glass:hover,
  .btn-outline:hover,
  .btn-restricted:hover,
  body.liquid-glass-site .btn-glass:hover,
  body.liquid-glass-site .btn-outline:hover,
  body.liquid-glass-site .btn-restricted:hover {
    box-shadow: 0 6px 14px rgba(30, 70, 100, .08) !important;
  }

  .site-header.scrolled,
  body.liquid-glass-site .site-header,
  body.liquid-glass-site .site-header.scrolled {
    box-shadow: 0 4px 16px rgba(26, 58, 78, .06) !important;
  }

  .phone {
    box-shadow: 0 16px 36px rgba(30, 70, 91, .12), inset 0 0 0 2px #38485a !important;
  }
}