:root {
  --bg-main: #ffffff;
  --bg-soft: #f5f6fa;
  --text-main: #222222;
  --text-muted: #666666;
  --primary: #1f3b61;
  --primary-light: #2f5f9c;
  --accent: #c6a667;
  --border-soft: #dde1ea;
  --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.06);
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header / Nav */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-years {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-left: 0.25rem;
  padding: 0.22rem 0.55rem;

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;

  color: var(--accent);
  border: 1px solid rgba(198, 166, 103, 0.65);
  background: rgba(198, 166, 103, 0.10);
  border-radius: 999px;
}

/* Espaço para sua logo em imagem */
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #ffffff;
  background: linear-gradient(135deg, #2196f3, #1f3b61);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span:first-child {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.logo-text span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* nav principal (desktop) */
.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* botão hambúrguer (mobile) */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.35rem;
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

/* animação para X quando aberto */
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-contact {
  display: none;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 3rem;
  align-items: center;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--primary);
}

.hero-title strong {
  color: var(--primary-light);
}

.hero-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background: var(--bg-soft);
  border: 1px solid #e1e4ef;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--primary-light);
}

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

.btn-ghost:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

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

.hero-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.hero-card-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-card-list li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.28rem;
  flex-shrink: 0;
}

.hero-contact {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-contact strong {
  color: var(--primary);
}

/* Stats no início */

.stats {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
}

.stats-inner {
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-soft);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.stat-item {
  min-width: 180px;
  flex: 1;
}

.stat-item span:first-child {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-item span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Sections */

section {
  padding: 3rem 1.25rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
  color: var(--primary);
}

.section-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.6fr);
  gap: 2rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
  font-size: 1.05rem;
  color: var(--primary);
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill-list li {
  font-size: 0.76rem;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  background: var(--bg-soft);
  color: var(--text-muted);
  border: 1px solid #e1e4ef;
}

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

.columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.list-compact {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.list-compact li {
  margin-bottom: 0.4rem;
}

.divider-soft {
  height: 1px;
  background: var(--border-soft);
  margin: 2.5rem 0;
}

/* Metodologia */

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.metric {
  min-width: 140px;
  flex: 1;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-soft);
  padding: 0.9rem 1rem;
  background: var(--bg-soft);
}

.metric span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.metric span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contato */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
  gap: 2rem;
}

form {
  display: grid;
  gap: 0.8rem;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.15rem;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

textarea {
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 1px rgba(47, 95, 156, 0.1);
}

.contact-info {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info p {
  margin: 0 0 0.5rem;
}

.contact-info strong {
  color: var(--primary);
}

/* Footer */

footer {
  border-top: 1px solid var(--border-soft);
  background: #fafbff;
  padding: 1.2rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

/* Responsivo */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2.5rem;
.logo-area {
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
  }

  .logo-years {
    margin-left: 0;
    margin-top: 0.1rem;
    font-size: 0.58rem;
    padding: 0.2rem 0.5rem;
  }

  }

  .two-cols,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .columns-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-container {
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-main {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 0.75rem 1.25rem 1rem;
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-main.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.95rem;
  }

  .nav-contact {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  .stats-inner {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .columns-3,
  .columns-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero {
    padding-bottom: 2.2rem;
  }

  section {
    padding: 2.2rem 1rem;
  }
}
