*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-size:1.6rem;
    font-family:"Inter", sans-serif;
    list-style: none;
    text-decoration: none;
}
html{
    font-size: 62.5%;
}
:root{
    --font-h1:4.8rem;
    --font-h2:4rem;
    --font-h3:3.2rem;
    --font-h4:2.4rem;
    --color-primary-60: #F5F5F5;
    --color-brand-secundary-30: #0645B1;
    --color-secundary-30: #a1a7b1;
    --color-link-10: #F7E10F;
    --color-link-secundary:#e6e6e6;
}
body{
    position: relative;
}


img{
    width: 100%;
}

.btn-link{
    display: flex;
    position: relative;
    width:24rem;
    height: 4.8rem;
    text-decoration: none;
    background-color: var(--color-link-10);
    margin-top: 2rem;
    padding: 1.2rem 4rem;
    border-radius: 0.6rem;
    cursor: pointer;
    color:var(--color-brand-secundary-30);
    font-weight: 400;
    overflow: hidden; 
    object-fit: cover;
    & span{
        display: flex;
        position: absolute;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        top:0;
        left: 0;
        z-index: 1;
    }
}
.btn-link::before{
    content: "";
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-brand-secundary-30);
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease-in-out;
    z-index: 1;
}


.btn-link:hover{
    color: var(--color-primary-60);
}
.btn-link:hover::before{
    transform: scaleX(1);
}
.btn-secundary{
    display: flex;
    position: relative;
    width:24rem;
    height: 4.8rem;
    text-decoration: none;
    background-color: var(--color-link-secundary);
    margin-top: 2rem;
    padding: 1.2rem 4rem;
    border-radius: 0.6rem;
    cursor: pointer;
    color:var(--color-secundary-30);
    font-weight: 400;
    overflow: hidden; 
    object-fit: cover;
    transition: all .3s ease-in;
    & span{
        display: flex;
        position: absolute;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        top:0;
        left: 0;
        z-index: 1;
    }
    & :hover{
        background-color: var(--color-link-10);
        color: var(--color-brand-secundary-30);
    }
}

/* Largura da scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Fundo da barra */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Parte que se move */
::-webkit-scrollbar-thumb {
  background:var(--color-link-10);
  border-radius: 6px;
}

/* Hover no thumb */
::-webkit-scrollbar-thumb:hover {
  background:var(--color-brand-secundary-30);
}