:root {
  --bg-deep: #031a1e;
  --bg-mid: #07343d;
  --bg-soft: #0c5d66;
  --surface: rgba(8, 53, 61, 0.72);
  --surface-alt: rgba(5, 38, 44, 0.86);
  --line: rgba(147, 233, 226, 0.3);
  --text: #e9fbff;
  --muted: #b2d9dd;
  --accent: #3de2d4;
  --accent-2: #ffb359;
  --radius: 18px;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 15%, #0f7f8b 0%, transparent 35%),
    radial-gradient(circle at 85% 10%, #0a5560 0%, transparent 30%),
    linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-mid) 50%, #021015 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
  line-height: 1.1;
}

p {
  margin: 0;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.background-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.blob-a {
  width: 340px;
  height: 340px;
  background: #27d7bf;
  top: -120px;
  left: -80px;
  animation: float 13s ease-in-out infinite;
}

.blob-b {
  width: 400px;
  height: 400px;
  background: #0f8ab1;
  right: -140px;
  top: 25%;
  animation: float 16s ease-in-out infinite reverse;
}

.blob-c {
  width: 320px;
  height: 320px;
  background: #ffb359;
  bottom: -160px;
  left: 45%;
  animation: float 15s ease-in-out infinite;
}

.grid-mask {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.08;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 24, 28, 0.76);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: clamp(128px, 14vw, 154px);
  height: auto;
   border-radius: 999px;
}

.brand-mark {
  background: linear-gradient(140deg, var(--accent), #87fff5);
  color: #03272e;
  border-radius: 10px;
  padding: 0.2rem 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.brand-name {
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.25rem;
  background: linear-gradient(120deg, #35d7d2, #29b3bf);
  color: #05262c;
  font-weight: 700;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(53, 215, 210, 0.35);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.8rem;
  padding-top: 4.3rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3.4vw, 3.65rem);
}

.hero h1 span {
  color: var(--accent-2);
}

.lead {
  margin-top: 1.2rem;
  color: var(--muted);
  max-width: 63ch;
}

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

.trust-strip {
  list-style: none;
  margin: 1.55rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-strip li {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  color: #c6eef0;
  font-size: 0.88rem;
}

.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(2, 35, 40, 0.95), rgba(5, 65, 74, 0.75));
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-screenshot {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 8px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(61,226,212,0.08);
  overflow: hidden;
  line-height: 0;
}

.hero-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.software-preview {
  margin-top: 2.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 8px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(61,226,212,0.08);
  overflow: hidden;
  line-height: 0;
}

.software-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.card-title {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.kpi-grid {
  display: grid;
  gap: 0.85rem;
}

.kpi-grid article {
  border: 1px solid rgba(149, 235, 226, 0.2);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(6, 76, 84, 0.34);
}

.kpi-grid h3 {
  font-size: 0.88rem;
  color: #bce7ea;
  margin-bottom: 0.25rem;
}

.kpi-grid p {
  font-size: 1.4rem;
  font-weight: 700;
}

.kpi-grid small {
  color: #9ec9ce;
}

.stats {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stats article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: var(--surface);
}

.value {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: #8bfaf0;
  font-weight: 700;
}

.label {
  margin-top: 0.5rem;
  color: var(--muted);
}

.modules,
.automation,
.timeline,
.pricing,
.faqs,
.cta {
  margin-top: 4.3rem;
}

.section-head h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
}

.module-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.module-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem;
  background: var(--surface);
}

.module-card h3 {
  font-size: 1.08rem;
}

.module-card p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.automation-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.automation-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(5, 51, 58, 0.86), rgba(8, 78, 84, 0.48));
}

.automation-card p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.automation-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: #d4eff2;
  display: grid;
  gap: 0.32rem;
}

.billing-toggle {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 45, 51, 0.65);
  padding: 0.25rem;
}

.cycle-btn {
  border: 0;
  background: transparent;
  color: #b6dfe2;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.cycle-btn.active {
  background: linear-gradient(120deg, #35d7d2, #29b3bf);
  color: #05262c;
}

.addon-toggle {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(5, 49, 55, 0.58);
  color: #d0eff2;
  cursor: pointer;
}

.addon-toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: #35d7d2;
}

.addon-pricing {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(7, 58, 64, 0.88), rgba(5, 33, 38, 0.92));
  display: none;
}

