:root {
  --bg: #0b1220;
  --bg-2: #111b2e;
  --card: #162033;
  --line: rgba(226, 248, 252, 0.12);
  --text: #eef6f8;
  --muted: #9fb0c0;
  --cyan: #22d3ee;
  --cyan-2: #67e8f9;
  --whatsapp: #25d366;
  --radius: 22px;
  --wrap: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(34, 211, 238, 0.16), transparent 50%), var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(var(--wrap), calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(11, 18, 32, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.brand-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(268px, 58vw);
  background: transparent;
}
.top-nav { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }
.top-nav a:hover { color: var(--text); }
.top-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
}
.btn-sm { min-height: 40px; padding: 0 14px; font-size: 14px; }
.btn-primary { background: var(--cyan); color: #062027; }
.btn-primary:hover { background: var(--cyan-2); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-whatsapp { background: var(--whatsapp); color: #06240f; }
.hero-actions .btn { width: 100%; }

.hero { padding: 36px 0 20px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}
.profile-card, .hero-side, .offer-card, .manager-card, .contact-box, .steps article {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.profile-card, .hero-side { padding: 32px; }
.avatar {
  width: 168px;
  height: 168px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid rgba(34, 211, 238, 0.45);
  margin-bottom: 18px;
}
.kicker, .eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
h1, h2, h3 { margin: 0 0 10px; letter-spacing: -0.03em; }
h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(26px, 4vw, 36px); }
.role, .lead, .section p, .hero-side p { color: var(--muted); line-height: 1.6; }
.hero-actions { display: grid; gap: 10px; margin-top: 22px; }
.hero-side { display: flex; flex-direction: column; justify-content: center; }

.section { padding: 64px 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 720px; margin-bottom: 28px; }
.offer-grid, .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.steps { grid-template-columns: repeat(4, 1fr); }
.offer-card, .steps article { padding: 22px; }
.steps article span { color: var(--cyan); font-weight: 800; }

.manager-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 28px;
  align-items: center;
}
.manager-card img {
  width: 220px;
  height: 220px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 18%;
}

.contact-box { padding: 32px; max-width: 720px; }
.contact-actions { margin-top: 22px; max-width: 420px; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { display: grid; gap: 4px; margin-bottom: 16px; }
.contact-list span { color: var(--muted); font-size: 13px; }
.contact-list a { color: var(--cyan); font-weight: 600; }

.site-footer { padding: 28px 0 110px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer-inner { border-top: 1px solid var(--line); padding-top: 22px; }

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 8px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(11, 18, 32, 0.94);
  border-top: 1px solid var(--line);
  z-index: 30;
}
.sticky-cta .btn { flex: 1; min-height: 46px; font-size: 13px; }

@media (max-width: 860px) {
  .top-nav, .top-actions .btn-sm { display: none; }
  .brand-logo { height: 30px; max-width: min(210px, 62vw); }
  .hero-grid, .offer-grid, .steps, .manager-card {
    grid-template-columns: 1fr;
  }
  .manager-card img { width: 100%; height: 240px; }
  .sticky-cta { display: flex; }
}
