/* Paleta Seller Radar (inspirada no CSS da aplicação) */
:root {
  --blue: #0B6FBF;
  --blue-deep: #0A083A;
  --blue-light: #9cd3ff;
  --blue-border: #0e8df3;
  --green: #6BCF4A;
  --orange: #FF9800;
  --orange-hover: #FFB74D;
  --white: #FFFFFF;
  --bg: #F5F7FA;
  --text: #212529;

  --card: rgba(255, 255, 255, 0.92);
  --card-strong: rgba(255, 255, 255, 0.98);
  --border: rgba(11, 111, 191, 0.18);
  --shadow: 0 18px 60px rgba(11, 111, 191, 0.12);
  --shadow-soft: 0 14px 40px rgba(11, 111, 191, 0.10);

  --radius: 20px;
  --radius-sm: 15px;
  --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(11, 111, 191, 0.2), transparent 60%),
    radial-gradient(700px 500px at 80% 0%, rgba(156, 211, 255, 0.25), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  z-index: 9999;
  font-family: var(--font);
}
.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid var(--blue);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-family: var(--font);
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #73c6ff 0%, var(--blue) 45%, var(--blue-deep) 100%);
  box-shadow: 0 0 0 4px rgba(11, 111, 191, 0.15);
}

.brand__logo {
  height: 30px;
  width: auto;
  display: block;
}

.brand__logo--footer {
  filter: none;
}

.brand__logo--footer.brand__logo--full {
  height: 26px;
  max-width: 220px;
}

.brand__logo--full {
  height: 36px;
  max-width: 260px;
}

.brand--footer {
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
}

.nav__link:hover {
  color: var(--blue-deep);
}

.nav__link--cta {
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}

.bg-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  filter: blur(34px);
  opacity: 0.45;
  pointer-events: none;
}
.bg-orb--left {
  top: -210px;
  left: -120px;
  background: radial-gradient(circle at center, rgba(11, 111, 191, 0.28) 0%, transparent 60%);
}
.bg-orb--right {
  top: -120px;
  right: -140px;
  background: radial-gradient(circle at center, rgba(156, 211, 255, 0.35) 0%, transparent 62%);
}

main {
  position: relative;
}

.mt-24 {
  margin-top: 24px;
}

.notice {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 14px 16px;
  font-weight: 650;
}
.notice--success {
  background: rgba(107, 207, 74, 0.15);
  color: #0d5c0d;
  border-color: var(--green);
}
.notice--error {
  background: rgba(255, 0, 0, 0.06);
  color: #7a0e0e;
}

.hero {
  padding: 52px 0 22px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.hero__title {
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.05;
  margin: 14px 0 12px;
  color: var(--blue);
  letter-spacing: -0.8px;
  font-family: var(--font);
}

.hero__subtitle {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--text);
  font-family: var(--font);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-bottom: 2px solid var(--green);
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  text-decoration: none;
  padding: 12px 18px;
  font-weight: 700;
  font-family: var(--font);
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:focus {
  outline: 3px solid var(--blue-light);
  outline-offset: 2px;
}

.btn--lg {
  padding: 14px 20px;
  font-size: 16px;
}

.btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 111, 191, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: #094a8f;
  border-color: #094a8f;
  box-shadow: 0 8px 24px rgba(11, 111, 191, 0.4);
}

.btn--secondary {
  background: #f8f9fa;
  color: var(--blue);
  border: 1px solid #ddd;
}
.btn--secondary:hover {
  transform: translateY(-2px);
  border-color: var(--blue-border);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(11, 111, 191, 0.15);
}

.hero__micro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font);
}

.micro-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(107, 207, 74, 0.10);
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(156, 211, 255, 0.12));
  border: 1px solid var(--blue-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 360px;
}

.media-frame__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.media-frame__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(11, 111, 191, 0.25) 0%, transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(107, 207, 74, 0.2) 0%, transparent 55%);
  z-index: 0;
  animation: pulseGlow 5.2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  padding: 8px 14px;
  border-radius: var(--radius);
  background: rgba(156, 211, 255, 0.35);
  border: 1px solid var(--blue-border);
  font-weight: 700;
  font-family: var(--font);
  color: var(--blue);
}

.section {
  padding: 58px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(156, 211, 255, 0.2) 0%, rgba(245, 247, 250, 1) 45%);
}

.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.section__grid--two {
  grid-template-columns: 0.95fr 1.05fr;
}

.section__header {
  margin-bottom: 22px;
}

.section__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.4px;
  color: var(--blue);
  font-family: var(--font);
  font-weight: 700;
}

.section__text {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
}

.section-visual {
  margin-top: 18px;
  border-radius: var(--radius);
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--blue-border);
  box-shadow: 0 8px 32px rgba(11, 111, 191, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-visual img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

.section-visual--problem {
  background:
    radial-gradient(520px 220px at 18% 20%, rgba(156, 211, 255, 0.3), transparent 55%),
    radial-gradient(460px 220px at 70% 0%, rgba(107, 207, 74, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.9);
  border-color: var(--blue-border);
}

.section-visual--proof {
  background:
    radial-gradient(520px 220px at 20% 20%, rgba(107, 207, 74, 0.15), transparent 55%),
    radial-gradient(460px 220px at 80% 10%, rgba(156, 211, 255, 0.25), transparent 55%),
    rgba(255, 255, 255, 0.9);
  border-color: var(--green);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--blue-border);
  border-bottom: 2px solid var(--blue-light);
  box-shadow: 0 4px 20px rgba(11, 111, 191, 0.08);
  transition: transform 200ms ease, border-color 200ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  border-bottom-color: var(--green);
}

.card__title {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 16px;
  font-family: var(--font);
  font-weight: 700;
}
.card__text {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--blue-border);
  border-left: 4px solid var(--blue);
}

