﻿:root {
  --primary: #5B6EF5;
  --primary-dark: #4b5fe0;
  --primary-soft: rgba(91, 110, 245, 0.12);
  --bg: #F5F7FB;
  --bg-accent: #EEF4FF;
  --bg-warm: #FFF6EC;
  --bg-mint: #EDF9F5;
  --text: #0F172A;
  --muted: #475569;
  --muted-light: #94A3B8;
  --card: #FFFFFF;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --danger: #EF4444;
  --danger-soft: rgba(239, 68, 68, 0.12);
}

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

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(91, 110, 245, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 42%, #eef4f8 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 247, 251, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
}

.brand-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.brand-logo {
  height: 32px;
  width: auto;
}

.brand-text {
  font-weight: 800;
  letter-spacing: -0.02em;
}


.nav-links {
  display: none;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: absolute;
  top: 68px;
  right: 20px;
  flex-direction: column;
  min-width: 220px;
  z-index: 5;
}

.nav-open .nav-links {
  display: flex;
}

.nav-actions {
  gap: 12px;
}

.nav-pill {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav-links .nav-pill {
  margin-left: 6px;
}

.nav-pill--solid {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(91, 110, 245, 0.3);
}

.nav-pill--ghost {
  background: #fff;
}

.nav-pill::after,
.btn::after,
.store-badge::after,
.footer-social a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.36) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.nav-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.nav-pill:hover::after,
.btn:hover::after,
.store-badge:hover::after,
.footer-social a:hover::after {
  transform: translateX(130%);
}

