/*
    [ CAROUSEL ]
*/
.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.carousel-button-left {
    left: 10px;
}
.carousel-button-right {
    right: 10px;
}


.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

/* Estilos para o menu hamburguer */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex-direction: column;
    }
}

.banner {
    max-height: 200px;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ajuste para não cortar a imagem */
}
.banner-container {
    position: relative;
}
.banner-container a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.banner-container a.active {
    opacity: 1;
    z-index: 48;
}
.banner-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 10;
}
.banner-button.left {
    left: 0;
    z-index: 49;
}
.banner-button.right {
    right: 0;
    z-index: 49;
}
@media (min-width: 768px) {
    .banner {
        max-height: none;
        height: 100vh; /* Ocupa toda a altura da viewport */
        max-height: 700px;
    }
    .banner img {
        object-fit: cover; /* Cobre toda a área na versão desktop */
        max-height: 700px;
    }
}


#popup {
    display: none;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
}   

#popuph {
    display: none;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


