.secao-newsletter {
  position: relative;
  padding: 30px 0;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* A imagem de fundo cobrindo tudo */
.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Uma película escura/clara sobre a imagem para não atrapalhar a leitura (opcional) */
.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff17;
  /* Clareia um pouco a foto de fundo */
  z-index: 1;
}

/* O contêiner principal para limitar a largura */
.newsletter-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
}

/* O quadrado branco flutuante */
.newsletter-box {
  background-color: #ffffff;
  padding: 60px 70px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Lado Esquerdo: Textos */
.newsletter-content {
  flex: 1;
}

.newsletter-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 2.6rem;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.1;
}

.newsletter-desc {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Lado Direito: Formulário */
.newsletter-form-wrapper {
  flex: 1;
  width: 100%;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
  padding: 15px 20px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--auth-primary, #d09c98);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(208, 156, 152, 0.1);
}

.newsletter-btn {
  background-color: var(--auth-primary, #d09c98);
  color: #ffffff;
  border: none;
  padding: 0 35px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background-color: var(--auth-primary-hover, #ba8884);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(208, 156, 152, 0.3);
}