@font-face {
    font-family: Poppins;
    src: url(../fonts/Poppins-Regular.ttf);
}

/*background: #0082f2;*/ /*azul do trunfo*/
/*background: #006ede;*/ /*azul do trunfo mais escura*/

/* esconder o scroll */
html::-webkit-scrollbar {
    display: none;
}

/* padronizar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;

    scrollbar-color: #B6D6FF #eff8f9;
    scrollbar-width: thin;
    /*scrollbar-width: none;*/
}

body {
    margin: 0;
    letter-spacing: 0.3px;
    font-family: Poppins;
}

a{
    text-decoration: none;
    font: inherit;
    color: inherit;
}
a:hover{
    text-decoration: none;
    color: inherit;
}

.logotipo{
    height: 50px;
    width: auto;
    transform: scale(1.1);
}

.btn{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/*btn whatsapp*/
#whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

#whatsapp-btn.show {
        opacity: 1;
        visibility: visible;
    }

#whatsapp-btn:hover {
        background-color: #1ebe57;
        text-decoration: none;
        color: white;
    }

