/*
@font-face {
    font-family: Poppins;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/Poppins-Light.ttf') format('ttf');
}
@font-face {
    font-family: Poppins;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/Poppins-Regular.ttf') format('ttf');
}
@font-face {
    font-family: Poppins;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/Poppins-Medium.ttf') format('ttf');
}
@font-face {
    font-family: Poppins;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/Poppins-SemiBold.ttf') format('ttf');
}
@font-face {
    font-family: Poppins;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/Poppins-ExtraBold.ttf') format('ttf');
}
*/
:root {
    --color-roxo: #7d3089;
    --color-roxo-escuro: #6f247a;
    --color-verde: #d8e04b;
    --color-cinza: #353434;
    --color-ciano: #60aab2;
}
html {
    scroll-behavior: smooth;
}
* {
    font-family: "Lato", sans-serif;
    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: 1400px;
    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-blue);
    border-radius: 10px;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 9;
}
.box-float ul {
    display: flex;
    flex-direction: column;
}
.box-float ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.box-float svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}
.box-float svg.linkedin,
.box-float svg.email {
    width: 38px;
}
.box-float li.wpp {
    background-color: var(--color-roxo);
}
.box-float li.instagram {
    background-color: var(--color-verde);
}
.box-float li.instagram svg,
.box-float li.linkedin svg {
    fill: var(--color-roxo);
}
.box-float li.email {
    background-color: var(--color-ciano);
}
.box-float li.email svg {
    fill: var(--color-verde);
}
.box-float li.linkedin {
    background-color: #dedcda;
}
.bg-faixa {
    background-image: url("../img/faixa.webp");
    background-position: left center;
    background-size: auto 100%;
    background-repeat: repeat-x;
    width: 100%;
    height: 55px;
}
@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;
    }
}
/* Chamada (Next Page)*/
.area-chamada {
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;   
    background-color: #363636;
}
.area-chamada p {
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-verde);
}
.area-chamada a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 1rem;
    color: #fff;
    background-color: var(--color-roxo);
    padding: 10px 1.5rem;
    border-radius: 5px;
    transition: .2s;
    position: relative;
    text-align: center;
    line-height: 1;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(111,36,122,0.5); 
    box-shadow: 0px 0px 15px 5px rgba(111,36,122,0.5);
    min-width: 240px;
}
.area-chamada a span {
    position: relative;
    z-index: 1;
    font-weight: 600;
}
.area-chamada a:hover {
    background-color: var(--color-verde);
    color: var(--color-roxo);
    -webkit-box-shadow: 0px 0px 15px 5px rgba(216,224,75,0.5); 
    box-shadow: 0px 0px 15px 5px rgba(216,224,75,0.5);
}
.area-chamada a::after {
    content: "➔";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-55%);
    font-size: 3rem;
    color: var(--color-roxo-escuro);
    z-index: 0;
    transition: .2s;
    pointer-events: none !important;
}
.area-chamada a:hover::after {
    color: #bfc542;
}
@media (max-width: 550px) {
    .area-chamada p {
        font-size: 1.25rem;
    }
}
/* Fim -- Chamada (Next Page)*/