/* CONSUELO PJ — Design System */
:root {
  --pink-50: #fff5f9;
  --pink-100: #ffe4f0;
  --pink-200: #ffc9e3;
  --pink-300: #ff9dcc;
  --pink-400: #ff6bb5;
  --pink-500: #e91e8c;
  --pink-600: #d4147a;
  --pink-700: #b01065;
  --pink-800: #8c0d52;
  --purple-900: #2d1033;
  --purple-800: #3d1845;
  --text: #2a102e;
  --text-muted: #6b4a72;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(212, 20, 122, 0.18);
  --shadow-sm: 0 8px 30px rgba(212, 20, 122, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Segoe UI', Georgia, serif;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-500) var(--pink-100);
}

html::-webkit-scrollbar { width: 12px; }
html::-webkit-scrollbar-track { background: var(--pink-100); }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink-400), var(--pink-600));
  border-radius: 999px;
  border: 2px solid var(--pink-100);
}
html::-webkit-scrollbar-thumb:hover { background: var(--pink-700); }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--pink-50);
  line-height: 1.6;
  overflow-x: hidden;
}

body.a11y-high-contrast {
  --pink-50: #fff;
  --text: #000;
  --text-muted: #222;
}

body.a11y-large-text { font-size: 118%; }
body.a11y-underline a { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(233, 30, 140, 0.12);
  transition: box-shadow 0.3s var(--ease);
}

.header.scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--pink-600);
  letter-spacing: 0.02em;
}

.logo__tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
}

.nav a:hover {
  color: var(--pink-600);
  background: var(--pink-100);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 1.4rem;
}

/* Botão Baixar App */
.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  color: var(--white);
  box-shadow: 0 6px 22px rgba(212, 20, 122, 0.35);
  transition: all 0.3s var(--ease);
}

.btn-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 20, 122, 0.42);
}

.btn-app__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.btn-app__icon svg {
  width: 100%;
  height: 100%;
}

.btn-app__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.btn-app__label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-app__stores {
  font-size: 0.68rem;
  opacity: 0.88;
  font-weight: 500;
}

.btn-app--header {
  margin-left: 4px;
}

.btn-app--footer {
  padding: 16px 28px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  justify-content: center;
}

.btn-app--footer .btn-app__icon {
  width: 36px;
  height: 36px;
}

.btn-app--footer .btn-app__label {
  font-size: 1rem;
}

.btn-app--footer .btn-app__stores {
  font-size: 0.78rem;
}

.footer__app {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-modal-hero {
  text-align: center;
  margin-bottom: 28px;
}

.app-modal-hero__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
}

.app-modal-hero__icon svg {
  width: 100%;
  height: 100%;
}

.app-modal-hero__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 360px;
  margin-inline: auto;
}

.app-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.app-stores--single {
  grid-template-columns: 1fr;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--pink-100);
  background: var(--pink-50);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all 0.25s var(--ease);
  color: var(--purple-900);
}

.app-store-btn:hover {
  border-color: var(--pink-400);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.app-store-btn__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--pink-600);
}

.app-store-btn__icon svg {
  width: 100%;
  height: 100%;
}

.app-store-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.app-store-btn__text small {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.app-store-btn__text strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.app-store-btn__tag {
  position: absolute;
  top: 0;
  right: -4px;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--pink-600);
  background: var(--pink-100);
  padding: 2px 6px;
  border-radius: 999px;
}

.app-modal-note {
  text-align: center;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 100px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(255, 107, 181, 0.35), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(212, 20, 122, 0.15), transparent),
    linear-gradient(165deg, #fff0f7 0%, #ffe4f0 40%, #ffd6eb 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.08), transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pink-600);
  margin-bottom: 20px;
  animation: fadeUp 0.7s var(--ease) both;
}

