*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
    color: #FFF;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

a:hover{
    filter: brightness(85%);
}

html {
    background: #111;
    color: #FFF;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    font-size: 16px;
    padding-bottom: 70px;
}

.quebra_linha{
    overflow-wrap: break-word; /* Quebra palavras muito longas para evitar estouro */
    word-break: break-word; /* Permite quebra de palavras muito longas */
    white-space: normal; /* Permite quebras de linha normais */  
    line-height: 1.5;
    word-spacing: 1px;

}

.gradient-background {
    width: 100%;
    height: 500px; /* Ajuste conforme necessário */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(17, 17, 17, 1)), url('../img/bg.png');
    /* Ajuste conforme necessário */
    position:absolute;
    z-index: -999;
  }


.border_radius_general {
    border-radius: 5px;
}

.center_container{
    width:1000px;
    text-align:left;
}

.grand_text{
    width:900px;
    font-family: 'Roboto', sans-serif; 
    font-weight: 300; 
    font-style: normal;
    font-size:60px;
    text-align:center;
}

.about_me{
    float:left;
    width:calc(100% - 300px);
    padding-left:30px;
}

.img_about_me{
    float:left;
    width:300px;
    
}

.container_about_me{
    margin-top:110px;
}

.menu_top{
    display:block;
}

.negocios_img{
    float:left;
    width:150px;
}

.negocios_texto{
    float:left;
    width:calc(100% - 250px);
    padding:20px;
}

.div_about_business{
    height:70px;
    width:100%;
    float:left;
}

.box_shadow{
    border-right:3px solid #0f0f0f;
    border-left:1px solid #0f0f0f;
    border-top:1px solid #0f0f0f;
    border-bottom:3px solid #0f0f0f;
}

.box_blog{
    float:left;
    width:calc(33.3% - 20px);
    margin-bottom:30px;
    margin-right:30px;
}

.footer_mobile{
    display:none;
}

.search_div{
    float:right;
    padding-top:27px; 
    font-family: 'Zain', sans-serif; 
    width:200px;
}

.search_box{
    background:rgba(0,0,0,0.3);
    width:100%;
    overflow:auto;
    padding:10px;
}

.menu_icon{
    width:15px;
    height:auto;
}

.container_blog{
    width:800px;
    text-align:left;
    margin-top:40px;
}

.scroll-down {
    margin-top:-30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    animation: bounce 2s infinite; /* Animação de bounce */
    color: #888; /* Cor da seta, você pode ajustar conforme o design */
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.viewheigt_100_mobile{
    height: calc(100dvh - 100px);
}


@media screen and (max-width: 1000px) {
    .center_container{
        width:100%;
        max-width:400px;
        padding:0px 20px;
    }
    .grand_text{
        width:100%;
        max-width:400px;
        font-size:30px;
        padding:0px 20px;
    }
    .about_me{
        width:100%;
        padding:20px;
        margin-top:20px;
    }
    .img_about_me{
        float:left;
        width:100%;
        padding:0px 40px;
    }

    .menu_top{
        display:none !important;
    }
    .negocios_img{
        width:100%;
    }
    .negocios_texto{
        width:100%;
    }
    .div_about_business{
        height:30px;
    }
    .box_blog{
        width:100%;
        margin-right:0;
    }
    .footer_mobile{
        position: fixed;
        left:0;
        bottom:0;
        width:100%;
        background:#0e0d12;
        text-align: center;
        display: block;
        border-top:1px solid #202020;
        padding-top:10px;
        padding-bottom:20px;
    }
    .search_div{
        width:calc(100% - 200px);
    }
    .search_box{
        background:0;
        padding:0;
    }
    .search_input{
        display:none;
    }
    .container_blog{
        width:100%;
    }
    .viewheigt_100_mobile{
        height: calc(100dvh - 200px);
    }
    .scroll-down{
        margin-top:0;
    }
}