.nav-pill.is-active {
  box-shadow: 0 10px 22px rgba(91, 110, 245, 0.28);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-link {
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(91, 110, 245, 0.1);
}

.nav-toggle {
  background: transparent;
  border: none;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

main {
  overflow: hidden;
}

.hero {
  max-width: 1150px;
  margin: 0 auto;
  padding: 96px 20px 64px;
  display: grid;
  gap: 32px;
  position: relative;
}

.hero-gestor {
  max-width: none;
  margin: 0;
  padding: 90px 20px 90px;
  background: linear-gradient(110deg, #2b3250, #5b6ef5 55%, #8ba2ff);
  color: #fff;
}

.hero-gestor .hero-content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
}

.hero-gestor .hero-content p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-gestor .tag {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-gestor .btn-primary {
  background: #fff;
  color: var(--text);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.hero-gestor .btn-primary:hover {
  background: #f1f5f9;
}

.hero-gestor .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-note {
  margin-top: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.5;
  z-index: -1;
}

.hero::before {
  width: 260px;
  height: 260px;
  background: rgba(91, 110, 245, 0.22);
  top: -40px;
  right: -80px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: rgba(15, 23, 42, 0.08);
  bottom: -60px;
  left: -40px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
}

.tag {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
  animation: pulseTag 2.4s ease-in-out infinite;
}

@keyframes pulseTag {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-links .store-badge {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.hero-gestor .store-links .store-badge {
  background: rgba(255, 255, 255, 0.95);
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(91, 110, 245, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 34px rgba(91, 110, 245, 0.4);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(239, 68, 68, 0.36);
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.hero-media {
  display: grid;
  gap: 16px;
  align-items: center;
}

.media-card {
  background: var(--card);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-gestor .media-card {
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  width: min(100%, 640px);
  margin-left: auto;
  margin-right: auto;
}

.hero-mock {
  position: relative;
}

.hero-mock img,
.hero-mock video {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.hero-mock video {
  background: #0f172a;
}

.hero-banner-video {
  width: 100%;
  max-height: min(70vh, 720px);
}

.hero-video-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 86px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-video-note.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.media-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.media-header .dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.media-screen {
  background: linear-gradient(135deg, rgba(91, 110, 245, 0.14), rgba(15, 23, 42, 0.06));
  border-radius: 20px;
  padding: 18px;
}

.media-mock {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.media-mock h3 {
  font-size: 1.1rem;
}

.media-mock ul {
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  margin-right: 12px;
  flex-shrink: 0;
}

.icon svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

.hero-card li {
  display: flex;
  align-items: center;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link {
  color: var(--primary);
  font-weight: 700;
}

.badge {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 94px 20px;
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-radius: 42px;
  z-index: -1;
  opacity: 0.98;
}

.section-soft {
  background: #fff;
  border-radius: 32px;
  margin: 40px auto;
  box-shadow: var(--shadow);
}

.cta-band {
  max-width: 1150px;
  margin: 40px auto 80px;
  padding: 36px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(91, 110, 245, 0.18), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(91, 110, 245, 0.2);
  display: grid;
  gap: 16px;
  align-items: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 42px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 10px 0 14px;
}

.section-header p {
  color: var(--muted);
}

.section-header.center {
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.card-accent {
  background: linear-gradient(135deg, rgba(91, 110, 245, 0.12), #fff 60%);
}

.card.highlight {
  border: 1px solid rgba(91, 110, 245, 0.35);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
}

.icon-circle svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.testimonial {
  gap: 18px;
}

.testimonials-highlight {
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(242, 247, 255, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 12px;
}

.testimonials-highlight strong {
  display: block;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.3;
  color: #12203f;
}

.testimonials-highlight p {
  color: var(--muted);
  max-width: 58ch;
}

.testimonial-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(91, 110, 245, 0.12);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonials-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #22324d;
}

.testimonial span {
  display: block;
  color: var(--muted-light);
  font-size: 0.95rem;
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
}

.testimonial-person {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.testimonial-person strong {
  display: block;
  color: #12203f;
  margin-bottom: 2px;
}

.cta-section {
  padding-top: 40px;
  padding-bottom: 100px;
}

.cta-card {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.96) 46%, rgba(242, 247, 255, 0.96));
  border-radius: 34px;
  padding: 42px;
  display: grid;
  gap: 24px;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.18);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(91, 110, 245, 0.1);
  filter: blur(6px);
}

.cta-card h2 {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  color: #13203b;
  max-width: 13ch;
  line-height: 1.05;
}

.cta-card p {
  color: #44526b;
  font-size: 1.05rem;
  max-width: 48ch;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card .store-links {
  gap: 14px;
}

.cta-card .store-badge {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.cta-card .store-badge:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.18);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--card);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-section {
  padding-top: 20px;
  padding-bottom: 30px;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.contact-card .section-header {
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions .btn {
  width: fit-content;
}

.contact-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.download {
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 20px 0;
}

.download-content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 20px;
  box-shadow: var(--shadow);
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.video-section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px 20px 80px;
  display: grid;
  gap: 24px;
  align-items: start;
}

.video-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.video-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
}

.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works {
  padding-top: 108px;
  padding-bottom: 102px;
}

.how-it-works::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.96) 45%, rgba(226, 236, 255, 0.98));
  box-shadow: 0 18px 50px rgba(91, 110, 245, 0.08);
}

.steps-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 32px;
  flex-wrap: wrap;
  padding: 8px;
  border-radius: 999px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.tab-button {
  border: 1px solid rgba(91, 110, 245, 0.3);
  background: transparent;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tab-button.is-active {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(91, 110, 245, 0.28);
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

.step-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.9));
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.16);
  display: grid;
  gap: 12px;
  text-align: center;
}

.step-card h3 {
  font-size: 1.05rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-weight: 800;
  background: #20304a;
  color: #fff;
}

.step-highlight .step-number {
  background: var(--primary);
}

.transformation {
  padding-top: 40px;
  padding-bottom: 90px;
}

.transformation::before {
  background:
    linear-gradient(140deg, rgba(255, 248, 241, 0.98), rgba(255, 255, 255, 0.95) 52%, rgba(245, 240, 255, 0.95));
}

.compare-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.compare-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
}

.compare-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.compare-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.compare-before .compare-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}

.compare-after .compare-icon {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.compare-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #22c55e;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.benefits-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.92));
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.benefit-card,
.compare-card,
.step-card,
.media-frame,
.faq details,
.card,
.contact-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.benefit-card:hover,
.compare-card:hover,
.step-card:hover,
.media-frame:hover,
.faq details:hover,
.card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
  border-color: rgba(91, 110, 245, 0.22);
}

.benefit-card p {
  color: var(--muted);
  margin-top: 8px;
}

.feature-section {
  display: grid;
  gap: 32px;
  align-items: center;
}

.feature-section::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.95) 48%, rgba(236, 245, 255, 0.98));
}

#controle-estoque.feature-section::before,
#classificados.feature-section::before {
  background:
    linear-gradient(135deg, rgba(240, 250, 246, 0.98), rgba(255, 255, 255, 0.96) 50%, rgba(238, 245, 255, 0.98));
}

#resultados-pesquisa.feature-section::before,
#vantagens-painel.feature-section::before {
  background:
    linear-gradient(135deg, rgba(244, 247, 255, 0.98), rgba(255, 255, 255, 0.96) 52%, rgba(232, 242, 255, 0.98));
}

