/* ========================================
    FIX PARA SLIDER FULL WIDTH
    ========================================
/* Remove qualquer limitação do container pai */
body>main,
body>section {
    padding: 0 !important;
}

/* Força o slider a sair de containers limitados */
.hero-slider {
    position: relative;
    width: 100vw !important;
    /* viewport width = largura total da tela */
    max-width: 100vw !important;
    height: 600px;
    overflow: hidden;
    margin-left: calc(-50vw + 50%) !important;
    /* Move para esquerda quebrando container */
    margin-right: calc(-50vw + 50%) !important;
    /* Move para direita quebrando container */
    left: 0 !important;
    right: 0 !important;
    padding: 0 !important;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    width: 100% !important;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

/* IMAGEM FULL WIDTH REAL */
.hero-slider .slide img {
    width: 100% !important;
    max-width: none !important;
    height: 100%;
    object-fit: cover !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

/* CONTEÚDO CENTRALIZADO */
.hero-slider .slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-slider .slide-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slider .slide-content a {
    background: #0b2a4a;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.hero-slider .slide-content a:hover {
    background: #164470;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }

    .hero-slider .slide-content h2 {
        font-size: 28px;
    }

    .hero-slider .slide-content a {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }

    .hero-slider .slide-content h2 {
        font-size: 22px;
    }
}