/* Variáveis de Design */
:root {
  --primary: #3498db;
  --primary-dark: #2980b9;
  --secondary: #2c3e50;
  --accent: #e74c3c;
  --light: #f8f9fa;
  --dark: #343a40;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  
}

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #f5f7fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}




  

  /* Responsividade */
  @media (max-width: 768px) {
      .navbar-toggle {
          display: block;
      }

      .navbar-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 70%;
          height: 100vh;
          background: var(--white);
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 2rem;
          transition: right 0.3s ease;
          box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
          z-index: 1000;
      }

      .navbar-menu.active {
          right: 0;
      }
  }

/* Formulário */
.form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
  margin: 2rem auto;
  max-width: 800px;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.form-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}

.form-header p {
  color: var(--gray);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f8fafc;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Preview de Imagem */
.image-preview-container {
  margin-top: 1rem;
  text-align: center;
}

.image-preview {
  max-width: 150px;
  max-height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  display: none;
}

.file-preview {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
  display: none;
}

/* Botões */
.btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
  background-color: var(--light-gray);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: #dee2e6;
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Checkbox Personalizado */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin: 1.5rem 0;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Mensagens */
.alert {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid var(--success);
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid var(--danger);
}

.error-message {
  color: var(--danger);
  font-size: 0.9rem;
  margin-top: 0.3rem;
  display: block;
}

.required {
  color: var(--danger);
}

/* Estilos Gerais do Footer */
.footer {
  background-color: #09273b;
  color: #ecf0f1;
  padding: 40px 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}



/* Links Sociais */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #34495e;
  border-radius: 50%;
  color: #ecf0f1;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #3498db;
  transform: translateY(-3px);
}


.footer-col h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}



.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-col ul li a i {
  font-size: 0.8rem;
}



/* Informações de Contato */
.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  color: #3498db;
  margin-right: 10px;
  margin-top: 3px;
}

/* Rodapé Inferior */
.footer-bottom {
  background-color: #09273b;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 5px 0;
  color: #bdc3c7;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .footer-col {
      margin-bottom: 20px;
  }
  
  .footer-col h3 {
      font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 30px 0 0;
  }
  
  .footer-content {
      padding: 0 15px;
  }
  
  .contact-info li {
      flex-direction: column;
  }
  
  .contact-info i {
      margin-bottom: 5px;
  }
}


/* Responsividade */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
  }
  
  .navbar-nav {
    margin-top: 1rem;
  }
  
  .nav-item {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Progress Steps */
.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.progress-steps:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--light-gray);
  color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-weight: bold;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: var(--primary);
  color: var(--white);
}

.step.completed .step-number {
  background-color: var(--success);
  color: var(--white);
}

.step-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.step.active .step-label {
  color: var(--secondary);
  font-weight: 600;
}


  /* Estilos existentes */
  .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
  }
  
  .navbar-nav {
      display: flex;
      list-style: none;
      gap: 1rem;
  }

  /* Estilos Gerais da Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Estilo da Logo */
.navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px; /* Ajuste conforme necessário */
  width: auto;
  margin-right: 40px; /* Aumentei o espaço à direita da logo */
}

/* Menu Principal - Telas Grandes */
.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-menu li {
  margin-left: 25px; /* Aumentei o espaço entre os itens */
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f39c12; /* Cor de destaque ao passar o mouse */
}

.nav-link i {
  margin-right: 8px;
  font-size: 0.9rem;
}

/* Menu Hamburguer - Mobile */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar-menu {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 80px;
      left: 0;
      background-color: #fff;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
  }
  
  .navbar-menu.active {
      display: flex;
  }
  
  .navbar-menu li {
      margin: 10px 0;
      text-align: center;
      width: 100%;
  }
  
  .navbar-menu li a {
      padding: 10px 20px;
      display: block;
  }
  
  .navbar-toggle {
      display: block;
  }
  
  .logo {
      height: 40px; /* Tamanho menor para mobile */
      margin-right: 0; /* Remove a margem à direita em mobile */
  }
}

  
  
  
  /* Estilos para mobile */
  @media (max-width: 768px) {
      .hamburger-btn {
          display: block;
      }
      
      .navbar-nav {
          position: fixed;
          top: 0;
          right: -100%;
          width: 70%;
          height: 100vh;
          background: #fff;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 2rem;
          transition: right 0.3s ease;
          box-shadow: -2px 0 5px rgba(0,0,0,0.1);
          z-index: 999;
      }
      
      .navbar-nav.active {
          right: 0;
      }
      
      
  }

 