.feature-reverse {
  direction: rtl;
}

.feature-reverse .feature-content,
.feature-reverse .feature-media {
  direction: ltr;
}

.feature-content h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
}

.feature-content p {
  color: var(--muted);
  margin: 12px 0 18px;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(91, 110, 245, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.feature-list li::before {
  content: "•";
  color: var(--primary);
  font-weight: 800;
  margin-right: 8px;
}

.feature-media {
  display: grid;
}

.media-frame {
  background: #fff;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.28);
  display: grid;
  overflow: hidden;
  gap: 0;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.media-frame--wide img {
  aspect-ratio: 16 / 9;
}

.media-frame--hero img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  justify-content: center;
}

.media-chips span {
  background: rgba(91, 110, 245, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.media-carousel {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.media-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.media-carousel img.is-active {
  opacity: 1;
}

.media-mockup {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: grid;
  gap: 14px;
}

.mock-header {
  font-weight: 700;
  color: var(--text);
}

.mock-chart {
  height: 160px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(91, 110, 245, 0.2), rgba(15, 23, 42, 0.08));
  position: relative;
  overflow: hidden;
}

.mock-chart::after {
  content: "";
  position: absolute;
  inset: 24px 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(91, 110, 245, 0.2);
}

.mock-chart.alt {
  background: linear-gradient(120deg, rgba(91, 110, 245, 0.18), rgba(148, 163, 184, 0.15));
}

.mock-stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.75rem;
  overflow: hidden;
}

.mock-stats span {
  background: rgba(91, 110, 245, 0.08);
  padding: 6px 8px;
  border-radius: 999px;
  flex: 1 1 0;
  text-align: center;
  white-space: normal;
  line-height: 1.2;
}

.mock-search {
  display: grid;
  gap: 10px;
}

.search-row {
  height: 18px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
}

.faq-section {
  padding-top: 40px;
}

.testimonials::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 255, 0.96) 50%, rgba(238, 247, 255, 0.98));
}

.faq-section::before {
  background:
    linear-gradient(135deg, rgba(245, 250, 255, 0.98), rgba(255, 255, 255, 0.96) 50%, rgba(241, 246, 255, 0.98));
}

.contact-section::before {
  background:
    linear-gradient(135deg, rgba(255, 247, 240, 0.98), rgba(255, 255, 255, 0.96) 48%, rgba(241, 247, 255, 0.98));
}

