:root {
  --bg: #eef2f8;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --text: #0f1f35;
  --muted: #6a788e;
  --line: #dfe7f1;
  --primary: #0f66da;
  --primary-2: #2fa8ff;
  --navy: #031b36;
  --navy-2: #062748;
  --shadow: 0 18px 50px rgba(10, 24, 44, 0.08);
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

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

.narrow { max-width: 960px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 231, 241, 0.85);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 42px;        /* altura ideal para topbar de 76px */
  width: auto;         /* mantém proporção */
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #526177;
}

.nav a:hover { color: var(--primary); }

.btn {
  min-height: 52px;
  border-radius: 16px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

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

.btn-sm {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1c79ff);
  color: white;
  box-shadow: 0 14px 26px rgba(15, 102, 218, 0.22);
}

.btn-white {
  background: white;
  color: var(--navy);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.28);
}

.inline-link {
  font-weight: 700;
  color: var(--navy);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  gap: 10px;
  border-top: 1px solid rgba(223, 231, 241, 0.85);
}

.mobile-menu.open { display: grid; }
.mobile-menu a {
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at left top, rgba(41, 145, 255, 0.18), transparent 26%),
              radial-gradient(circle at right center, rgba(47, 168, 255, 0.1), transparent 24%),
              linear-gradient(180deg, #031124 0%, #031b36 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.28;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 27, 54, .92), rgba(3, 27, 54, .65));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 0 84px;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
}

.hero-title {
  max-width: 980px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 22px 0 18px;
}

.hero-title span {
  color: #3fb7ff;
}

.hero-copy {
  max-width: 860px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0 0 28px;
}

.hero-search {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 0;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.search-icon {
  display: grid;
  place-items: center;
  color: #93a1b3;
  font-size: 21px;
}

.hero-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 8px;
  color: var(--text);
  background: transparent;
}

.hero-tags {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.tag {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.86);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.tag.active {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.26);
}

.hero-stats {
  margin-top: 40px;
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px;
}

.stat-card strong {
  display: block;
  font-size: 42px;
  letter-spacing: -0.06em;
  margin-bottom: 6px;
}

.stat-card span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.section {
  padding: 84px 0;
}

.section-light { background: #f3f5f8; }
.section-white { background: white; }

.section-head,
.section-title-center {
  margin-bottom: 32px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-head h2,
.section-title-center h2,
.callout-content h2,
.cta-center h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-head p,
.section-title-center p,
.callout-content p,
.cta-center p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.section-title-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.listing-grid,
.benefit-grid,
.profiles-grid,
.steps-grid {
  display: grid;
  gap: 24px;
}

.listing-grid { grid-template-columns: repeat(3, 1fr); }
.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.profiles-grid { grid-template-columns: repeat(4, 1fr); }
.steps-grid { grid-template-columns: repeat(4, 1fr); margin-top: 28px; }

.listing-card,
.benefit-card,
.profile-card,
.step-card,
.mini-panel,
.commission-feature,
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.listing-card {
  overflow: hidden;
}

.listing-image-wrap {
  position: relative;
  overflow: hidden;
}

.listing-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .45s ease;
}

.listing-card:hover img { transform: scale(1.05); }

.pill {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.listing-body {
  padding: 20px;
}

.listing-price {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.listing-body h3,
.benefit-card h3,
.profile-card h3,
.step-card h3,
.commission-feature h3,
.mini-panel h4 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.listing-body p,
.benefit-card p,
.profile-card p,
.step-card p,
.commission-feature p,
.mini-panel p,
.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.listing-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #738198;
  font-size: 14px;
  margin-top: 16px;
}

.benefit-card,
.profile-card,
.step-card,
.mini-panel,
.commission-feature {
  padding: 28px;
}

.benefit-icon,
.profile-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.green { background: #e8fbf1; }
.blue { background: #e8f2ff; }
.gold { background: #fff6da; }
.purple { background: #f3eaff; }
.navy { background: #e6f0ff; }
.indigo { background: #ececff; }
.emerald { background: #e7fbf2; }
.rose { background: #ffe8ef; }

.commission-wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}

.commission-feature {
  background: linear-gradient(135deg, #03325d, #0a5ebf 62%, #1d90ff);
  color: white;
  position: relative;
  overflow: hidden;
}

.commission-feature::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: rgba(255,255,255,0.08);
}

.commission-feature p,
.commission-feature li {
  color: rgba(255,255,255,0.88);
}

.commission-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.commission-feature h3 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 14px;
}

.commission-feature ul {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.commission-side {
  display: grid;
  gap: 18px;
}

.mini-panel.subtle {
  background: #f7faff;
}

.profile-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 700;
}

.callout {
  background: linear-gradient(135deg, #032f5d, #0e66d8);
  color: white;
  border-radius: 30px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.callout::before,
.callout::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.callout::before {
  width: 160px;
  height: 160px;
  left: -60px;
  bottom: -80px;
}

.callout::after {
  width: 200px;
  height: 200px;
  right: -80px;
  top: -80px;
}

.callout-content,
.callout-actions { position: relative; z-index: 1; }

.callout-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.step-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: #eaf3ff;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: white;
  border: 0;
  padding: 24px 26px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 26px;
  color: var(--primary);
  transition: transform .22s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height .28s ease, padding .28s ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 26px 24px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.cta-final {
  background: linear-gradient(135deg, #033a72, #0d69d9);
  color: white;
}

.cta-center {
  text-align: center;
}

.cta-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  background: #031125;
  color: rgba(255,255,255,0.84);
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .7fr);
  gap: 28px;
}

.brand-footer { color: white; margin-bottom: 16px; }

.footer-brand p,
.footer-col a {
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  font-size: 14px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-col h4 {
  margin: 0 0 10px;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.44);
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .listing-grid,
  .benefit-grid,
  .profiles-grid,
  .steps-grid,
  .footer-grid,
  .commission-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .commission-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .nav,
  .topbar-inner > .btn-primary { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }
  .hero-inner { min-height: auto; padding: 92px 0 72px; }
  .hero-search { grid-template-columns: 44px 1fr; }
  .hero-search .btn-primary { grid-column: 1 / -1; }
  .hero-stats,
  .listing-grid,
  .benefit-grid,
  .profiles-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .callout {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .topbar-inner { min-height: 68px; }
  .hero-title { font-size: 42px; }
  .hero-copy { font-size: 16px; }
  .hero-search { border-radius: 18px; }
  .hero-tags { gap: 8px; }
  .benefit-card,
  .profile-card,
  .step-card,
  .mini-panel,
  .commission-feature,
  .faq-question,
  .faq-answer,
  .callout { padding-left: 18px; padding-right: 18px; }
  .section { padding: 64px 0; }
}
