:root {
  --navy-950: #08131f;
  --navy-900: #0b1f33;
  --navy-800: #0f2a45;
  --navy-700: #163a5c;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-300: #5eead4;
  --ink: #0b1f33;
  --muted: #4b5a6b;
  --line: #e4e9ee;
  --bg: #ffffff;
  --bg-alt: #f5f8fa;
  --radius: 16px;
  --shadow: 0 20px 45px -20px rgba(11, 31, 51, 0.25);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  color: var(--navy-950);
  box-shadow: 0 12px 24px -10px rgba(20, 184, 166, 0.55);
}

.btn-primary:hover {
  box-shadow: 0 16px 28px -10px rgba(20, 184, 166, 0.65);
}

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

.btn-ghost:hover {
  border-color: var(--teal-500);
  color: var(--teal-500);
}

.btn-on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}

/* backdrop-filter lives on a pseudo-element (not .site-header itself) so the
   header never becomes the containing block for its position:fixed mobile
   nav — a filter/backdrop-filter on an element traps fixed descendants
   inside its own box instead of the viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-word strong {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--navy-900);
}

.brand-word span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav a:hover {
  color: var(--teal-500);
  border-color: var(--teal-500);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-mobile-cta {
  display: none;
  margin-top: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy-900);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 18%, rgba(45, 212, 191, 0.18), transparent 45%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  color: #fff;
  padding: 76px 0 96px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-300);
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.3);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal-400);
}

.hero-panel {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.6);
}

.hero-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 18px;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-stack-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stack-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
  flex-shrink: 0;
}

.hero-stack-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-stack-item span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

/* Sections */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-alt {
  background: var(--bg-alt);
}

/* Value props */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  text-align: left;
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(15, 42, 69, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal-500);
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy-900);
}

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

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-500);
  background: rgba(20, 184, 166, 0.1);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--navy-900);
}

.product-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-300);
  flex-shrink: 0;
}

.product-badge svg {
  width: 26px;
  height: 26px;
}

.product-card p.product-desc {
  color: var(--muted);
  font-size: 0.96rem;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 4px 0 8px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--navy-800);
}

.product-features svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.product-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.product-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-link svg {
  width: 16px;
  height: 16px;
}

.product-card.featured {
  border-color: rgba(20, 184, 166, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f2fbfa 100%);
}

/* Consultoria mensal spotlight */
.spotlight {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: #fff;
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.spotlight-intro .section-eyebrow {
  color: var(--teal-300);
}

.spotlight-intro h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.spotlight-intro p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  font-size: 1rem;
}

.spotlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
}

.spotlight-list svg {
  width: 17px;
  height: 17px;
  color: var(--teal-400);
  flex-shrink: 0;
  margin-top: 2px;
}

/* How it works / process */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 30px 24px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--teal-300);
  font-weight: 800;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

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

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.98rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal-500);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Final CTA */
.cta-band {
  background: linear-gradient(135deg, var(--teal-500), #0d9488);
  border-radius: 28px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--navy-950);
}

.cta-band h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(8, 19, 31, 0.75);
  max-width: 46ch;
}

.cta-band .btn-primary {
  background: var(--navy-950);
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(8, 19, 31, 0.5);
}

.cta-band .btn-primary:hover {
  box-shadow: 0 18px 30px -12px rgba(8, 19, 31, 0.6);
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-word strong {
  color: #fff;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--teal-300);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  z-index: 90;
  transition: transform 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

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

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

  .spotlight {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* The hamburger menu takes over earlier than the other breakpoints (1060px
   instead of 720px) because the full desktop header — brand + 5 nav links +
   1 CTA button — needs about 1040px to fit on one line. flex-shrink is
   disabled on the header's direct children and on each nav link (see
   .brand, .main-nav, .main-nav a, .header-cta) so a too-narrow viewport
   can't silently squash text into a wrap/overlap — it just falls back to
   the hamburger below this width instead. */
@media (max-width: 1060px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-top: 1px solid var(--line);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile-cta {
    display: inline-flex;
  }
}

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

  .product-features {
    grid-template-columns: 1fr;
  }

  .spotlight-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }
}
