:root {
  --blue: #1f4b99;
  --blue-dark: #163a78;

  /* VERDES substituídos por AZUIS */
  --green: #2c67c7;        /* azul de destaque */
  --green-dark: #1f4b99;   /* azul mais escuro */

  --text: #1f2933;
  --muted: #5f6c7b;
  --soft: #f2f6ff;
  --white: #ffffff;
  --accent: #2c67c7;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #f8f9fc;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 249, 252, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e6e9ee;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(44, 103, 199, 0.25);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-outline {
  border-color: #d0d7de;
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--text);
}

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(120deg, #ffffff 0%, #eef3ff 100%);
}

.inner-hero {
  padding: 70px 0 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.hero-highlights strong {
  display: block;
  font-size: 1.1rem;
}

.hero-highlights span {
  color: var(--muted);
}

.hero-card {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(31, 41, 51, 0.08);
}

.hero-card p {
  margin: 16px 0;
}

.small {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.section {
  padding: 72px 0;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e6e9ee;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(31, 41, 51, 0.05);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 16px;
}

.card li::before {
  content: "✓";
  color: var(--green-dark);
  margin-right: 8px;
}

.text-link {
  color: var(--blue);
  font-weight: 600;
}

.soft {
  background: var(--soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.info-box {
  background: var(--soft);
  padding: 24px;
  border-radius: 20px;
}

.info-box ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
}

.info-box li::before {
  content: "•";
  color: var(--blue);
  margin-right: 8px;
}

.cta {
  background: linear-gradient(120deg, #1f4b99 0%, #163a78 100%);
  color: var(--white);
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cta .btn-whatsapp {
  background: var(--white);
  color: var(--blue-dark);
}

.cta .btn-whatsapp:hover {
  background: #e9f9ef;
}

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

.faq details {
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  padding: 16px 20px;
  background: var(--white);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.contact-info {
  margin: 20px 0;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.contact-form {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e6e9ee;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0d7de;
  margin-top: 6px;
  font-family: inherit;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
  margin: 16px 0;
}

.checklist li::before {
  content: "✓";
  color: var(--green-dark);
  margin-right: 8px;
}

.timeline {
  margin: 16px 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.sitemap-list {
  display: grid;
  gap: 12px;
  font-weight: 600;
}

.sitemap-list a {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e6e9ee;
  background: var(--white);
}

.sitemap-list a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.site-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 32px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-content a {
  color: #e5e7eb;
  text-decoration: underline;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    gap: 12px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 40px;
  }

  .btn {
    width: 100%;
  }
}
