/* --- SEÇÃO DE NEWSLETTER --- */

#insert-email {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3rem 2rem; /* Espaçamento vertical e horizontal */
  background: linear-gradient(to bottom, #2a2829, #000000);
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Linha sutil de separação */
}

/* ALTERADO: De #container-information para uma classe mais semântica */
.newsletter-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem; /* Espaçamento entre os elementos */
  width: 100%;
  max-width: 80rem; /* Limite de largura para telas grandes */
}

/* --- INFORMAÇÕES (LADO ESQUERDO) --- */
.newsletter-info {
  display: flex;
  flex-direction: column;
  flex-shrink: 0; /* Impede que o texto seja espremido */
}

.newsletter-info h2 {
  background: linear-gradient(to right, #ffffff 50%, #544f51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Berkshire Swash", serif;
  font-size: 2.5rem;
  margin: 0;
}

.newsletter-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* --- FORMULÁRIO (LADO DIREITO) --- */
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.newsletter-form input {
  width: 100%;
  height: 2.8rem;
  padding: 0 1rem;
  font-size: 1rem;
  color: white;

  /* Estilo Modernizado */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.newsletter-form button {
  height: 2.8rem;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;

  /* Estilo Modernizado */
  background: linear-gradient(to right, #2a2829, #000000);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap; /* Impede que o texto "Enviar" quebre */
}

.newsletter-form button:hover {
  transform: scale(1.05);
  border-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
