/* CSS público básico para evitar 404 e avisos de build */
/* Ajustes mínimos de tipografia e fundo, já que Tailwind via CDN cobre a maioria dos estilos */

html, body {
  height: 100%;
}

body {
  background-color: #0f172a; /* slate-900 */
  color: #e2e8f0; /* slate-200 */
}

/* Espaço reservado para eventuais estilos globais não cobertos pelo Tailwind */

/* =============================
   Efeito de energia para ícones
   - Emana um “pulso” radial
   - Sequência com atrasos por item
   ============================= */
.energy-emit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.energy-emit::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  border: 3px solid rgba(245, 158, 11, 0.85); /* adlux-gold-500 mais intenso */
  box-shadow: 0 0 14px 6px rgba(245, 158, 11, 0.35);
  animation: energyPulse 2.4s ease-out infinite;
  animation-delay: var(--seq-delay, 0s);
  pointer-events: none;
  mix-blend-mode: screen;
}

.energy-emit::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  border: 2px solid rgba(245, 158, 11, 0.7);
  box-shadow: 0 0 10px 5px rgba(245, 158, 11, 0.28);
  animation: energyPulse 2.4s ease-out infinite;
  animation-delay: calc(var(--seq-delay, 0s) + 1.2s);
  pointer-events: none;
  mix-blend-mode: screen;
}

.energy-emit .energy-icon {
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.6)) brightness(1.08) saturate(1.05);
  animation: glowPulse 2.4s ease-in-out infinite;
  animation-delay: var(--seq-delay, 0s);
}

@keyframes energyPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35);
  }
  10% { opacity: 0.95; }
  60% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(2.6);
    box-shadow: 0 0 24px 12px rgba(245, 158, 11, 0.28);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.4);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.4)) brightness(1.0) saturate(1.0);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.95)) brightness(1.15) saturate(1.08);
    transform: scale(1.08);
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.4)) brightness(1.0) saturate(1.0);
    transform: scale(1);
  }
}

/* Delays sequenciais para cada item */
.delay-0 { --seq-delay: 0s; }
.delay-1 { --seq-delay: 0.3s; }
.delay-2 { --seq-delay: 0.6s; }
.delay-3 { --seq-delay: 0.9s; }
.delay-4 { --seq-delay: 1.2s; }
.delay-5 { --seq-delay: 1.5s; }
.delay-6 { --seq-delay: 1.8s; }
.delay-7 { --seq-delay: 2.1s; }

/* =============================
   Benefícios Exclusivos - Reveal on Scroll
   ============================= */
.benefits-section .animate-benefit,
.benefits-section .animate-benefit-header {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 600ms ease;
  will-change: transform, opacity;
}

.benefits-section.in-view .animate-benefit,
.benefits-section.in-view .animate-benefit-header {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays for items within the grid */
.benefits-section.in-view .grid > .animate-benefit:nth-child(1) { transition-delay: 0ms; }
.benefits-section.in-view .grid > .animate-benefit:nth-child(2) { transition-delay: 80ms; }
.benefits-section.in-view .grid > .animate-benefit:nth-child(3) { transition-delay: 160ms; }
.benefits-section.in-view .grid > .animate-benefit:nth-child(4) { transition-delay: 240ms; }
.benefits-section.in-view .grid > .animate-benefit:nth-child(5) { transition-delay: 320ms; }
.benefits-section.in-view .grid > .animate-benefit:nth-child(6) { transition-delay: 400ms; }

/* =============================
   Hero Subtitle - Text Shadow para legibilidade
   ============================= */
.subtitle-shadow {
  /* Duas camadas de sombra para melhorar contraste sobre imagens complexas */
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.70),
    0 2px 8px rgba(0, 0, 0, 0.50);
}

/* =============================
   Hero Title Shine Sweep
   - Uma "luz" percorre o título
   - Mantém as cores do gradient atual
   ============================= */
.shine-title {
  position: relative;
  display: inline-block;
  overflow: hidden; /* garante que o brilho não vaze fora do título */
}

.shine-title::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 28%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: screen; /* clareia respeitando as cores originais */
  filter: blur(0.6px);
  transform: skewX(-12deg);
  opacity: 0;
  animation: shineSweep 3.6s ease-in-out infinite;
  pointer-events: none;
}

.shine-title::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 18%;
  background: linear-gradient(115deg, rgba(245, 158, 11, 0) 0%, rgba(245, 158, 11, 0.6) 50%, rgba(245, 158, 11, 0) 100%);
  mix-blend-mode: screen;
  filter: blur(0.8px);
  transform: skewX(-12deg);
  opacity: 0;
  animation: shineSweep 3.6s ease-in-out infinite;
  animation-delay: 90ms; /* leve fase para o brilho dourado */
  pointer-events: none;
}

@keyframes shineSweep {
  0% {
    left: -30%;
    opacity: 0;
  }
  12% {
    opacity: 0.6;
  }
  50% {
    left: 112%;
    opacity: 0.45;
  }
  88% {
    opacity: 0;
  }
  100% {
    left: 112%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shine-title::before,
  .shine-title::after {
    animation: none;
    opacity: 0;
  }
}

.andre-banner {
position: fixed;
right: 0;
bottom: 0;
pointer-events: none;
display: flex;
flex-direction: column;
align-items: flex-end;
z-index: 20;
}
.andre-banner img {
  height: 450px; /* Altura fixa e reduzida */
  max-width: 100%; /* Garante que a imagem não ultrapasse a largura do contêiner */
  object-fit: contain;
  display: block;
  margin: 0;
  filter: drop-shadow(0 0 15px rgba(0,0,0,0.5)); /* Sombra mais suave */
}
}
.andre-banner .caption {
margin: 0;                 / cola no rodapé /
padding: 0;
line-height: 1;            / compacto, sem espaço extra */
color: #fff;
font-size: 0.75rem;
/* =============================
   CTA Glow Effect (Enhanced)
   - Animação de box-shadow em múltiplas camadas para destaque
   ============================= */
.cta-glow {
  animation: cta-glow-pulse-enhanced 3.5s infinite ease-in-out;
  animation-delay: var(--shine-delay, 0s);
  /* Estado inicial da sombra */
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.3), 0 0 20px rgba(250, 204, 21, 0.2);
}

@keyframes cta-glow-pulse-enhanced {
  0% {
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.3), 0 0 20px rgba(250, 204, 21, 0.2);
  }
  50% {
    /* Ponto alto: brilho dourado expandido + brilho branco intenso no centro */
    box-shadow: 0 0 35px 10px rgba(252, 211, 77, 0.8), 0 0 15px 3px rgba(255, 255, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.3), 0 0 20px rgba(250, 204, 21, 0.2);
  }
}