:root {
  --bg: #0b0b0f;
  --bg-soft: #11131a;
  --surface: rgba(18, 22, 31, 0.88);
  --surface-strong: rgba(17, 21, 31, 0.96);
  --border: rgba(148, 163, 184, 0.12);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --primary: #3b82f6;
  --primary-strong: #2563eb;
  --primary-soft: rgba(59, 130, 246, 0.18);
  --success: #22c55e;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.24), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.18), transparent 22%),
    linear-gradient(180deg, #090a0f 0%, #0b0b0f 48%, #090b12 100%);
  color: var(--text);
}

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(11, 11, 15, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 3.8rem;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer-logo {
  display: block;
  width: auto;
  height: 3rem;
  margin-bottom: 0.9rem;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.brand-logo.is-ready,
.footer-logo.is-ready {
  opacity: 1;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

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

.mobile-login-link {
  display: none;
  color: #bfdbfe;
  font-weight: 600;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.36);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(148, 163, 184, 0.18);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.28);
}

.button-small {
  min-height: 2.9rem;
  padding: 0.8rem 1.2rem;
}

.hero {
  padding-top: 3.75rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.hero h1,
.section-heading h2,
.trust-panel h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  max-width: 12ch;
}

.hero-subtitle {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: #d3deee;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-points {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, var(--primary));
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.08);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 10% -12% 10%;
  height: 25%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.38), transparent 65%);
  filter: blur(30px);
  z-index: -1;
}

.dashboard-card,
.info-card,
.feature-card,
.step-card,
.benefit-card,
.product-card,
.trust-panel,
.final-cta {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(21, 26, 37, 0.92), rgba(13, 16, 24, 0.92));
  box-shadow: var(--shadow);
}

.dashboard-card {
  padding: 1rem;
  border-radius: 28px;
}

.dashboard-topbar {
  display: flex;
  gap: 0.45rem;
  padding-bottom: 1rem;
}

.dashboard-topbar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
}

.dashboard-sidebar {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-line {
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-line.active {
  background: linear-gradient(90deg, var(--primary), rgba(59, 130, 246, 0.25));
}

.dashboard-content {
  display: grid;
  gap: 1rem;
}

.dashboard-kpis,
.dashboard-panels,
.cards-grid,
.steps-grid,
.benefits-grid,
.products-grid {
  display: grid;
  gap: 1rem;
}

.kpi-card,
.panel {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.kpi-card span,
.panel-head span,
.product-tag {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.kpi-card strong,
.panel-head strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.7rem;
  height: 170px;
  padding-top: 1.25rem;
}

.chart-bars span {
  flex: 1;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #60a5fa, #1d4ed8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.timeline-list {
  display: grid;
  gap: 1rem;
  padding-top: 1.25rem;
}

.timeline-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.timeline-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.timeline-item small {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.status-dot {
  flex: none;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.1);
  margin-top: 0.2rem;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.trust-panel h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p,
.trust-panel p,
.final-cta p,
.info-card p,
.feature-card p,
.step-card p,
.benefit-card p,
.product-card p,
.site-footer p {
  color: var(--text-muted);
  line-height: 1.7;
}

.cards-grid-3,
.steps-grid,
.products-grid,
.benefits-grid {
  grid-template-columns: 1fr;
}

.info-card,
.feature-card,
.step-card,
.benefit-card,
.product-card {
  padding: 1.6rem;
  border-radius: var(--radius);
}

.info-card h3,
.feature-card h3,
.step-card h3,
.benefit-card h3,
.product-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.icon-box,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border-radius: 18px;
  background: var(--primary-soft);
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.24);
}

.icon-box {
  width: 3rem;
  height: 3rem;
  font-weight: 700;
}

.step-number {
  min-width: 3.4rem;
  padding: 0.75rem 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 68%);
}

.product-tag {
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-panel {
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 32px;
}

.final-cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 32px;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-link {
  color: #bfdbfe;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 136px;
  min-height: 3.35rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(22, 163, 74, 0.36);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

@media (min-width: 720px) {
  .cards-grid-3,
  .steps-grid,
  .products-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .section {
    padding: 6.5rem 0;
  }

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

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 3rem;
  }

  .dashboard-panels {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

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

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

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

  .final-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 719px) {
  .mobile-login-link {
    display: inline-flex;
  }

  .nav {
    min-height: 84px;
  }

  .brand-logo {
    height: 3.15rem;
  }

  .footer-logo {
    height: 3rem;
  }

  .site-header .button-small {
    display: none;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    grid-auto-flow: column;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
