/* assets/style.css */

/* Geral */
body {
  background-color: #17203A;
  color: #fff;
  font-family: Arial, sans-serif;
  padding-bottom: 70px; /* Evita que o conteúdo fique escondido pelo footer fixo */
}

/* Navbar */
.navbar {
  background-color: #17202A;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5em;
  color: #FFD700 !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: bold;
  margin: 0 10px;
}

/* Seções */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  font-weight: bold;
}

/* Feedback dos Clientes */
.feedback-card {
  background-color: #1c2433;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}

.feedback-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Galeria de Vídeos */
.video-box {
  margin-bottom: 20px;
}

.video-box iframe {
  width: 100%;
  height: 200px;
}

/* Footer */
.footer-fixed {
  background-color: #17202A;
  color: #fff;
  padding: 10px 0;
}


/* Estilo para mensagens de erro na caixa de login */
.login-error {
  border: 2px solid #ff0000; /* Linha vermelha */
  background-color: #f8d7da; /* Fundo leve avermelhado */
  color: #721c24; /* Cor do texto */
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-weight: bold;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
