/* -------------------------------------------------------------------------
   Estilos Customizados - Simples de Criar
   Consolidação de todos os blocos <style> em um arquivo externo
---------------------------------------------------------------------------- */

/* Paleta de Cores e Gradientes Base */
:root {
  --primary-gradient: linear-gradient(90deg, #7c3aed 0%, #6d28d9 100%);
  --hero-gradient: radial-gradient(circle at center, #2e1065 0%, #0f0518 100%);
  --dark-bg: #0f0518;
}

/* Fundo da Seção Hero (Usado em index e quem-somos) */
.hero-bg {
  background: var(--hero-gradient);
}

/* Gradiente de Texto (Usado em index e quem-somos) */
.text-gradient {
  background: linear-gradient(90deg, #a78bfa 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Efeito Botão Glow (Usado em todos os arquivos) */
.btn-glow {
  background: var(--primary-gradient);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Pseudo-elemento para hover do botão glow (quem-somos e index) */
.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #6d28d9 0%, #5b21b6 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
  opacity: 1;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

/* Estilo do Botão Outline (Usado em black-november) */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  color: #fff;
}


/* Glassmorphism para Cards (Usado em index e quem-somos) */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.glass-card-hero {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.glass-card-hero:hover {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 10px 40px -10px rgba(124, 58, 237, 0.2);
}

/* FAQ Accordion (Usado em index) */
details>summary {
  list-style: none;
}

details>summary::-webkit-details-marker {
  display: none;
}

/* --- ESTILOS DO MARQUEE (Usado em index) --- */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Cria um fade nas pontas */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 4rem;
  width: 10rem;
}

.marquee-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* --- ESTILOS ESPECÍFICOS DE POLITICAS.HTML --- */

/* Estilização do Conteúdo Legal */
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  /* slate-800 */
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  /* slate-700 */
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: #475569;
  /* slate-600 */
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: justify;
}

.legal-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #475569;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Estado ativo das abas */
.tab-active {
  background-color: #f3e8ff;
  /* purple-100 */
  color: #6d28d9;
  /* purple-700 */
  border-left: 4px solid #7c3aed;
  /* purple-600 */
  font-weight: 600;
}

.tab-inactive {
  color: #64748b;
  /* slate-500 */
  border-left: 4px solid transparent;
}

.tab-inactive:hover {
  color: #475569;
  background-color: #f8fafc;
}

/* --- ESTILOS DE BLACK-NOVEMBER.HTML --- */

/* Efeito de hover no card do modelo */
.model-card {
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.model-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.15);
}

.image-overlay {
  background: linear-gradient(to top, #0f0518 0%, transparent 100%);
}

/* Estilo para o fundo com linhas discretas na seção de destaque personalizado */
.custom-bg-lines {
  background-color: #000000;
  background-image: linear-gradient(to right, #1a1a1a 1px, transparent 1px), linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
  background-size: 50px 50px;
  background-repeat: repeat;
}

/* --- ESTILOS COMUNS DO FOOTER (Usado em todos os arquivos) --- */
.footer-seals img {
  height: 50px;
  width: auto;
  opacity: 1;
  transition: transform 0.3s ease;
}

.footer-seals img:hover {
  transform: scale(1.05);
}