:root {
    --color-laranja: #fd7940;
    --color-laranja-light: #ff996c;
    --color-laranja-mid: #e96029;
    --color-laranja-dark: #d04f18;

    --color-blue: #006a81;
    --color-blue-light: #008aa1;
    --color-blue-dark: #02748a;

    --color-cinza: #3b3b3b;
}
html {
    scroll-behavior: smooth;
}
* {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 400;
    box-sizing: border-box;
}
body {
    font-size: 18px;
    overflow-x: hidden !important;
    background-color: #ffffff;
}
body,
ul,
h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
    padding: 0px;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
button {
    cursor: pointer;
    border: none;
    outline: none;
}
.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
[data-animate] {
    pointer-events: none;
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}
[data-animate="left"] {
    transform: translateX(-50px);
}
[data-animate="right"] {
    transform: translateX(50px);
}
[data-animate="top"] {
    transform: translateY(-50px);
}
[data-animate="bottom"] {
    transform: translateY(50px);
}
[data-animate="fade"] {
    transform: scale(0.98);
}
[data-animate="scale"] {
    transform: scale(0.5);
}
.animate.active {
    pointer-events: auto;
    opacity: 1;
    transform: none;
}
.box-float {
    -webkit-box-shadow: 0 0 19px -4px rgba(0, 0, 0, .6);
    -moz-box-shadow: 0 0 19px -4px rgba(0,0,0,.6);
    box-shadow: 0 0 19px -4px rgba(0, 0, 0, .6);
    background-color: var(--color-laranja);
    border-radius: 10px;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 10;
}
.box-float ul {
    display: flex;
    flex-direction: column;
}
.box-float ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 10px;
}
.box-float ul li a:hover {
    transition: .2s;
    background-color: var(--color-laranja-mid);
}
.box-float svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}
.box-float svg.linkedin,
.box-float svg.email {
    width: 38px;
}
@media (max-width: 800px) {
    .box-float {
        right: 1rem;
        bottom: 1rem;
    }
    .box-float svg {
        width: 40px;
        height: 40px;
    }
    .box-float svg.linkedin,
    .box-float svg.email {
        width: 36px;
    }
}