.hero-carousel {
    position: relative;
    min-height: min(88vh, 680px);
    overflow: hidden;
    background: var(--preto);
}

.hero-carousel-slides { position: relative; height: min(88vh, 680px); }

.hero-slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 1.1s ease;
}
.hero-slide.ativo { opacity: 1; pointer-events: auto; }

.hero-slide--0 { background: radial-gradient(circle at 15% 20%, #123a63, transparent 55%), linear-gradient(135deg, #060a12, #0b1a30 60%, #0b4a82); }
.hero-slide--1 { background: radial-gradient(circle at 85% 15%, #0f4d8a, transparent 55%), linear-gradient(135deg, #05070d, #0e2a4d 60%, #145a9e); }
.hero-slide--2 { background: radial-gradient(circle at 20% 80%, #114a86, transparent 55%), linear-gradient(135deg, #04060a, #0b1a30 55%, #0a3a68); }
.hero-slide--3 { background: radial-gradient(circle at 80% 80%, #1579f1, transparent 55%), linear-gradient(135deg, #05080f, #0c2340 60%, #0b4a82); }

.hero-slide-glow {
    position: absolute; width: 480px; height: 480px; border-radius: 50%;
    background: var(--azul-glow); filter: blur(90px);
    top: 50%; right: 5%; transform: translateY(-50%);
    animation: hero-flutuar 6s ease-in-out infinite;
}
@keyframes hero-flutuar {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-46%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .hero-slide-glow { animation: none; } }

.hero-slide-conteudo { position: relative; z-index: 2; max-width: 620px; color: #fff; }
.hero-slide-icone {
    width: 68px; height: 68px; border-radius: 1rem;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
}
.hero-slide-icone svg { width: 32px; height: 32px; }
.hero-slide-cat { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 700; color: var(--azul-claro); margin-bottom: 0.6rem; }
.hero-slide-conteudo h1 { color: #fff; margin-bottom: 0.8rem; }
.hero-slide-resumo { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 480px; margin-bottom: 1.8rem; }

.hero-carousel-seta {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.25); color: #fff; font-size: 1.1rem; cursor: pointer; z-index: 5;
}
.hero-carousel-seta--prev { left: 1.25rem; }
.hero-carousel-seta--next { right: 1.25rem; }
.hero-carousel-seta:hover { background: rgba(0,0,0,0.45); }

.hero-carousel-pontos { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 5; }
.hero-ponto { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.35); cursor: pointer; padding: 0; }
.hero-ponto.ativo { background: var(--azul-claro); width: 22px; border-radius: 5px; transition: width 0.3s ease; }

@media (max-width: 700px) {
    .hero-carousel-slides, .hero-carousel { min-height: 560px; }
    .hero-carousel-seta { display: none; }
}
