:root {
    --cor-primaria: #5e379b;
    --cor-secundaria: #A2CE4D;
}

html, body{
    width: 100%;
}
body{
    background-color: var(--cor-primaria);
    height: 100%;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: flex-end;
}
p, a, h1, h2, h3, h4, h5, h6, li, small, div, span, label, font, input, button, textarea, select{
    margin: 0px;
    padding: 0px;
    font-family: 'TT Firs Neue Trl';
    letter-spacing: 0.02em;
}


.conteudo{
    height: 95vh;
    margin: 0 auto;
    transform: translateX(5%);
    display: flex;
    gap: 55px;
    justify-content: space-between;
}

.conteudo .esquerda{
    max-width: 400px;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.conteudo .esquerda .logotipo{
    max-width: 335px;
    width: 85%;
    margin-bottom: 45px;
}
.conteudo .esquerda .logotipo .svg{
    width: 100%;
}
.conteudo .esquerda .dados{
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.conteudo .esquerda .dados a{
    display: flex;
    gap: 5px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 7px 15px;
    font-size: 17px;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    transition: .1s;
}
.conteudo .esquerda .dados a .svg.icone{
    width: 18px;
}
.conteudo .esquerda .dados a:hover{
    transition: .2s;
    opacity: .8;
}
.conteudo .esquerda .dados a.botao-whatsapp{
    position: relative;
    gap: 9px;
    border-color: var(--cor-secundaria);
    color: var(--cor-secundaria);
    margin-bottom: 15px;
    padding-right: 40px;
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 500;
}
.conteudo .esquerda .dados a.botao-whatsapp .svg.icone{
    width: 45px;
}
.conteudo .esquerda .dados a.botao-whatsapp span{

}
.conteudo .esquerda .dados a.botao-whatsapp .svg.mao-clique{
    position: absolute;
    height: 95%;
    top: 50%;
    right: 0;
    transform: translate(60%,-30%);
}
.conteudo .esquerda .informacoes{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.conteudo .esquerda .informacoes h3{
    margin-bottom: 15px;
    font-weight: 900;
    color: var(--cor-secundaria);
    font-size: 21px;
    line-height: 1.25em;
    text-align: center;
    width: 80%;
}
.conteudo .esquerda .informacoes .topicos{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}
.conteudo .esquerda .informacoes .topicos ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.conteudo .esquerda .informacoes .topicos ul > li{
    color: #fff;
    font-weight: 500;
    font-size: 18.5px;
    position: relative;
    padding: 0;
    padding-left: 35px;
}
.conteudo .esquerda .informacoes .topicos ul > li::before{
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    content: '';
}
.conteudo .direita.totem{

}
.conteudo .direita.totem .svg,
.conteudo .direita.totem video{
    height: 100%;
    max-height: 950px;
}



#link-flutuante-wpp {
    position: fixed;
    width: 60px;
    height: 60px;
    transition: .3s;
    right: 35px;
    bottom: 33px;
    z-index: 9998;
}
#link-flutuante-wpp .link-action {
    transition: all 225ms ease-in-out;
    position: absolute;
    cursor: pointer;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #34AF23;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
#link-flutuante-wpp .link-action i {
    margin: 0 auto;
    color: #fff;
    font-size: 2.4rem;
}
#link-flutuante-wpp::after,
#link-flutuante-wpp::before {
    content: '';
    position: absolute;
    opacity: 0;
    border: 3px solid #34AF23;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    -webkit-border-radius: 50%;
    animation: WaveWhatsApp 3s ease infinite;
}
#link-flutuante-wpp::after {
    animation-delay: .5s;
}
#link-flutuante-wpp:hover::after {
    border: 3px solid #34AF23;
}
#link-flutuante-wpp:hover::before {
    border: 3px solid #34AF23;
}

@keyframes WaveWhatsApp {
    0% {
        transform: scale(0.5);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}




/* Medias queries */
@media (max-width: 768px) {

    body{
        width: 100%;
        overflow-x: hidden;
        align-items: flex-start;
    }


    .conteudo{
        width: 90%;
        height: auto;
        margin: 0 auto;
        transform: none;
        gap: 35px;
        flex-direction: column;
    }

    .conteudo .esquerda{
        max-width: 100%;
        padding-top: 50px;
    }
    .conteudo .esquerda .logotipo{
        max-width: 100%;
        width: 70%;
        margin-bottom: 45px;
    }
    .conteudo .esquerda .logotipo .svg{
        width: 100%;
    }
    .conteudo .esquerda .dados{
        margin-bottom: 25px;
        gap: 5px;
    }
    .conteudo .esquerda .dados a{
        gap: 5px;
        border-radius: 10px;
        padding: 7px 13px;
        font-size: 15px;
    }
    .conteudo .esquerda .dados a .svg.icone{
        width: 16px;
    }
    .conteudo .esquerda .dados a.botao-whatsapp{
        gap: 9px;
        margin-bottom: 13px;
        padding-right: 35px;
        font-size: 17px;
    }
    .conteudo .esquerda .dados a.botao-whatsapp .svg.icone{
        width: 40px;
    }
    .conteudo .esquerda .dados a.botao-whatsapp span{

    }
    .conteudo .esquerda .dados a.botao-whatsapp .svg.mao-clique{
        position: absolute;
        height: 85%;
        top: 50%;
        right: 0;
        transform: translate(50%,-30%);
    }
    .conteudo .esquerda .informacoes{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .conteudo .esquerda .informacoes h3{
        margin-bottom: 17px;
        font-size: 20px;
        width: 100%;
    }
    .conteudo .esquerda .informacoes .topicos{
        gap: 0 30px;
        flex-wrap: wrap;
        width: 90%;
    }
    .conteudo .esquerda .informacoes .topicos ul{

    }
    .conteudo .esquerda .informacoes .topicos ul > li{
        font-size: 16.5px;
        padding-left: 30px;
    }
    .conteudo .esquerda .informacoes .topicos ul > li::before{
        width: 4px;
        height: 4px;
        left: 15px;
    }
    .conteudo .direita.totem{
        width: 100%;
        text-align: center;
    }
    .conteudo .direita.totem .svg,
    .conteudo .direita.totem video{
        width: 60%;
        max-height: 100%;
        height: auto;
        margin-bottom: -6px;
    }



    #link-flutuante-wpp {
        position: fixed;
        width: 60px;
        height: 60px;
        transition: .3s;
        right: 35px;
        bottom: 33px;
        z-index: 9998;
    }
    #link-flutuante-wpp .link-action {
        transition: all 225ms ease-in-out;
        position: absolute;
        cursor: pointer;
        bottom: 0;
        display: flex;
        align-items: center;
        width: 60px;
        height: 60px;
        background-color: #34AF23;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    }
    #link-flutuante-wpp .link-action i {
        margin: 0 auto;
        color: #fff;
        font-size: 2.4rem;
    }


}