/* Adiciona efeito suave no sub-header */
.sticky-sub {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Container do formulário */
#comments {
    max-width: 700px;
    padding: 30px;
    margin: 0 auto;
}

/* Campos de texto e textarea */
#comments input[type="text"],
#comments input[type="email"],
#comments textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    font-family: Georgia, serif; /* fonte Georgia */
    color: #7a7a7a;            /* cor do texto */
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Labels e texto do formulário */
#comments label,
#comments p {
    font-family: Georgia, serif;
    color: #7a7a7a;
}

/* Botão de enviar */
#comments input[type="submit"] {
    padding: 12px 25px;
    font-size: 15px;
    font-family: Georgia, serif;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
/* Título "Leave a Reply" */
#reply-title {
    font-family: Georgia, serif;
    font-size: 2rem;
    color: #7a7a7a;
    margin-bottom: 20px; /* opcional, espaçamento abaixo do título */
}