/* Reset e configurações gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #6c757d;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar - COR DE FUNDO ALTERADA */
.navbar {
  background-color: #0d1b2a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 0.8rem 0;
}

.navbar-brand {
  color: #ffc107 !important;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.nav-link {
  color: #f8f9fa !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffd700 !important;
}

.dropdown-menu {
  background-color: #1a1a2e;
  border: none;
}

.dropdown-item {
  color: #f8f9fa;
}

.dropdown-item:hover {
  background-color: #ffd700;
  color: #1a1a2e;
}

/* Carrossel */
.carousel {
  max-width: 95%;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-item img {
  height: 400px;
  object-fit: cover;
}

/* Galeria de imagens */
.container img {
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  max-height: 200px;
  object-fit: cover;
}

.container img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.container .col p {
  color: #2c2c2c;
  margin-top: 10px;
}

/* Cards de Missão/Visão/Valores */
#sobre .col {
  background: white;
  margin: 15px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

#sobre .col:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#sobre h3 {
  color: #b22234;
  border-bottom: 3px solid #ffd700;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

#sobre h5 {
  color: #333;
  font-weight: normal;
  line-height: 1.6;
}

/* Formulário */
form {
  background: white;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

form h3 {
  color: #b22234;
  margin-bottom: 20px;
}

form ul {
  margin: 20px 0;
  list-style: none;
  padding-left: 0;
}

form ul li {
  padding: 5px 0;
  color: #555;
}

.form-floating textarea {
  border-radius: 8px;
  border: 1px solid #ddd;
  resize: vertical;
}

.form-floating textarea:focus {
  border-color: #c49a2a;
  box-shadow: 0 0 0 0.2rem rgba(196,154,42,0.25);
}

.btn-primary {
  background-color: #c49a2a;
  border: none;
  padding: 12px 30px;
  width: 100%;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #a07d22;
  transform: scale(1.02);
}

/* Botão de feedback flutuante */
.feedback-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #c49a2a;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.feedback-btn:hover {
  background-color: #a07d22;
  transform: scale(1.05);
}

/* Modal */
.modal-content {
  border-radius: 15px;
}

.modal-header {
  background-color: #1a1a2e;
  color: #ffd700;
  border-radius: 15px 15px 0 0;
}

/* Rodapé */
.footer {
  background-color: #1a1a2e;
  border-radius: 15px;
  padding: 20px;
  margin: 30px auto 20px;
  color: white;
}

.footer h5 {
  color: #ffd700;
  font-size: 0.9rem;
  margin: 0;
}

/* Toast */
.toast {
  border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .carousel-item img {
    height: 250px;
  }
  
  form {
    margin: 20px;
    padding: 20px;
  }
  
  #sobre .col {
    margin: 10px;
  }
  
  .feedback-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}
