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

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 90%;
  width: 500px;
}

.check-circle {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.check-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

h2 {
  color: #333;
  margin-bottom: 1rem;
}

h5 {
  color: #666;
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

.btn-continuar {
  background: #28a745;
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-continuar:hover {
  background: #218838;
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

.navbar {
  background-color: #c41e3a;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.nav-links a:hover {
  color: #ddd;
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.destaque {
  margin-bottom: 2rem;
}

.destaque h2 {
  margin-bottom: 1rem;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.noticia {
  background: white;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.noticia img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.noticia h3 {
  margin: 1rem 0;
}

.btn-ler-mais {
  display: inline-block;
  background: #c41e3a;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 3px;
  margin-top: 1rem;
}

.btn-ler-mais:hover {
  background: #a01830;
}

footer {
  background: #c41e3a;
  color: white;
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .nav-links {
    margin-top: 1rem;
  }

  .nav-links li {
    margin: 0 1rem;
  }
}

.produto-imagem {
  display: none;
}
