/* ===== Reset básico ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo {
  height: 40px;
  width: auto}

.header__name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #004aad;
}

.header__nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #004aad;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__nav a:hover {
  color: #002f6c;
}

.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  user-select: none;
}

.btn--whatsapp {
  background-color: #25d366;
  color: #fff;
  padding: 10px 18px;
  font-size: 1rem;
  border: none;
}

.btn--whatsapp:hover {
  background-color: #1ebe57;
}

/* ===== HERO ===== */
.hero {
  background-color: #e6f0ff;
  padding: 40px 0;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__text {
  flex: 1 1 400px;
}

.hero__text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003d99;
  margin-bottom: 20px;
}

.hero__text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
}

.hero__actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn--primary {
  background-color: #004aad;
  color: #fff;
  padding: 12px 25px;
  border: none;
  font-size: 1rem;
}

.btn--primary:hover {
  background-color: #003377;
}

.btn--secondary {
  background-color: transparent;
  color: #004aad;
  border: 2px solid #004aad;
  padding: 10px 23px;
  font-size: 1rem;
}

.btn--secondary:hover {
  background-color: #004aad;
  color: #fff;
}

.hero__bullets {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
  font-size: 1rem;
}

.hero__image {
  flex: 1 1 400px;
  text-align: center;
}

.hero__image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== SECTIONS ===== */
.section {
  padding: 40px 0;
  background-color: #fff;
}

.section--alt {
  background-color: #f0f4ff;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #003d99;
  margin-bottom: 15px;
  text-align: center;
}

.section__subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== CARDS ===== */
.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #004aad;
  margin-bottom: 15px;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #004aad;
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.section__cta {
  text-align: center;
  margin-top: 20px;
}

.section__cta .btn {
  font-size: 1.1rem;
  padding: 12px 30px;
}

/* ===== GRID ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.list--columns {
  columns: 2;
  column-gap: 20px;
}

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 20px;
}

.faq__item h3 {
  font-size: 1.2rem;
  color: #004aad;
  margin-bottom: 8px;
}

.faq__item p {
  font-size: 1rem;
  color: #333;
}

/* ===== CTA FINAL ===== */
.section--cta-final {
  background-color: #004aad;
  color: #fff;
  padding: 50px 0;
  text-align: center;
  border-radius: 0 0 12px 12px;
}

.section--cta-final h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.section--cta-final p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.section--cta-final .btn--large {
  font-size: 1.3rem;
  padding: 15px 40px;
  background-color: #25d366;
  border: none;
  color: #fff;
  border-radius: 8px;
}

.section--cta-final .btn--large:hover {
  background-color: #1ebe57;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #f0f4ff;
  padding: 25px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.footer__info {
  margin-bottom: 10px;
}

.footer__contacts span {
  display: block;
  margin-bottom: 5px;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: #999;
  margin-top: 10px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 480px) {
  /* Header: empilhado, mas com botão WhatsApp não esticado */
  .header__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 6px;
  }

  .header__brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header__logo {
    height: 34px;
    width: auto;
  }

  .header__name {
    font-size: 1rem;
    line-height: 1.05;
    color: #004aad;
    font-weight:700;
  }

  /* Menu / Nav: reduzir fonte e permitir quebra fluida */
  .header__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.95rem;
    justify-content: flex-start;
    padding-left: 2px;
  }

  /* Botão WhatsApp do topo: não ocupe 100% — visual mais leve */
  .header__cta {
    align-self: center;
    width: auto;           /* Não esticar */
    max-width: 220px;
    padding: 8px 14px;
    font-size: 0.98rem;
    border-radius: 999px;
    box-shadow: none;
  }

  /* Hero: reduzir título para evitar quebras estranhas */
  .hero__text {
    padding: 8px 12px;
  }

  .hero__text h1 {
    font-size: 1.6rem;     /* menor */
    line-height: 1.22;     /* mais compacto, sem quebrar tanto */
    font-weight: 700;
    color: #003d99;
    margin-bottom: 12px;
    max-width: 42ch;       /* limita quebras em palavras longas */
    word-break: break-word;
    hyphens: auto;
  }

  .hero__text p {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 14px;
  }

  /* Botões do hero: mesma largura (full width do bloco), porém com padding menor */
  .hero__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero__actions .btn--primary,
  .hero__actions .btn--secondary {
    width: 100%;
    padding: 10px 14px;
    font-size: 1rem;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .btn--primary {
    background-color: #004aad;
    color: #fff;
  }

  .btn--secondary {
    border-width: 2px;
    border-style: solid;
    border-color: #004aad;
    color: #004aad;
    background: transparent;
  }

  /* Imagem do hero: limitar altura para não empurrar conteúdo */
  .hero__image img {
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
  }

  /* Card e listas: ajuste de padding e fonte */
  .card {
    padding: 14px;
  }

  .card h3 {
    font-size: 1.15rem;
  }

  .card ul.list li {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  /* Grid adaptável: 1 coluna no mobile */
  .grid-2 {
    grid-template-columns: 1fr;
  }
}