/* Exemplo de header */
header {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

/* Corpo */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
}

/* CTA */
.cta-section {
  background-color: #007bff;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

/* Contador */
#contador-barra {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ff0040;
  color: white;
  text-align: center;
  padding: 8px;
  z-index: 9999;
}

/* Harmonização das imagens com cantos arredondados e responsivas */
.harmonious-img {  
  width: 100%;  
  max-width: 800px;  
  height: auto;  
  border-radius: 12px; /* Adicionando bordas arredondadas */
}

/* Container das seções principais */
.hero-content,
.product-content,
.author-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content .text,
.product-content .text,
.author-content .text {
  flex: 1 1 400px;
}

.hero-content .image,
.product-content .image,
.author-content .image {
  flex: 1 1 400px;
}

.hero-content .image img,
.product-content .image img,
.author-content .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .hero-content,
  .product-content,
  .author-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-content .text,
  .product-content .text,
  .author-content .text,
  .hero-content .image,
  .product-content .image,
  .author-content .image {
    flex: 1 1 100%;
  }
}


/* Estilo para o contador */
#contador {
  color: #ff0040; /* Cor contrastante para o contador */
  font-weight: bold;
  font-size: 2rem; /* Ajusta o tamanho da fonte */
}

/* Estilo da frase abaixo */
.hero p {
  color: #ffffff; /* Garante que o texto da frase também fique visível */
}