.hero__badge span {
  width: 8px;
  height: 8px;
  background: var(--pink-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 20px;
  color: var(--purple-900);
  animation: fadeUp 0.7s 0.1s var(--ease) both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 32px;
  animation: fadeUp 0.7s 0.2s var(--ease) both;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: fadeUp 0.7s 0.3s var(--ease) both;
}

.hero__actions-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 340px;
}

.hero__actions-stack .btn { width: 100%; }

.hero__actions-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.hero__actions-note strong {
  color: var(--pink-600);
  font-weight: 700;
}

.cart-included-tag {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-600);
  margin: -8px 0 16px;
  padding: 10px 14px;
  background: var(--pink-50);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(233, 30, 140, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(212, 20, 122, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 20, 122, 0.45);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(233, 30, 140, 0.35);
  color: var(--pink-700);
}

.btn--outline:hover {
  background: var(--white);
  border-color: var(--pink-500);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: var(--white);
  box-shadow: 0 6px 22px rgba(212, 20, 122, 0.3);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 20, 122, 0.38);
}

.btn--white {
  background: var(--white);
  color: var(--pink-600);
  box-shadow: var(--shadow-sm);
}

.btn--white:hover { transform: translateY(-2px); }

.btn--lg { padding: 18px 36px; font-size: 1rem; }

.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

.hero__visual { position: relative; animation: fadeUp 0.8s 0.2s var(--ease) both; }
.hero__card-stack { position: relative; height: 420px; }

.hero-card {
  position: absolute;
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(233, 30, 140, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card--1 { width: 88%; top: 0; right: 0; z-index: 3; animation: float 6s ease-in-out infinite; }
.hero-card--2 { width: 75%; top: 120px; left: 0; z-index: 2; opacity: 0.92; animation: float 6s 1s ease-in-out infinite; }
.hero-card--3 { width: 65%; bottom: 0; right: 10%; z-index: 1; opacity: 0.85; animation: float 6s 2s ease-in-out infinite; }

.hero-card__icon {
  margin-bottom: 14px;
}

.hero-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--purple-900); }
.hero-card p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }
.hero-card__value { margin-top: 14px; font-size: 1.5rem; font-weight: 800; color: var(--pink-600); }

.section { padding: 90px 0; }
.section--alt { background: linear-gradient(180deg, var(--white) 0%, var(--pink-50) 100%); }

.vantagens-banner {
  max-width: 920px;
  margin: 0 auto 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
}

.vantagens-banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-600);
  margin-bottom: 12px;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 16px;
  color: var(--purple-900);
}

.section__head p { margin: 0; color: var(--text-muted); font-size: 1.05rem; }

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(233, 30, 140, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-card:hover::before { transform: scaleX(1); }

.product-card__icon {
  margin-bottom: 22px;
}

.product-card h3 { margin: 0 0 12px; font-size: 1.25rem; color: var(--purple-900); }
.product-card p { margin: 0 0 24px; color: var(--text-muted); font-size: 0.95rem; }
.product-card .btn { width: 100%; }

.stats {
  background: linear-gradient(135deg, var(--pink-600) 0%, var(--purple-900) 100%);
  padding: 70px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item { text-align: center; }
.stat-item__num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1; margin-bottom: 8px; }
.stat-item__label { font-size: 0.92rem; opacity: 0.85; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(233, 30, 140, 0.08);
  transition: all 0.3s var(--ease);
}

.benefit-item:hover {
  border-color: rgba(233, 30, 140, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.benefit-item__img {
  flex-shrink: 0;
}

.benefit-item h4 { margin: 0 0 6px; font-size: 1.05rem; color: var(--purple-900); }
.benefit-item p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }
.benefit-item__link { color: var(--pink-600); font-weight: 700; font-size: 0.85rem; white-space: nowrap; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-box {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(233, 30, 140, 0.08);
}

.feature-box__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.feature-box__icon img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
}

.feature-box h4 { margin: 0 0 10px; font-size: 1rem; color: var(--purple-900); }
.feature-box p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

.cta { padding: 80px 0; text-align: center; }

.cta__box {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  border-radius: 28px;
  padding: 64px 40px;
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta__box h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 16px; position: relative; }
.cta__box p { margin: 0 0 28px; opacity: 0.92; font-size: 1.05rem; position: relative; }

/* Testimonials */
.testimonials {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--pink-50) 0%, var(--white) 50%, var(--pink-50) 100%);
  overflow: hidden;
}

