:root {
  --navy: #0f172a;
  --navy-deep: #07111f;
  --navy-2: #1e3a5f;
  --navy-card: #111f34;
  --orange: #f97316;
  --orange-soft: #ff9a18;
  --orange-dark: #d94b08;
  --green: #16a34a;
  --green-dark: #12833d;
  --sky: #38bdf8;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f3f6fa;
  --white: #ffffff;
  --dark-text: #0f172a;
  --dark-muted: #b8c3d3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    radial-gradient(circle at 8% 50%, rgba(249, 115, 22, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.96), rgba(10, 20, 34, 0.92));
  border-bottom: 1px solid rgba(249, 115, 22, 0.34);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.24);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, 0.42), transparent 58%);
  pointer-events: none;
}

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

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand::before {
  content: "";
  position: absolute;
  inset: -9px -14px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  opacity: 0.9;
}

.brand img {
  position: relative;
  width: 184px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(249, 115, 22, 0.16));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand strong {
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1;
}

.brand span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.9rem;
  font-weight: 800;
  color: #e8eef7;
}

.navlinks a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.navlinks a:hover {
  color: var(--white);
  background: rgba(249, 115, 22, 0.18);
}

.navlinks a:first-child {
  color: var(--white);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.28), rgba(249, 115, 22, 0.14));
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--orange-soft), var(--orange));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
}

.topbar .btn-primary {
  background: linear-gradient(180deg, #19bd58, var(--green));
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.28);
}

.topbar .btn-primary::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.topbar .btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  border-color: rgba(249, 115, 22, 0.65);
  color: #fff7ed;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 38%, rgba(249, 115, 22, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.99) 0%, rgba(7, 17, 31, 0.92) 46%, rgba(7, 17, 31, 0.42) 100%),
    url("hero-mbarete.png") center / cover no-repeat;
}

.hero .container {
  position: relative;
  padding: 80px 0 112px;
}

.eyebrow {
  display: inline-flex;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
  margin: auto 10px auto 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
  margin: 0;
}

.hero h1 {
  color: var(--white);
  max-width: 780px;
  font-size: clamp(2.15rem, 4vw, 4.8rem);
  margin-bottom: 20px;
}

.hero p {
  max-width: 650px;
  margin: 0 0 28px;
  font-size: 1.18rem;
  color: #dce6f2;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  position: relative;
  margin-top: -64px;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid rgba(15, 23, 42, 0.92);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

.trust-item {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--navy);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  padding: 76px 0;
}

section:not(.hero):not(.page-hero):not(.cta-band) {
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 12px;
  color: var(--navy);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

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

.soft {
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 246, 250, 0.98)),
    var(--soft);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card,
.price-card {
  background: var(--white);
  border: 2px solid rgba(15, 23, 42, 0.9);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

.card:hover,
.price-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  transition: border-color 160ms ease, transform 160ms ease;
}

.card h3,
.price-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin: 0 0 16px;
}

.card a {
  font-weight: 800;
  color: var(--orange-soft);
  text-decoration: none;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card.featured {
  border: 2px solid var(--orange);
  position: relative;
  box-shadow: 0 28px 70px rgba(249, 115, 22, 0.17), 0 18px 46px rgba(15, 23, 42, 0.1);
}

.badge {
  display: inline-flex;
  width: fit-content;
  background: #fff1e7;
  color: var(--orange-dark);
  border: 1px solid #ffd2b4;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.price {
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
  margin: 12px 0 4px;
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.minimum {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.features {
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.price-card .btn {
  margin-top: auto;
}

.rubros a {
  text-decoration: none;
}

.cta-band {
  background:
    radial-gradient(circle at 78% 30%, rgba(249, 115, 22, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-2));
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.cta-band p {
  color: #d8e5ef;
}

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

details {
  border: 2px solid rgba(15, 23, 42, 0.9);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

.footer {
  background: var(--navy-deep);
  color: #d8e5ef;
  padding: 36px 0;
  border-top: 1px solid rgba(249, 115, 22, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.footer a {
  color: #d8e5ef;
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--green);
  color: var(--white);
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  font-weight: 900;
  text-decoration: none;
}

.page-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(249, 115, 22, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 86px 0;
}

.page-hero h1 {
  color: var(--white);
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 760px;
  color: #d8e5ef;
  font-size: 1.12rem;
}

.content {
  max-width: 860px;
}

.content h2 {
  margin: 30px 0 10px;
}

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

.content h2 {
  color: var(--navy);
}

@media (max-width: 860px) {
  .nav {
    position: relative;
    min-height: 72px;
    align-items: center;
    padding: 0;
  }

  .brand img {
    width: 154px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .navlinks {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-left: 0;
    padding: 10px;
    border-radius: 10px;
    background: rgba(7, 17, 31, 0.98);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.32);
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks a {
    justify-content: flex-start;
    border-radius: 8px;
    min-height: 42px;
  }

  .topbar .btn-primary {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.9) 67%, rgba(15, 23, 42, 0.62) 100%),
      url("hero-mbarete.png") center / cover no-repeat;
  }

  .trust-row {
    margin-top: 0;
  }

  .trust-grid,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  section {
    padding: 54px 0;
  }
}
