/* =========================
   COOKIES LGPD
   Banner de cookies conforme LGPD - sem coleta de dados
========================= */
@import url('./variaveis.css');

#cookiesBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  padding: 15px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

#cookiesBanner.mostrar {
  transform: translateY(0);
}

.cookies-conteudo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookies-texto {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.cookies-texto strong {
  color: #b3986a;
}

.cookies-links {
  display: flex;
  gap: 10px;
}

.cookies-links a {
  color: #b3986a;
  font-size: 13px;
  text-decoration: underline;
}

.cookies-btn {
  background: var(--accent);
  color: var(--primary);
  padding: 8px 14px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cookies-btn-entendi:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

@media (max-width: 500px) {
  #cookiesBanner {
    padding: 12px 15px;
  }
  
  .cookies-conteudo {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .cookies-texto {
    font-size: 13px;
  }
  
  .cookies-btn {
    width: 100%;
  }
}