@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

h1,
h2,
h3,
h4,
h5,
h6,
p,
a, span,
li, div,
button, input, textarea, select, label {
    font-family: 'Montserrat', sans-serif;
}

.amarelo {
    color: #fbd801;
}

.bg-amarelo {
    background-color: #fbd801;
}

.btn-amarelo {
    color: #000000;
    background-color: #fbd801;
}

.vermelho {
    color: #ff0000;
}

.bg-vermelho {
    background-color: #ff0000;
}

.capa {
    background-image: url('../img/capa.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.bg-produtos {
    background-image: url('../img/bgprodutos.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
}

.splide__arrow {
    background-color: #fbd801;
    color: #000000;
    border: none;
}

.splide__pagination__page {
    background-color: #505050;
}

.splide__pagination__page.is-active {
    background-color: #fbd801;
}

.btn-wpp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .capa {
        background-image: url('../img/capa_m.jpg');
        background-size: contain;
        height: 60vh;
    }

    .bg-produtos {
        background-image: url('../img/bgprodutos.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .btn-wpp-fixed {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}