/* ============================= */
/* NEWSLETTER SECTION */
/* ============================= */

.logo-brand-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
}

.logo-newsletter {
  height: 150px;
  display: block;
  margin: 0 auto;
}

.logo-newsletter:hover {
  transform: scale(1.05);
}

.newsletter-tagline {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: #cbd5e1;
  white-space: nowrap;
}


#newsletter {
  background: linear-gradient(180deg, #0f0f0f 0%, #000000 100%);
}

#newsletter h2 {
  font-weight: 700;
  letter-spacing: 1px;
}

#newsletter p {
  color: #b5b5b5;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ============================= */
/* FORM CARD STYLE */
/* ============================= */

#newsletterForm {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

#newsletterForm:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

/* ============================= */
/* INPUTS */
/* ============================= */

#newsletterForm .form-control {
  background-color: #111;
  border: 1px solid #222;
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

#newsletterForm .form-control:focus {
  background-color: #151515;
  border-color: #6f42c1;
  box-shadow: 0 0 0 0.15rem rgba(111, 66, 193, 0.25);
  color: #fff;
}

#newsletterForm .form-label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #dcdcdc;
}

#newsletterForm .form-control::placeholder{
    color:rgba(255,255,255,.5);
    opacity:1;
}


/* ============================= */
/* CHECKBOX */
/* ============================= */

#newsletterForm .form-check-input {
  background-color: #111;
  border: 1px solid #444;
}

#newsletterForm .form-check-input:checked {
  background-color: #6f42c1;
  border-color: #6f42c1;
}

#newsletterForm .form-check-label {
  color: #bdbdbd;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.btn-gradient {
  background: linear-gradient(90deg, #6f42c1, #0d6efd);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(111, 66, 193, 0.4);
}

.btn-gradient:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 768px) {
  #newsletter {
    padding: 60px 20px;
  }

  #newsletterForm {
    padding: 25px;
  }
}

/* ============================= */
/* ANIMAÇÃO ENTRADA */
/* ============================= */

#newsletterForm {
  animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
