:root {
  --primary: #5B6EF5;
  --primary-dark: #4b5fe0;
  --primary-soft: rgba(91, 110, 245, 0.12);
  --bg: #F5F7FB;
  --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: var(--bg);
  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;
}

.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:hover {
  transform: translateY(-1px);
}

.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;
}

.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(-2px);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  transform: translateY(-2px);
}

.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(-2px);
}

.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;
}

.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);
}

.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;
}

.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: 80px 20px;
}

.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: 36px;
}

.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: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow);
  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;
}

.testimonial p {
  font-size: 1.05rem;
}

.testimonial span {
  display: block;
  color: var(--muted-light);
  font-size: 0.95rem;
}

.cta-section {
  padding-top: 40px;
  padding-bottom: 100px;
}

.cta-card {
  background: linear-gradient(120deg, rgba(91, 110, 245, 0.18), rgba(255, 255, 255, 0.9));
  border-radius: 28px;
  padding: 36px;
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
}

.cta-card p {
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.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: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  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 {
  background: #fff;
}

.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;
}

.tab-button {
  border: 1px solid rgba(91, 110, 245, 0.3);
  background: #fff;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.tab-button.is-active {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

.step-card {
  background: #eef2f7;
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  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;
}

.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: 16px;
  padding: 22px 24px;
  box-shadow: 0 12px 26px 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: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.benefit-card p {
  color: var(--muted);
  margin-top: 8px;
}

.feature-section {
  display: grid;
  gap: 32px;
  align-items: center;
}

.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: 18px;
  padding: 0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  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: 12px 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: #fff;
  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;
}

.site-footer {
  background: linear-gradient(110deg, #2b3250, #5b6ef5 55%, #8ba2ff);
  color: #fff;
  padding: 60px 20px 30px;
}

.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;
}

.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;
}

.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: 0;
  padding: 60px 20px 40px;
  display: grid;
  gap: 24px;
  color: #fff;
  background: linear-gradient(120deg, #1f2b5e 0%, #4b5fe0 45%, #5B6EF5 100%);
}

.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;
}

.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: #fff;
}

.site-footer a,
.site-footer p,
.site-footer span {
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(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;
  }

  .feature-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .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 {
    transition: none;
  }
}
