.hero-video {
    width: 70%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-video:hover {
    transform: scale(1.02);
}

.hero-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide com background */
.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Layout padrão (texto esquerda / mídia direita) */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Conteúdo */
.hero-content {
    flex: 1;
    max-width: 50%;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 1.5rem;
}

/* Mídia (img ou vídeo) */
.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image,
.hero-video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Quando for só background + texto centralizado */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 2rem;
}

/* Animações fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.fade-up.delay-1 {
    animation-delay: 0.4s;
}

.fade-up.delay-2 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-video {
        width: 80%;
        max-height: 60vh;
    }

    .hero-inner {
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .hero-content,
    .hero-media {
        max-width: 100%;
    }

    .hero-content {
        order: 1;
    }

    .hero-media {
        order: 2;
    }

    .hero-video {
        width: 90%;
        max-height: 50vh;
        min-height: 200px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .hero-video {
        width: 95%;
        max-height: 45vh;
        min-height: 180px;
    }

    .hero-inner {
        padding: 0.5rem;
    }

    .hero-content h1 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .hero-content p {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }
}