:root {
  --bg: #07111f;
  --bg-soft: #0d1a2d;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7fb;
  --muted: #a8b4c7;
  --primary: #d8b15f;
  --primary-dark: #b78d39;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(75, 111, 255, 0.18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(216, 177, 95, 0.12), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #091427 50%, #050d19 100%);
  color: var(--text);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #f5d28d);
  color: #09111d;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0;
}

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

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.eyebrow,
.section-label,
.stat-kicker,
.card-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow,
.section-label,
.stat-kicker {
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions,
.stack-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin: 2rem 0 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #f0ce84);
  color: #09111d;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
}

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

.btn-large {
  min-height: 58px;
  padding-inline: 1.65rem;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
}

.hero-highlights li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -7% -5% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(216, 177, 95, 0.26);
  filter: blur(60px);
  z-index: 0;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  object-position: center top;
}

.hero-card-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(6, 12, 25, 0.8));
}

.stats {
  padding: 0 0 2rem;
}

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

.stats-grid article,
.card-link,
.cta-box {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(20px);
}

.stats-grid article {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
}

.stats-grid strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.45;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-block: 1px solid rgba(255,255,255,0.04);
}

.section-grid,
.media-grid,
.cta-box,
.section-head {
  display: grid;
  gap: 2rem;
}

.section-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.section-head {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: end;
  margin-bottom: 2rem;
}

.section h2,
.cta-box h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  margin: 0.45rem 0 0;
  letter-spacing: -0.04em;
}

.section p,
.section-intro,
.cta-box p,
.footer p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.section-grid p + p,
.media-copy p + .stack-actions {
  margin-top: 1rem;
}

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

.card-link {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(216, 177, 95, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.card-tag {
  color: var(--primary);
}

.card-link strong {
  display: block;
  margin: 0.7rem 0 0.6rem;
  font-size: 1.08rem;
}

.card-link p {
  color: var(--muted);
  line-height: 1.7;
}

.accent-card {
  background: linear-gradient(180deg, rgba(216,177,95,0.18), rgba(255,255,255,0.05));
}

.media-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.embed-wrap {
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.cta-section {
  padding-top: 1rem;
  padding-bottom: 5.5rem;
}

.cta-box {
  grid-template-columns: 1fr auto;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 2rem;
  gap: 1.25rem 2rem;
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 0 2.4rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  color: #09111d;
  font-weight: 800;
  background: linear-gradient(135deg, #e8c77d, var(--primary));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

@media (max-width: 980px) {
  .hero-grid,
  .stats-grid,
  .section-grid,
  .section-head,
  .cards-grid,
  .media-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card img {
    aspect-ratio: 16 / 12;
    object-position: center 15%;
  }

  .cta-box {
    padding: 1.5rem;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(7, 17, 31, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .lead {
    font-size: 1rem;
  }

  .btn,
  .btn-large,
  .btn-ghost,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .whatsapp-float {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}