.testimonials__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.testimonials__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin: 0 0 12px;
  color: var(--purple-900);
}

.testimonials__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.testimonials__marquee {
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonials__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0;
}

.testimonials__marquee--left .testimonials__track {
  animation: marquee-left 120s linear infinite;
}

.testimonials__marquee--right .testimonials__track {
  animation: marquee-right 130s linear infinite;
}

.testimonials__marquee:hover .testimonials__track {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  border: 1px solid rgba(233, 30, 140, 0.1);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.testimonial-text {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 0.88rem;
  color: var(--purple-900);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.footer {
  background: var(--purple-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 28px;
  font-size: 0.88rem;
}

.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand img { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer h5 { color: var(--white); margin: 0 0 16px; font-size: 0.95rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: var(--pink-300); }

.footer__security {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 36px;
  margin-bottom: 32px;
}

.footer__security h5 {
  color: var(--white);
  margin: 0 0 20px;
  font-size: 1rem;
  text-align: center;
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.security-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.security-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(233, 30, 140, 0.35);
}

.security-badge__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(233, 30, 140, 0.25), rgba(212, 20, 122, 0.12));
  border: 1px solid rgba(255, 107, 181, 0.25);
  color: #ff9dcc;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.security-badge__icon svg {
  width: 22px;
  height: 22px;
}

.security-badge strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.security-badge small {
  font-size: 0.72rem;
  opacity: 0.7;
  line-height: 1.4;
}

.footer__security-note {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.65;
  max-width: 720px;
  margin: 24px auto 0;
  line-height: 1.6;
}

.security-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.security-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 72px;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.security-seal svg {
  width: 28px;
  height: 28px;
  color: #ff9dcc;
}

.security-seal span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.25;
  opacity: 0.9;
}

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; text-align: center; font-size: 0.82rem; opacity: 0.7; margin-top: 28px; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(45, 16, 51, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: 24px;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(45, 16, 51, 0.35);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease);
}

.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal--wide { width: min(680px, 100%); }

.modal__header {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.modal__header h3 { margin: 0; font-size: 1.35rem; color: var(--purple-900); }
.modal__header p { margin: 6px 0 0; font-size: 0.88rem; color: var(--text-muted); }

.modal__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.modal__close:hover { background: var(--pink-200); }
.modal__body { padding: 24px 28px 28px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }

.form-group input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--pink-400);
  box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.12);
}

.loading-steps { padding: 20px 0; }

.loading-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  opacity: 0.4;
  transition: all 0.3s;
}

.loading-step.active { opacity: 1; color: var(--pink-600); font-weight: 600; }
.loading-step.done { opacity: 0.7; color: var(--text); }

.loading-step__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink-200);
  flex-shrink: 0;
}

.loading-step.active .loading-step__dot { background: var(--pink-500); animation: pulse 1s infinite; }
.loading-step.done .loading-step__dot { background: #22c55e; }

.spinner-bar {
  height: 6px;
  background: var(--pink-100);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}

.spinner-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-600));
  border-radius: 999px;
  width: 0%;
  transition: width 0.5s var(--ease);
}

.result-panel { display: none; }
.result-panel.visible { display: block; animation: fadeUp 0.5s var(--ease); }

.result-header {
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}

.result-header__company { font-size: 1.1rem; font-weight: 700; color: var(--purple-900); margin: 0 0 4px; }
.result-header__cnpj { font-size: 0.85rem; color: var(--text-muted); }

