﻿body {
    font-family: "Maven Pro", sans-serif;
}

ul {
    list-style: none;
    padding: 0px;
}

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

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.swiper-slide .mudar-slide {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #E4E6EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7794FF;
    transition: all .2s;
}

.swiper-slide .mudar-slide:hover {
    background: #fff;
    color: #0C6EE5;
    cursor: pointer;
}

.swiper-slide .imagem-fundo {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    border-radius: 0 20px 20px 0px;
    object-fit: cover;
    filter: brightness(.8)
}

.container-centro {
    height: auto;
    padding: 2em 0px;
}

.swiper-slide .container-mudar-slide {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 4em;
    position: absolute;
    top: 6vh;
}

.swiper-slide .imagem-centro {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-slide .container-contador {
    display: flex;
    gap: 1em;
}

.swiper-slide .container-contador .slide-contador {
    width: 8px;
    height: 8px;
    background: #E4E6EB;
    border-radius: 50%;
    transition: all .2s;
    opacity: .5;
}

.swiper-slide .container-contador .slide-contador:hover {
    background: #fff;
    cursor: pointer;
    opacity: 1;
}

.swiper-slide .container-contador .contador-ativo {
    width: 25px;
    border-radius: 20px;
    cursor: default;
    background: #fff;
    opacity: 1;
}

.swiper-slide .slide-content {
    text-align: center;
    color: #fff;

    h4 {
        font-weight: 700;
    }

    p {
        font-size: .9em;
        margin: 0;
    }

    p span {
        color: #FFCA00;
        font-weight: 700;
    }

    a {
        padding: 1em 7em;
        background: #E4E6EB;
        text-transform: uppercase;
        font-size: .8em;
        text-align: center;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 900;
        transition: all .2s;
        color: #1E2F65;
    }
    
    a:hover {
        background: #fff;
    }
}

@media (max-height: 710px) {
    .container-centro {
        height: 60vh;
    }
}