:root {
    --blue: #3CA4D9;
    --bluelight: #95c9e3;
    --yellow: #FFC70D;
    --green: #198642;
    --red: #D61619;
    --graylight: #F5F5F5;
}

* {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #C1C1C1;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 100;
    background-color: var(--graylight);
    box-shadow: -2px 9px 33px -12px rgba(0,0,0,0.75);
    top: 0;
    justify-content: space-between;
}

.header .logo img {
    height: 80px;
    padding: 5px 25px;
}

.header .container-menu {
    width: 60vw;
    display: flex;
    gap: 10px;
    justify-content: end;
}

.header .item {
    padding: 25px 0;
}

.header .item a {
    font-weight: 500;
    color: #0D0D0D;
    text-decoration: none;
}

.header .container-menu .item::after {
    content: '\2802';
    padding-left: 25px;
}

.header .container-menu .item:last-child:after {
    content: '';
}

.header .login {
    width: 20vw;
    display: flex;
    justify-content: end;
}

.header .login .item {
    padding: 25px;
}

.header .login {
    width: 20vw;
    display: flex;
    justify-content: end;
}

.section {
    max-width: 100%;
    display: flex;
    line-height: 1.5rem;
}
.section:not(.section-welcome):nth-child(even) {
    background-color: var(--graylight);
}

.section .container {
    display: flex;
    align-items: center;
    width: 100%;
}

.container > div {
    padding: 25px 100px;
    width: 50%;
}

.section .container h1 {
    margin-bottom: 10px;
}

.section:not(.section-welcome) .container img {
    height: 650px;
}

.section-welcome {
    max-width: 100%;
    height: calc(100vh - 90px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 90px;
}

.section-welcome > div {
    width: 50%;
}

.section-welcome p {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 3rem;
}

.section-welcome p span {
    color: var(--red);
}
.section-welcome img {
    padding: 50px;
    width: 700px;
}

.controle {
    display: inline;
}
.image-animation.active {
    animation: imageanimation 1s ease-in;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100% !important;
}

@keyframes imageanimation {
    0% {
        transform: translateY(-250px);
        filter: opacity(0);

    }

    85% {
        transform: translateY(50px);

    }

    100% {
        transform: translateY(0);
        filter: opacity(1);
    }
}

.container-cards {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    gap: 30px;
    margin-top: 40px;
    overflow: auto;
    padding: 20px;
}
.card {
    width: 250px;
    padding: 30px;
    border: 1px solid #CACACA;
    border-radius: 20px;
    box-shadow: 10px -10px 0px 3px var(--box-shadow-color);
}
.card .card-header {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    align-items: center;
}
.card .card-header i {
    font-size: 2rem;
    color:  var(--box-shadow-color);
}

.gallery {
    margin: 20px 0;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 90%);
    grid-template-rows: 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    overflow: scroll;
    height: 450px;
    scroll-snap-type: both mandatory;
    scroll-padding: 1rem;
}

.active {
    scroll-snap-type: unset;
}

li {
    scroll-snap-align: center;
    display: inline-block;
    border-radius: 3px;
    font-size: 0;
}
.badge-message {
    padding: 20px; width: 500px; background: #FEFEFE; text-align:center; margin: auto; margin-top: 20px
}
.p-50 {
    padding: 50px;
}
@media screen and (max-width: 1080px) {
    .section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .section-welcome {
        height: max-content !important;
    }
    .section-welcome > div {
        width: 100%;
    }
    .section-welcome p {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .section-welcome span {
        font-size: 1rem !important;
    }
    .section .container {
        flex-direction: column;
    }
    img {
        max-width: 100%;
    }
    .badge-message {
        width: 100%;
    }
    .p-50 {
        padding: 20px;
    }
    .container > div {
        width: 100%;
        padding: 20px;
    }
    .section:not(.section-welcome) .container img {
        height: 350px;
    }
    .mobile-hide {
        display: none !important;
    }
}