.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.result-field {
  background: var(--pink-50);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.result-field__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.result-field__value { font-weight: 700; font-size: 0.95rem; color: var(--purple-900); word-break: break-word; }

.result-value-big {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  border-radius: var(--radius-sm);
  color: var(--white);
  margin-bottom: 20px;
}

.result-value-big__label { font-size: 0.82rem; opacity: 0.9; margin-bottom: 6px; }
.result-value-big__amount { font-size: 2rem; font-weight: 800; }
.result-value-big__date { font-size: 0.78rem; opacity: 0.85; margin-top: 8px; }

.score-section {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--pink-50);
  border-radius: var(--radius-sm);
}

.score-gauge { position: relative; width: 120px; height: 120px; flex-shrink: 0; }
.score-gauge svg { transform: rotate(-90deg); }

.score-gauge__value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pink-600);
}

.score-info h4 { margin: 0 0 8px; font-size: 1rem; color: var(--purple-900); }

.score-bar {
  height: 8px;
  background: var(--pink-200);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.score-bar__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-600));
  transition: width 1.2s var(--ease);
}

.score-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.score-tag {
  padding: 4px 10px;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink-600);
  border: 1px solid var(--pink-200);
}

.card-visual { perspective: 800px; margin-bottom: 20px; }

.card-visual__inner {
  background: linear-gradient(135deg, #2d1033 0%, #8c0d52 50%, #e91e8c 100%);
  border-radius: 18px;
  padding: 28px;
  color: var(--white);
  min-height: 190px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 16, 51, 0.4);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.4s var(--ease);
}

.card-visual:hover .card-visual__inner { transform: rotateY(0) rotateX(0); }

.card-visual__chip {
  width: 44px;
  height: 34px;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  border-radius: 6px;
  margin-bottom: 24px;
}

.card-visual__limit { font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.card-visual__name { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; }

.card-visual__brand {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-weight: 800;
  font-size: 1.1rem;
  opacity: 0.8;
}

.benefits-modal-list { display: grid; gap: 14px; margin-bottom: 24px; }

.benefits-modal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--pink-50);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--pink-500);
}

.benefits-modal-item strong { display: block; color: var(--purple-900); margin-bottom: 2px; }
.benefits-modal-item small { color: var(--text-muted); font-size: 0.82rem; }

.benefits-modal-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink-600);
  margin-bottom: 20px;
  line-height: 1.4;
}

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: all 0.3s var(--ease);
  color: var(--white);
}

.float-btn:hover { transform: scale(1.08); }

.float-btn--chat {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  width: auto;
  min-width: 56px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.a11y-panel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 850;
}

.a11y-toggle {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 16px 10px;
  background: var(--purple-900);
  color: var(--white);
  border-radius: 0 12px 12px 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 4px 0 20px rgba(45, 16, 51, 0.2);
}

.a11y-toggle:hover { background: var(--pink-600); }

.a11y-menu {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  margin-left: 8px;
}

.a11y-panel.open .a11y-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* VLibras — lado direito, acima do chat */
[vw-access-button] {
  bottom: 100px !important;
  right: 20px !important;
  top: auto !important;
  left: auto !important;
}

div[vw].enabled {
  z-index: 840 !important;
}

.a11y-menu h4 { margin: 0 0 12px; font-size: 0.85rem; color: var(--purple-900); }

.a11y-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.a11y-option:hover { background: var(--pink-50); }
.a11y-option.active { background: var(--pink-100); color: var(--pink-600); }

.chat-toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  max-width: 280px;
  z-index: 899;
  transform: translateX(120%);
  transition: transform 0.4s var(--ease);
  border-left: 4px solid var(--pink-500);
}

.chat-toast.visible { transform: translateX(0); }
.chat-toast p { margin: 0 0 12px; font-size: 0.88rem; color: var(--text-muted); }
.chat-toast strong { color: var(--purple-900); }

