/* ===== BORDAS AZUIS ESCURAS APENAS PARA FORMULÁRIOS ===== */

.contact-form input:focus,
.contact-form textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4), 0 0 10px rgba(59, 130, 246, 0.3) !important;
  background-color: rgba(59, 130, 246, 0.05) !important;
}

.contact-form input,
.contact-form textarea,
.form-group input,
.form-group textarea,
.comment-form input,
.comment-form textarea {
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  transition: all 0.3s ease !important;
}

.contact-form-section,
.comment-form,
.comments {
  position: relative;
  background: #0b0b0b;
  border-radius: 16px;
  padding: 24px;
}

/* A LUZ AZUL */
.contact-form-section::before,
.comment-form::before,
.comments::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  background: rgba(0, 140, 255, 0.8);
  filter: blur(25px);
  z-index: -1;
}

/* BOTÕES COM TEXTO BRANCO QUANDO CLICADOS E NO HOVER */
.btn.btn--primary:active,
.btn.btn--primary:hover,
.like-btn:active,
.like-btn:hover,
.newsletter-btn:active,
.newsletter-btn:hover,
.post-readmore:active,
.post-readmore:hover {
  color: #ffffff !important;
}

.btn.btn--primary:active span,
.btn.btn--primary:hover span,
.like-btn:active span,
.like-btn:hover span,
.newsletter-btn:active span,
.newsletter-btn:hover span,
.post-readmore:active span,
.post-readmore:hover span {
  color: #ffffff !important;
}

/* SOMBRA AZUL NOS CARDS DO BLOG */
.post-card {
  box-shadow: 0 4px 15px rgba(0, 140, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}

.post-card:hover {
  box-shadow: 0 8px 25px rgba(0, 140, 255, 0.4) !important;
  transform: translateY(-5px) !important;
}