﻿html {
    scroll-behavior: smooth;
}
:target {
    scroll-margin-top: 10rem;
}

.body-content{
    padding: 0px !important;
}

footer {
    display: none;
}

.container-especial{
    width:1700px;
    margin: 0 auto;
}

section {
    width: 100%;
}

.div-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0px 0px;
    background-color: #f7f7f7;
}

.transforme-gestao {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 150px;
    margin: 0 auto;
}

.texto-titulo {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(96deg, #498BE8 3.24%, #2B5BCA 96.76%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blurred-img {
    width: 33%;    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: blur(1px);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.8);
}

    .blurred-img:hover {
        filter: blur(0);
        transform: scale(1.05);        
        z-index: 10;
    }

section{
    padding-top: 110px;
}

section#inicio {
    padding-top: 30px;
}


    section#produtos {
        text-align: center;
        display: flex;
        justify-content: center;
    }
section#produtos h2 {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 40px;
    font-family: 'Ubuntu', sans-serif;
}
    section#produtos .lista-produtos {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        position: relative;
    }
    section#produtos .linha {
        position: relative;
        width: 100%;
        max-width: 1500px;
        height: 20px;
        margin: 0 auto;
    }
    section#produtos .linha-vertical {
        position: absolute;
        top: -30px;
        left: 10%;
        width: 2px;
        height: 30px;
        background: white;
    }
