/* WELCOME BASE */
.WelcomeSection{
    padding: 60px 8%;
    background: #f9f9f9;
}

/* LAYOUT */
.welcome-container{
    display: flex;
    gap: 40px;
    align-items: center;
}

.welcome-text h2{
    font-size: 28px;
    margin-bottom: 20px;
}

.welcome-text p{
    margin-bottom: 15px;
    line-height: 1.6;
}

.welcome-image img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
}

/* STATS */
.stats-section{
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    text-align: center;
}

.stat h3{
    font-size: 26px;
    color: rgb(0,180,223);
}

.stat p{
    font-size: 14px;
}

/* SERVICES */
.services-section{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.service{
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service:hover{
    transform: translateY(-5px);
}

.service img{
    margin-bottom: 10px;
}

/* ANIMAÇÃO SCROLL */
.reveal{
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reveal.active{
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width:768px){

    .welcome-container{
        flex-direction: column;
    }

    .stats-section{
        flex-direction: column;
        gap: 20px;
    }

    .services-section{
        flex-direction: column;
    }
}
.service img{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.service:hover img{
    transform: scale(1.2);
}