.cta-section::before {
  background:
    linear-gradient(135deg, rgba(255, 248, 241, 0.98), rgba(255, 255, 255, 0.96) 50%, rgba(242, 247, 255, 0.98));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.site-footer {
  background: linear-gradient(110deg, #2b3250, #5b6ef5 55%, #8ba2ff);
  color: #fff;
  padding: 74px 20px 30px;
  margin-top: 30px;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
}

.footer-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  margin: 10px 0 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.footer-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(91, 110, 245, 0.2);
  color: #c7d2fe;
  font-weight: 700;
  font-size: 0.8rem;
}

.footer-col h4 {
  margin-bottom: 10px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover,
.footer-links a:hover {
  opacity: 1;
  transform: translateX(3px);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(91, 110, 245, 0.2);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 28px rgba(9, 14, 36, 0.22);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  max-width: 1150px;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #22c55e;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.35);
  z-index: 20;
  justify-content: center;
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.video-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.store-btn {
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: left;
  min-width: 180px;
  display: grid;
  gap: 4px;
}

.store-btn strong {
  font-size: 1.1rem;
}

.form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.form-columns {
  display: grid;
  gap: 24px;
}

.form-header h3 {
  font-size: 1.3rem;
}

.form-header p {
  color: var(--muted);
  margin-top: 6px;
}

.form-card-danger {
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn-link {
  background: transparent;
  color: var(--primary);
  padding: 0;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.requires-auth {
  display: none;
}

.auth-visible .requires-auth {
  display: block;
}

.form-grid {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
}

input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
}

input:focus {
  outline: 2px solid rgba(91, 110, 245, 0.4);
  border-color: transparent;
}

textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  resize: vertical;
  min-height: 140px;
}

textarea:focus {
  outline: 2px solid rgba(91, 110, 245, 0.4);
  border-color: transparent;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.form-message {
  min-height: 24px;
  color: var(--muted);
  font-weight: 600;
}

.form-message.success {
  color: #16A34A;
}

.form-message.error {
  color: var(--danger);
}

.site-footer {
  width: 100%;
  max-width: none;
  margin: 28px 0 0;
  padding: 76px 20px 40px;
  display: grid;
  gap: 24px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 26%),
    linear-gradient(125deg, #162145 0%, #24367d 42%, #4660dd 100%);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -18px 48px rgba(15, 23, 42, 0.12);
}

.site-footer .footer-brand,
.site-footer .footer-col {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 22px 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.site-footer .footer-brand {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.footer-app {
  display: grid;
  gap: 12px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.35);
  min-width: 190px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.14);
  border-color: rgba(91, 110, 245, 0.28);
}

.store-badge svg {
  width: 22px;
  height: 22px;
  fill: var(--text);
}

.store-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.store-badge strong {
  font-size: 1rem;
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 24px;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 8px;
}

.footer-links a {
  display: block;
  margin-bottom: 6px;
}

small {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a,
.site-footer p,
.site-footer span {
  color: #fff;
}

.footer-bottom {
  max-width: 1150px;
  width: 100%;
  margin: 6px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-item {
  opacity: 0;
  transform: translateY(30px) scale(0.988);
  filter: blur(8px);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Access page */
.access-page {
  background: #fff;
  min-height: 100vh;
}

.access-layout {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 1.05fr 0.95fr;
  padding-top: 0;
}

.access-brand {
  background: radial-gradient(circle at top left, #5b6ef5 0%, #1e2a5b 55%, #0f172a 100%);
  color: #fff;
  display: grid;
  align-items: center;
  padding: 60px;
}

.access-brand-inner {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}

.access-logo {
  width: 140px;
  height: 140px;
  border-radius: 0;
  margin: 0 auto 28px;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
}

.access-brand h1 {
  font-size: clamp(3rem, 5vw, 4.2rem);
  margin-bottom: 16px;
}

.access-brand p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
}

.access-panel {
  display: grid;
  align-content: center;
  padding: 60px 10vw;
  gap: 24px;
  background: #fff;
}

.access-header .nav {
  max-width: 1200px;
}

.access-header .nav-links {
  display: flex;
  position: static;
  padding: 0;
  background: transparent;
  box-shadow: none;
  flex-direction: row;
  min-width: 0;
}

.access-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 247, 251, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.access-page .access-layout {
  padding-top: 80px;
}

.access-card {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.access-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.access-tab {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  padding: 10px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
}

.access-tab.is-active {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.access-form {
  display: none;
  animation: fadeSlide 0.5s ease;
}

.access-form.is-active {
  display: grid;
  gap: 14px;
}

.access-form h2 {
  font-size: 1.6rem;
}

.access-form p {
  color: var(--muted);
  margin-bottom: 4px;
}

.access-link {
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-align: center;
}

.access-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 600;
}

.access-footer {
  text-align: center;
  color: var(--muted-light);
  font-size: 0.9rem;
}

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

@media (max-width: 980px) {
  .access-layout {
    grid-template-columns: 1fr;
  }

  .access-brand {
    padding: 40px 24px;
  }

  .access-panel {
    padding: 40px 24px 60px;
  }

  .access-card {
    max-width: 520px;
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    min-width: 0;
    align-items: center;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .hero-gestor .hero-media {
    justify-items: end;
  }

  .feature-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .testimonials-highlight {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
  }

  .cta-band {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .video-section {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }

  .hero-card {
    margin-left: auto;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .btn,
  .btn-primary,
  .btn-ghost,
  .btn-danger,
  .store-badge,
  .nav-pill,
  .card,
  .step-card,
  .benefit-card,
  .compare-card,
  .media-frame,
  .faq details,
  .contact-card,
  .footer-social a,
  .footer-col a,
  .footer-links a {
    transition: none;
  }
}

/* Privacy policy page */
.policy-page {
  background: var(--bg);
}

.policy-page .nav {
  max-width: 980px;
}

.policy-hero {
  padding: 88px 20px 20px;
}

.policy-shell {
  max-width: 980px;
  margin: 0 auto;
}

.policy-shell + .policy-shell {
  padding-bottom: 56px;
}

.policy-updated {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.policy-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: grid;
  gap: 14px;
}

.policy-content h2 {
  margin-top: 8px;
  font-size: 1.55rem;
}

.policy-content h3 {
  margin-top: 8px;
  font-size: 1.2rem;
}

.policy-content h4 {
  margin-top: 4px;
  font-size: 1.05rem;
}

.policy-content p {
  color: var(--muted);
}

.policy-content ul {
  margin-left: 20px;
  color: var(--muted);
}

.policy-content li + li {
  margin-top: 8px;
}

.policy-content ul ul {
  margin-top: 8px;
}

.policy-content a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-note {
  font-size: 0.95rem;
}

.policy-footer {
  padding-top: 30px;
}

@media (max-width: 700px) {
  .section {
    padding: 74px 16px;
  }

  .section::before {
    top: 10px;
    bottom: 10px;
    border-radius: 26px;
  }

  .hero-gestor {
    padding: 76px 16px 72px;
  }

  .hero-gestor .media-card {
    padding: 10px;
    border-radius: 16px;
  }

  .hero-banner-video {
    max-height: 56vh;
  }

  .hero-video-note {
    font-size: 0.88rem;
    left: 18px;
    right: 18px;
    bottom: 72px;
    padding: 10px 12px;
  }

  .tabs {
    width: 100%;
    justify-content: center;
    border-radius: 24px;
  }

  .tab-button {
    flex: 1 1 180px;
  }

  .cta-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .cta-card h2 {
    max-width: none;
  }

  .cta-card p {
    font-size: 0.98rem;
  }

  .testimonials-highlight {
    padding: 18px;
    border-radius: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }

  .policy-hero {
    padding: 82px 16px 12px;
  }

  .policy-content {
    padding: 22px;
  }

  .policy-page .nav {
    padding: 12px 16px;
  }
}
