:root {
  --gold: #e8c547;
  --ink: #30323d;
  --slate: #4d5061;
  --blue: #5c80bc;
  --bg: #f7f8f5;
  --white: #ffffff;
  --success: #177245;
  --danger: #b42318;
  --shadow: 0 20px 40px rgba(48, 50, 61, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(92, 128, 188, 0.15), transparent 28%),
    radial-gradient(circle at top left, rgba(232, 197, 71, 0.14), transparent 24%),
    linear-gradient(180deg, #fbfbfa 0%, #f1f2ee 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.svg-icon {
  display: block;
  width: 1.2em;
  height: 1.2em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 245, 0.88);
  border-bottom: 1px solid rgba(77, 80, 97, 0.1);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #f7e496);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.brand span:last-child {
  line-height: 1.15;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(77, 80, 97, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.nav-toggle-label {
  font-size: 14px;
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 14px;
}

.nav-toggle-box span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--slate);
  font-weight: 600;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
}

.nav-cta,
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--gold);
  color: var(--ink);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: rgba(77, 80, 97, 0.16);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 64px 0 30px;
}

.hero-grid,
.cards,
.footer-grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.hero-card,
.panel,
.card,
.table-wrap {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(77, 80, 97, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.panel-padded,
.form-card,
.card,
.table-wrap {
  padding: 24px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(92, 128, 188, 0.1);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}

h1,
.page-title {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.page-title {
  font-size: 38px;
}

.lead,
.section-lead,
.form-subtitle,
.card p,
.footer p,
.footer li,
.footer a {
  color: var(--slate);
  line-height: 1.7;
}

.lead {
  max-width: 62ch;
  font-size: 18px;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  gap: 14px;
}

.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(205, 209, 196, 0.25);
  border: 1px solid rgba(77, 80, 97, 0.1);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.field {
  margin-bottom: 14px;
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(77, 80, 97, 0.16);
  border-radius: 16px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.notice.success {
  background: rgba(23, 114, 69, 0.1);
  color: var(--success);
}

.notice.error {
  background: rgba(180, 35, 24, 0.1);
  color: var(--danger);
}

.section {
  padding: 30px 0 18px;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(92, 128, 188, 0.12);
  font-size: 22px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin: 38px 0 10px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--ink), var(--slate));
  color: #fff;
}

.cta-band p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-emphasis {
  font-size: 24px;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(77, 80, 97, 0.08);
  text-align: left;
  vertical-align: top;
}

.footer {
  margin-top: 34px;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(77, 80, 97, 0.1);
}

.footer-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 18px;
}

.footer ul {
  margin: 0;
  padding-left: 18px;
}

.tiny {
  margin-top: 18px;
  font-size: 14px;
  color: var(--slate);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #29a96a, #1e7d4f);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 28px;
}

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .footer-grid,
  .grid-2,
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    max-width: calc(100% - 126px);
  }

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

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    margin: 6px 0 2px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(77, 80, 97, 0.1);
    box-shadow: 0 18px 32px rgba(48, 50, 61, 0.12);
  }

  .nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(247, 248, 245, 0.95);
    color: var(--ink);
  }
}