.feature__icon {
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(115, 198, 255, 1) 0%, rgba(11, 111, 191, 1) 40%, rgba(10, 8, 58, 1) 100%);
  box-shadow: 0 0 0 6px rgba(11, 111, 191, 0.12);
}

.feature__icon--green {
  background: radial-gradient(circle at 30% 30%, rgba(208, 255, 199, 1) 0%, rgba(107, 207, 74, 1) 45%, rgba(10, 8, 58, 1) 100%);
  box-shadow: 0 0 0 6px rgba(107, 207, 74, 0.12);
}

.feature__icon--blue {
  background: radial-gradient(circle at 30% 30%, rgba(115, 198, 255, 1) 0%, rgba(11, 111, 191, 1) 45%, rgba(10, 8, 58, 1) 100%);
  box-shadow: 0 0 0 6px rgba(11, 111, 191, 0.12);
}

.feature__title {
  margin: 0;
  color: var(--blue);
  font-size: 16px;
  font-family: var(--font);
  font-weight: 700;
}

.feature__text {
  margin: 4px 0 0;
  color: var(--text);
  font-family: var(--font);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-tile {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--blue-border);
  border-bottom: 2px solid var(--blue-light);
  box-shadow: 0 4px 20px rgba(11, 111, 191, 0.08);
  transition: transform 200ms ease, border-color 200ms ease;
}

.feature-tile:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  border-bottom-color: var(--green);
}

.feature-tile__title {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 16px;
  font-family: var(--font);
  font-weight: 700;
}

.feature-tile__visual {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-bottom: 2px solid var(--green);
  box-shadow: 0 4px 16px rgba(11, 111, 191, 0.15);
  transform: translateY(6px) scale(0.98);
  opacity: 0.001;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.feature-tile__img {
  width: 34px;
  height: 34px;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(10, 8, 58, 0.18));
}

.reveal.is-visible .feature-tile__visual {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: floatIcon 3.8s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.01); }
}

.feature-tile:hover .feature-tile__visual {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(11, 111, 191, 0.25);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font);
}

.list li {
  margin: 6px 0;
}

.seo-text h3 {
  color: var(--blue);
  margin: 18px 0 10px;
  font-family: var(--font);
  font-weight: 700;
}

.seo-text p {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
}

.proof {
  display: grid;
  gap: 14px;
}

.proof__item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--blue-border);
  border-left: 4px solid var(--blue);
}

.proof__marker {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(11, 111, 191, 1);
  box-shadow: 0 0 0 6px rgba(11, 111, 191, 0.12);
  margin-top: 7px;
}

.proof__marker--green {
  background: rgba(107, 207, 74, 1);
  box-shadow: 0 0 0 6px rgba(107, 207, 74, 0.12);
}
.proof__marker--blue {
  background: rgba(11, 111, 191, 1);
  box-shadow: 0 0 0 6px rgba(11, 111, 191, 0.12);
}

.proof__title {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 16px;
  font-family: var(--font);
  font-weight: 700;
}

.proof__text {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
}

.section--cta {
  padding: 70px 0;
  background:
    radial-gradient(700px 330px at 20% 20%, rgba(156, 211, 255, 0.4), transparent 60%),
    radial-gradient(620px 300px at 70% 0%, rgba(107, 207, 74, 0.15), transparent 55%),
    linear-gradient(180deg, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.cta-final {
  margin-top: 16px;
}

.form-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--blue-border);
  border-bottom: 2px solid var(--blue-light);
  box-shadow: var(--shadow-soft);
}

.form {
  display: grid;
  gap: 12px;
}

.honeypot {
  display: none;
}

.field label {
  display: block;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
  font-family: var(--font);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid #ced4da;
  padding: 12px 14px;
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light);
}

.form-hint {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
}

.inline-whatsapp {
  margin-top: 12px;
}

.inline-link {
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--blue-light);
  border: 1px solid var(--blue);
  font-family: var(--font);
}

.inline-link:hover {
  transform: translateY(-2px);
}

.footer {
  background: linear-gradient(180deg, rgba(10, 8, 58, 1) 0%, rgba(10, 8, 58, 0.94) 100%);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__inner {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.footer__inner {
  justify-content: center;
}

.footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__dara {
  margin: 0;
}

.footer__dara-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.footer__dara-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.footer__link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 800;
  margin-left: 14px;
}

.footer__link:hover {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .section__grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    gap: 12px;
  }
  .brand__logo--full {
    height: 30px;
    max-width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .media-frame__glow {
    animation: none;
  }
  .btn,
  .card,
  .feature-tile {
    transition: none;
  }
  .reveal.is-visible .feature-tile__visual {
    animation: none;
  }
}

