/* ===============================
   POLÍTICA DE COOKIES
   Itajaí Vagas - mesmo estilo dos Termos
   =============================== */

body {
  background-color: #323b42;
  font-family: 'Montserrat', sans-serif;
  color: #e9f0ef;
  line-height: 1.8;
}

/* Container geral */
.cookies-container {
  max-width: 1000px;
  margin: 50px auto 80px;
  padding: 0 25px;
}

/* ===== Título principal ===== */
.cookies-container h1 {
  color: var(--azul-esc);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===== Subtítulos ===== */
.cookies-container h2 {
  color: var(--verde-escuro);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* ===== Parágrafos ===== */
.cookies-container p {
  font-size: 1rem;
  color: #e9f0ef;
  margin-bottom: 14px;
}

/* ===== E-mails ===== */
.cookies-container a[href^="mailto:"] {
  color: #fbe14d; /* mesmo amarelo do contato */
  font-weight: 500;
  text-decoration: none;
}
.cookies-container a[href^="mailto:"]:hover {
  text-decoration: underline;
}

/* ===== Caixa de contato opcional ===== */
.contato-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.7;
  color: #e9f0ef;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  .cookies-container {
    padding: 0 15px;
  }

  .cookies-container h1 {
    font-size: 1.7rem;
  }

  .cookies-container h2 {
    font-size: 1.1rem;
  }

  .cookies-container p {
    font-size: 0.95rem;
  }
}

/* ==========================================
   AVISO DE COOKIES - Itajaí Vagas (padrão final)
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2b3339; /* igual ao fundo escuro do site */
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 9999;
  width: fit-content;
  max-width: 90%;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

/* Link da Política */
.cookie-banner a {
  color: #fbe14d; /* mesmo amarelo do contato */
  font-weight: 500;
  text-decoration: none;
}
.cookie-banner a:hover {
  text-decoration: underline;
}

/* Botão */
.cookie-banner button {
  background-color: var(--azul);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cookie-banner button:hover {
  background-color: var(--azul-esc);
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.fadeOut {
  animation: fadeOut 0.4s ease-in-out forwards;
}
@keyframes fadeOut {
  from { opacity: 1; transform: translate(-50%, 0); }
  to { opacity: 0; transform: translate(-50%, 10px); }
}

/* Responsivo */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }

  .cookie-banner button {
    width: 100%;
  }
}

