* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #D6B97E #0b0b21;
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #0b0b21;
}

*::-webkit-scrollbar-thumb {
    background-color: #D6B97E;
}

:root {
    --title: "Prosto One", serif;
    --fontTwo: "Monda", serif;
    --fontThree: "Syncopate", sans-serif;
    --fontFour: "Monomaniac One", serif;    
    --colorOne: #f0d736;
    --colorTwo: #465F87;
    --colorThree: #c8d7ea;
    --colorFour: #D6B97E;
    --colorDark: #0b0b21;
    --colorWhite: #D9D9D9;
}

body {
    display: block;
    background-color: var(--colorWhite);
}


#hero {
    position: relative;
    display: flex;
    background-color: var(--colorDark);
    max-width: 100vw;
    min-height: 100vh;
    z-index: 10;   
}

.heroImageAssets {
    position: absolute;
    display: flex;
    padding: 80px 100px;
    z-index: 10;
}

.logoHero {
    width: 170px;
    background-color: var(--colorDark);
}

.heroTitle {
    display: block;
    font-family: var(--fontTwo);
    text-align: center;
    letter-spacing: 0.25rem;    
    color: var(--colorWhite);
    margin: auto;
    z-index: 10;
}

.heroTitle > h1 {
    font-family: var(--title);
    font-size: 4.5rem;
    text-align: center;
    letter-spacing: 0.5rem;
    padding: 2rem;
    margin: 0 auto;
}

.heroTitle > h2 {
    font-weight: 500;
    font-size: 1.75rem;
    padding-bottom: 2rem;
    margin: 0 1rem;
}

.heroTitle > p {
    font-weight: 300;
    font-size: 1.5rem;
    margin: 0 1rem;
}

.highlight{
    color: var(--colorOne);
    font-weight: bold;
    text-transform: uppercase;

}

.canvasBackground {
    position: absolute;
    padding: 2rem 0 0 2rem;
    z-index: 1;
    width: 97vw;
    align-items: center;
    justify-content: center;
    height: 97vh;
}

.scrollArrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    transition: transform 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.scrollArrow svg {
    width: 50px;
    height: 50px;
    fill: var(--colorOne);
}

.scrollArrow:hover {
    transform: translate(-50%, -5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

#allCardsHome {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    padding: 5rem 1rem;
}

.cardHome {
    background-color: var(--colorThree);
    width: 350px;
    margin: 0 50px 50px 0;
    border-radius: 35px;
    text-align: left;    
    font-family: var(--fontTwo);
    font-weight: 400;
    font-size: 1.5rem;    
    letter-spacing: 0.25rem;
    transition: box-shadow 0.3s ease;
}

.cardHome:hover {
    box-shadow: 0.5rem 0.5rem 0 0 var(--colorDark) ;   /* 'eixo x' 'eixo y' 'blur' 'expansão/recuo' 'cor' */
}

.cardHome > h3 {
    display: flex;
    background-color: var(--colorDark);
    color: var(--colorWhite);
    height: 8rem;
    padding: 1rem 1.5rem;    
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-bottom: 1rem;
    font-family: var(--fontFour);
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    align-items: center;
    justify-content: center;
}

.listLinksToolsCards {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.5rem;
}

.linkToolsCardHome {
    color: var(--colorDark);
    width: fit-content;
    transition: color 0.2s ease;
}

.linkToolsCardHome::before {
    content: "\2714";
    margin-right: 5px;
}

.linkToolsCardHome:hover {
    color: var(--colorTwo);
    font-weight: bold;
}

.verMaisBtnCard {
    display: block;
    color: var(--colorTwo);
    font-size: 1rem;
    text-align: center;
    margin: 1.5rem auto;
    width: fit-content;
    transition: color 0.3s ease, transform 0.2s ease;
}

.verMaisBtnCard:hover {
    font-weight: bold;
}

footer {
    display: flex;
    width: 100%;
    background-color: var(--colorDark);
    padding: 1rem 5rem;
}

.footerContent {
    font-family: var(--fontFour);
    font-size: 1.25rem;
    color: var(--colorWhite);
    margin: auto;
}

.robotFooter {
    height: 7rem;
}

.logoFooter {
    height: 4rem;
    margin: auto 0;
}

a {
    text-decoration: none;
    color: var(--colorFour);
}


@media (max-width: 865px) {
    .heroImageAssets {
        margin: 0 auto;
    }

    .logoHero {
        width: 120px;
    }

    .heroTitle {
        width: 90vw;
    }

    .heroTitle > h1 {
        font-size: 3rem;
    }

    .heroTitle > h2 {
        font-size: 1.25rem;
        padding: 1rem 3rem;
    }

    .heroTitle > p {
        font-size: 1rem;
        padding: 1rem 3rem;
    }

    .scrollArrow svg {
        width: 30px;
        height: 30px;
    }

    .cardHome {
        width: 60vw;
        margin: 25px auto;
    }

    footer {
        padding: 1.5rem 2rem;
    }

    .robotFooter {
        height: 5rem;
    }
    
    .logoFooter {
        display: none;
    }
}

@media (max-width: 600px) {
    .heroTitle > h1 {
        margin: 0;
        padding: 2rem 0;
        font-size: 2.25rem;
    }

    .heroTitle > h2 {
        font-size: 1.25rem;
        padding: 1rem;
        margin: 0;
    }

    .heroTitle > p {
        font-size: 1rem;
        padding: 1rem 2rem;
        margin: 0;
    }

    .cardHome {
        width: 95vw;
    }
}