body{
  background-color: #f0f4f8;
  overflow-x: hidden;
}

.navbar .nav-link.dropdown-toggle:hover,
.navbar .nav-link.dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Header com sombra e fundo esfumado */
header {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  border-radius: 0 0 12px 12px;
  padding: 0.8rem 1rem;
  transition: background-color 0.3s ease;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mega-dropdown a:hover {
  background-color: rgba(255, 106, 0, 0.08);
  border-radius: 10px;
}

.navbar-nav .nav-link:hover {
  color: #ff6a00;
  background-color: rgba(255, 106, 0, 0.05);
  border-radius: 8px;
}
.mega-dropdown {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/*Newsletter*/
.newsletter-subscribe {
    background-color: #111;
    margin-bottom: -50px; /* move para cima */
    z-index: 10;
    position: relative;
  }
  
  .newsletter-wrapper input::placeholder {
    color: #ccc;
  }
  
  .newsletter-wrapper .form-control:focus {
    box-shadow: none;
  }
  
  .newsletter-wrapper {
    height: 100px; /* espaço reservado para a sobreposição */
    margin-bottom: -50px; /* faz a caixa laranja flutuar sobre o footer */
    position: relative;
    z-index: 10;
  }
  
  .newsletter-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    max-width: 960px; /* ← largura máxima definida */
    width: 100%;
    padding: 0 1rem;  /* ← margem lateral para dispositivos pequenos */
    margin-inline: auto;
  }
  
  .newsletter-content {
    width: 100%;
  }
  
  /*Footer*/
  .footer-site {
    background-color: #e6e6e6;
    color: #333;
    padding-top: 120px; /* ← aumentamos para dar mais "respiro" */
    position: relative;
    z-index: 1;
  }
  
  .footer-site .row {
    margin-top: 30px;
  }
  
  .footer-site a {
    color: #333;
    text-decoration: none;
  }
  
  .footer-site a:hover {
    color: #ffa347;
  }
  
  .footer-site .bi {
    color: #000;
    transition: 0.3s;
  }
  
  .footer-site .bi:hover {
    color: #ffa347;
  }
  
  .footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    font-size: 0.875rem;
    color: #ccc;
  }
  
  .footer-site img {
    max-width: 100%;
    height: auto;
  }
  
  
  
  /* Mobile: logos */
  @media (max-width: 576px) {
    .circle-logo {
      width: 120px;
      height: 120px;
    }
  
    .logo-popup {
      display: none; 
    }
  }

  .text-laranja {
    color: #FF6A00 !important;
  }
  
  .text-laranja:hover {
    text-decoration: none;
  }

  hr {
    border: none;
    height: 4px;                /* Espessura da linha */
    background:#ff6a00; /* Gradiente laranja */
    border-radius: 2px;
    margin: 2rem auto;
    width: 67%;                 /* Largura da linha */
  }