@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,500;1,700&display=swap');

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

html{
    scroll-behavior: smooth;
}
/*Efeito body*/


#backToTop{
    display: block;
    cursor: pointer;
}

.content{
    margin-top: 80px;
}

#ads{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 30px auto;
}

.logoAds{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 250px;
}

.container-carrousel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
    filter: drop-shadow(1px 2px 4px var(--Preto));
}

/* carrossel*/
#carrousel{
    width: 70%;
}

.d-block{
    border-radius: 9px;
}
/* carousel*/
#categorias{
    background-color: var(--Azul-Escuro);
    text-align: center;
    color: var(--Branco);
    padding: 10px;
    border-radius: 50px;
    width: 280px;
    height: 65px;
    margin: 60px auto;
    font-size: 30px;
    cursor: default;
    box-shadow: 0px 0px 7px 3px #00000053;   
}

#link-categorias{
    text-decoration: none;
    color: white;
}

.categorias{
    display: flex;
    justify-content: space-around;
    gap: 40px;
    color: var(--Branco);
    margin: 50px auto;
    flex-wrap: wrap-reverse;
}

.collum{
    width: 350px;
    max-height: 390px;
    padding: 5px 5px 15px 5px;
    background-color: var(--Azul-Escuro);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: 15px;
    box-shadow: 0px 0px 7px 3px #00000053;
    transition: 0.4s;
}

.collum:hover{
    transform: scale(1.02);
}

.title-collum{
    display:flex;
    align-items: center;
    gap: 5px;
}

.title-categorias{
    text-align: center;
    font-weight: bold;
    font-size: 30px;
}

.link-categorias{
    text-decoration: none;
    cursor: pointer;
}

.link-cat{
    display: flex;
    align-items: center;
    justify-content: center;
}

#youtube{
    color:red;
    font-size: 35px;
    padding-top: 3px;
}

.bi-mic-fill{
    color: var(--Laranja-Claro);
    font-size: 30px;
    padding-top: 3px;
}

.bi-newspaper{
    font-size: 30px;
    color: var(--Azul-Ciano);
}

.img-conteudo{
    width: 80%;
    margin-bottom: 10px;
    height: auto;
    border-radius: 10px;
    transition: .4s ease-in-out;
    cursor: pointer;
}

@media screen and (max-width: 1170px) {
    .collum{
        width: 230px;
    }
}

@media screen and (max-width: 1165px) {
    .logoAds{
        width: 100%;
        height: 190px;
    }
}

@media screen and (max-width: 960px) {
    .logoAds{
        width: 100%;
        height: 120px;
    }
}

@media screen and (max-width: 815px) {
    .collum{
        width: 350px;
        flex-wrap: wrap-reverse;
    }

    #carrousel{
        width: 100%;
    }
}

@media screen and (max-width:760px) {
    .categorias{
        align-items: center;
        flex-wrap: wrap-reverse;
    }
    .logoAds{
        width: 100%;
        height: 200px;
    }
    .title-categorias{
        font-size: 18px;
    }
    .collum{
        min-width: 150px;
        max-width: 150px;
        min-height: 70px;
    }
}

@media screen and (max-width: 425px) {
    .logoAds{
        width: 100%;
        height: 90px;
    }
}
