@import "tailwindcss";

body {
    height: 100dvh;
}

.swiper {
    width: 60%;
    height: 80%;
}

@media (max-width: 768px) {
    .swiper {
        width: 100% !important;
        height: 100% !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .Titulo{

        font-size: 20px !important;
        border: none !important;
    }

    .Titulo-dois{

        font-size: 15px !important;
        border: none !important;
        margin: 0 !important;
    }
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    height: 100%;

    background-size: cover;
    background-repeat: no-repeat;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.swiper-slide .overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

#menuMobile {
    width: 60% !important;
    right: 0;
    left: auto !important;
}

#menuMobile.menu-open {
    animation: slideInRight 0.3s ease-out forwards;
}

#menuMobile.menu-closed {
    animation: slideOutRight 0.3s ease-out forwards;
    pointer-events: none;
}