.addon-pricing.is-visible {
  display: block;
}

.addon-pricing h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
}

.addon-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.addon-card {
  border: 1px solid rgba(147, 233, 226, 0.28);
  border-radius: 14px;
  padding: 0.95rem;
  background: rgba(7, 70, 76, 0.45);
}

.addon-card.is-selected-addon {
  border-color: rgba(61, 226, 212, 0.88);
  box-shadow: 0 0 0 2px rgba(61, 226, 212, 0.2);
}

.addon-card h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.addon-price {
  margin-top: 0.45rem;
  font-family: "Sora", sans-serif;
  color: #a2f5ee;
  font-weight: 700;
}

.addon-note {
  margin-top: 0.2rem;
  color: #ffd8aa;
  font-size: 0.88rem;
}

.addon-card ul {
  margin: 0.65rem 0 0;
  padding-left: 1rem;
  color: #d0e9ec;
  display: grid;
  gap: 0.25rem;
}

.total-pricing {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  background: linear-gradient(150deg, rgba(10, 72, 80, 0.88), rgba(5, 33, 38, 0.95));
}

.total-pricing h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
}

.total-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.total-grid p {
  margin: 0;
  color: #d5eef2;
}

.total-grid strong {
  color: #b9f7f2;
}

.total-amount {
  margin-top: 0.95rem;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  color: #fff0dc;
}

.total-annual {
  margin-top: 0.2rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #ffd8aa;
  font-weight: 700;
}

.total-note {
  margin-top: 0.4rem;
  color: #c2e2e7;
  font-size: 0.92rem;
}

.timeline ol {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: var(--surface-alt);
}

.timeline span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent-2), #f5cb90);
  color: #2f1800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.timeline p {
  margin-top: 0.4rem;
  color: var(--muted);
}

.price-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  background: rgba(6, 50, 56, 0.72);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.price-card.is-selected {
  border-color: rgba(61, 226, 212, 0.88);
  box-shadow: 0 0 0 2px rgba(61, 226, 212, 0.28);
}

.price-card.featured {
  border-color: rgba(255, 179, 89, 0.8);
  background: linear-gradient(170deg, rgba(20, 83, 93, 0.85), rgba(9, 46, 52, 0.95));
}

.badge {
  display: inline-block;
  width: max-content;
  background: var(--accent-2);
  color: #302000;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
}

.price {
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.currency {
  font-size: 1.05rem;
  color: #bcf2ed;
  margin-right: 0.35rem;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

.price .amount {
  font-size: 1.7rem;
  color: var(--text);
  margin-left: 0;
}

.price-note {
  font-size: 0.92rem;
  color: #b8e5e8;
}

.price-note strong {
  color: var(--accent-2);
}

.annual-total {
  display: block;
  margin-top: 0.2rem;
  color: #9fd0d5;
}

.price-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
  flex: 1;
}

.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(6, 58, 64, 0.72);
  padding: 0.9rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
}

.faq-item p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.15rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #25d366, #18a64c);
  color: #062312;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.72rem 1rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
}

.wa-icon {
  display: inline-flex;
}

.wa-label {
  font-size: 0.92rem;
}

.cta {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem;
  background: linear-gradient(130deg, rgba(12, 107, 118, 0.86), rgba(8, 42, 48, 0.94));
  text-align: center;
}

.cta p {
  margin: 0.8rem auto 0;
  color: #d2f1f4;
  max-width: 68ch;
}

.cta-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: #9bc2c7;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.delay-1 {
  transition-delay: 120ms;
}

.reveal.delay-2 {
  transition-delay: 220ms;
}

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

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

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .stats,
  .module-grid,
  .automation-grid,
  .addon-grid,
  .total-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .main-nav {
    display: none;
  }

  .site-header {
    top: 0.55rem;
    border-radius: 16px;
  }

  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .hero {
    padding-top: 3.2rem;
  }

  .stats,
  .module-grid,
  .automation-grid,
  .addon-grid,
  .total-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    display: flex;
    width: 100%;
  }

  .cycle-btn {
    flex: 1;
  }

  .addon-toggle {
    width: 100%;
    border-radius: 14px;
  }

  .cta {
    padding: 1.2rem;
  }

  .site-footer {
    margin-top: 2rem;
    font-size: 0.92rem;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 0.75rem;
    padding: 0.65rem;
    border-radius: 50%;
  }

  .wa-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
