.img-carrossel {
    background-size: cover;
    background-position: center;
    height: 90vh;
    width: 100vw;
}

a>img {
    height: 50px;
}

/* ===== HERO SECTION ===== */
.hero-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* ===== VIDEO BACKGROUND ===== */
.back-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ===== OVERLAY (escurecer o vídeo) ===== */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.8));
    z-index: 2;
}

/* ===== TEXTO ===== */
.hero-texto {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.texto-centro {
    max-width: 900px;
    text-align: center;
    color: #fff;
}

/* ===== TIPOGRAFIA ===== */
.texto-centro h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.texto-centro p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: #dcdcdc;
}

.back-video {
    filter: brightness(0.9);
}

.texto-centro {
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .back-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
}