/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/




/* GeneratePress Site CSS */ /* grey line under navigation */
.site-header {
	border-bottom: 1px solid #dddddd;
}

/* makes featured article section full width */
.generate-columns-container .featured-column {
	width: 100%;
} /* End GeneratePress Site CSS */

/* Estilos para a seção principal */
.gb-element-240a890b {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f5f7fa);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gb-element-240a890b:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* Estilo para o título */
.gb-text-0e510fc9 {
  font-size: 1.8rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Estilo para o ícone de email */
.gb-shape {
  display: inline-flex;
  margin-right: 10px;
  color: #3498db;
  font-size: 1.5rem;
}

/* Container do formulário */
.gb-container-f29b8aa8 {
  width: 100%;
}

/* Estilo do formulário */
#subscribe-form {
  width: 100%;
}

/* Container dos campos e botão */
.signup-form-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .signup-form-content {
    flex-direction: row;
    align-items: flex-end;
  }
}

/* Estilo do grupo de form */
.form-group {
  flex: 1;
  margin-bottom: 0;
}

/* Estilo da label */
.control-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #7f8c8d;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Estilo do input de email */
#subscriber_email {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  color: #34495e;
  outline: none;
  transition: all 0.3s ease;
}

#subscriber_email:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

#subscriber_email:focus + .control-label {
  color: #3498db;
}

/* Estilo do container do botão */
.submit-wrapper {
  display: flex;
  align-items: center;
}

/* Estilo do botão de envio */
.btn-primary {
  padding: 12px 24px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(41, 128, 185, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Mensagem de validação */
.form-control.is-invalid {
  border-color: #e74c3c;
}

.invalid-feedback {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Animação para interações */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.btn-primary:focus {
  animation: pulse 1s infinite;
}