/* Alert modal (substitui window.alert) */
.alert-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(45, 16, 51, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.alert-overlay.active {
  opacity: 1;
  visibility: visible;
}

.alert-box {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px 28px;
  width: min(400px, 100%);
  text-align: center;
  box-shadow: 0 30px 80px rgba(45, 16, 51, 0.35);
  transform: scale(0.92) translateY(12px);
  transition: transform 0.35s var(--ease);
  border-top: 4px solid var(--pink-500);
}

.alert-overlay.active .alert-box {
  transform: scale(1) translateY(0);
}

.alert-box--error .alert-box__icon {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
  color: #e11d48;
}

.alert-box--warning .alert-box__icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
}

.alert-box__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  color: var(--pink-600);
}

.alert-box__title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--purple-900);
}

.alert-box__msg {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.alert-box__btn {
  width: 100%;
  padding: 14px 24px;
}

.form-group input.input-error {
  border-color: #e11d48;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.form-group .input-hint {
  font-size: 0.78rem;
  color: #e11d48;
  margin-top: 6px;
  display: none;
}

.form-group .input-hint.visible { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .products { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .security-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--pink-100);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s var(--ease);
    box-shadow: var(--shadow-sm);
  }

  .nav.open { transform: translateY(0); opacity: 1; }
  .nav a { width: 100%; text-align: center; }
  .btn-app--header {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
  .app-stores { grid-template-columns: 1fr; }
  .nav-toggle { display: grid; place-items: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { grid-template-columns: auto 1fr; }
  .benefit-item__link { display: none; }
  .result-grid { grid-template-columns: 1fr; }
  .score-section { flex-direction: column; text-align: center; }
  .a11y-panel { top: auto; bottom: 170px; left: 0; transform: none; }
  .a11y-toggle { writing-mode: horizontal-tb; border-radius: 0 12px 12px 0; padding: 10px 14px; }
  .a11y-menu { left: 100%; top: auto; bottom: 0; transform: translateX(-10px); }
  .a11y-panel.open .a11y-menu { transform: translateX(0); }
  [vw-access-button] { bottom: 90px !important; right: 14px !important; }
  .float-actions { right: 14px; bottom: 16px; }
  .float-btn--chat span:last-child { display: none; }
  .float-btn--chat { width: 56px; padding: 0; border-radius: 50%; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .hero { padding-bottom: 60px; }
  .section { padding: 60px 0; }
  .cta__box { padding: 40px 24px; }
  .security-badges { grid-template-columns: 1fr; }
  .testimonial-card { width: 280px; }
}

/* ── Menu contextual (Copiar / Colar + SSL) ── */
.ctx-menu {
  position: fixed;
  z-index: 10050;
  display: none;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--pink-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px 0 0;
  user-select: none;
  animation: ctxMenuIn 0.18s var(--ease);
}

.ctx-menu.show {
  display: block;
}

.ctx-menu--centered {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  animation: ctxMenuInCenter 0.22s var(--ease);
}

.ctx-menu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  cursor: pointer;
  transition: background 0.15s;
  color: var(--purple-900);
}

.ctx-menu__item:hover:not(.ctx-menu__item--disabled) {
  background: var(--pink-50);
}

.ctx-menu__item--disabled {
  opacity: 0.45;
  cursor: default;
}

.ctx-menu__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ctx-menu__icon svg {
  width: 16px;
  height: 16px;
}

.ctx-menu__icon--copy {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: var(--white);
}

.ctx-menu__icon--paste {
  background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
  color: var(--white);
}

.ctx-menu__label {
  font-weight: 700;
  font-size: 0.92rem;
  flex: 1;
}

.ctx-menu__shortcut {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.ctx-menu__foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 10px 16px 12px;
  border-top: 1px solid var(--pink-100);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink-600);
  background: linear-gradient(180deg, var(--pink-50), rgba(255, 245, 249, 0.6));
  border-radius: 0 0 calc(var(--radius-sm) - 1px) calc(var(--radius-sm) - 1px);
}

.ctx-menu__foot-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-500);
  flex-shrink: 0;
}

.ctx-menu__foot-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes ctxMenuIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ctxMenuInCenter {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
