:root {
  --bg: #0f0718;
  --panel: #171022;
  --soft: #f8f2ff;
  --text: #251b2f;
  --muted: #685b73;
  --white: #ffffff;
  --gold: #f6b54b;
  --pink: #e436a1;
  --purple: #6d2ed1;
  --green: #1fbf68;
  --shadow: 0 22px 60px rgba(36, 10, 64, .18);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--purple);
  border-radius: 10px;
  z-index: 20;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(109, 46, 209, .12);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 210px; height: auto; }
.nav { display: flex; gap: 22px; align-items: center; font-weight: 700; color: #34223f; }
.nav a { padding: 8px 0; }
.nav a:hover { color: var(--purple); }

.section { padding: 84px 0; }
.section-dark { color: var(--white); background: var(--bg); }
.section-soft { background: var(--soft); }
.center { text-align: center; }
.narrow { max-width: 780px; }

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 7, 24, .94) 0%, rgba(38, 12, 55, .74) 52%, rgba(15, 7, 24, .28) 100%),
    url('../img/hero.webp') center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -180px -10%;
  height: 260px;
  background: radial-gradient(circle, rgba(228, 54, 161, .3), transparent 65%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: 32px;
  align-items: center;
}
.hero-content h1 {
  margin: 12px 0 18px;
  max-width: 720px;
  font-size: clamp(2.35rem, 6vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.hero-content p { max-width: 600px; font-size: 1.15rem; color: rgba(255,255,255,.86); }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  font-size: .78rem;
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 16px 34px rgba(228, 54, 161, .3);
}
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.btn-light { color: var(--purple); border-color: rgba(109, 46, 209, .22); background: var(--white); }
.note { font-size: .94rem !important; color: rgba(255,255,255,.7) !important; }
.hero-card {
  justify-self: end;
  width: min(330px, 100%);
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.hero-card strong { display: block; font-size: 1.45rem; margin-bottom: 8px; }
.hero-card span { color: rgba(255,255,255,.78); }

.section-head { max-width: 760px; margin-bottom: 36px; }
h2 { margin: 10px 0 14px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.045em; }
h3 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.2; }
p { margin: 0 0 16px; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.split img, .card, .contact-card, .testimonial-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(109, 46, 209, .1);
}
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 22px; }
.card-body p { font-size: .96rem; }

.cta { padding: 64px 0; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-box h2 { margin-bottom: 8px; }
.cta-box p { color: rgba(255,255,255,.76); margin-bottom: 0; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: center;
  gap: 24px;
}
.testimonial-grid img { width: 100%; background: var(--white); border: 1px solid rgba(109, 46, 209, .12); }

.contact-card {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  padding: 52px 28px;
  background: var(--white);
  border: 1px solid rgba(109, 46, 209, .12);
}
.contact-actions { justify-content: center; }

.footer {
  padding: 24px 0;
  background: #09040f;
  color: rgba(255,255,255,.78);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.footer p { margin: 0; color: rgba(255,255,255,.72); }
.footer a { color: var(--gold); font-weight: 800; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(31, 191, 104, .38);
}

@media (max-width: 940px) {
  .nav { display: none; }
  .hero { min-height: 640px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-card { justify-self: start; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cta-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1120px); }
  .section { padding: 58px 0; }
  .header-inner { min-height: 68px; }
  .brand img { width: 174px; }
  .hero { min-height: 680px; }
  .hero-bg { background-position: center; }
  .hero-content h1 { font-size: clamp(2.35rem, 13vw, 4rem); }
  .hero-content p { font-size: 1rem; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .cards, .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid { max-width: 340px; margin-inline: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .whatsapp-float { left: 14px; right: 14px; bottom: 12px; }
}
