* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background: #0f0f0f;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(160, 160, 160, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(140, 140, 140, 0.1) 0%, transparent 50%);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    overflow: hidden;
}

.logo-link {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: contain;
    padding: 8px;
}

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

.swiper-wrapper {
    align-items: center;
    height: 100%;
}

.swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: auto;
    max-width: 80vw;
    max-height: 75vh;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.swiper-slide img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.swiper-button-next, 
.swiper-button-prev {
    backdrop-filter: blur(20px);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    margin-top: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    transform: scale(1.05) translateY(-1px);
}

.swiper-button-next {
    right: 25px;
}

.swiper-button-prev {
    left: 25px;
}

/* RESPONSIVIDADE */

@media (max-width: 768px) {
    .swiper-button-next, 
    .swiper-button-prev {
        top: auto !important;
        bottom: 40px !important;
        transform: none !important;
        margin-top: 0 !important;
        position: absolute !important;
        width: 45px;
        height: 45px;
    }

    .swiper-button-next {
        right: 40% !important;
        left: auto !important;
    }

    .swiper-button-prev {
        left: 40% !important;
        right: auto !important;
    }
}

@media (max-width: 468px) {
    .swiper-button-next, 
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: auto !important;
        bottom: 80px !important;
        transform: none !important;
        margin-top: 0 !important;
        position: absolute !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    .swiper-button-next:hover, 
    .swiper-button-prev:hover {
        transform: scale(1.05) !important;
    }

    .swiper-button-next {
        right: 30% !important;
        left: auto !important;
    }

    .swiper-button-prev {
        left: 30% !important;
        right: auto !important;
    }
}