/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: white;
  color: #555;
  line-height: 1.6;
}

.header {
  text-align: left;
  background: white;
  padding: 8px 0 5px 15px;
  margin: 0 auto;
  max-width: 700px;
}

.header img {
  width: 45%;
}

.logo {
  max-width: 220px;
}

.container {
   background: #f7f9fc;
}

.container-obrigado {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding: 20px;
}

.titulo {
  font-size: 25px;
  margin: 20px 0;
  color: #002d6b;
  line-height: 1.3;
  text-align: center;
}

    
    .texto {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      text-align: left;
    }
    
    .topicos {
  list-style-type: disc; /* mantém o ponto padrão */
  text-align: left;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  padding-left: 20px;
}

.topicos li {
  margin-bottom: 6px;    /* espaço entre as frases */
}

        .rodape-site {
      background-color: #092347;
      padding: 35px 10px 25px;
      font-size: 10px;
      font-weight: 400;
      color: white;
      text-align: center;
      width: 100%;
    }
    
    .rodape-site p {
        margin: 10px 0;
    }
    
    .rodape-site a {
      color: white;
      font-size: 10px;
      font-weight: 600;
      text-decoration: none;
      margin: 0 5px;
    }
    
    .rodape-site a:hover {
      text-decoration: underline;
    }

@media (min-width: 768px) {
  .header img {
  width: 40%;
  }
  .titulo {
  font-size: 30px;
  }
      .rodape-site {
        padding: 20px 10px;   
      }
      .container-obrigado {
  padding: 20px;
}
}
