footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    position: relative;
    bottom: 0px;
    width: 100vw;
}

footer a {
    text-decoration: none;
}

.footer-block{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.footer-block img{
    width: 15px;
}

.footer-row{
    flex-direction: row;
    display: flex;
    gap:50px
}

.footer-block a{
    text-decoration: none;
    color:white;
}

.wpp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    z-index: 10;
    /* Mantém o botão na frente */
}

.wpp-button img {
    width: 80px;
    transition: 1s;
}

.wpp-button img:hover {
    transform: scale(1.05);
}

.chat-box {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 250px;
    height: 150px;
    background: white;
    border-radius: 10px;
    border-style: solid;
    border-color: green;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: none; 
}

.chat-box.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: all 0.3s ease-in-out; 
}

.chat-box a {
    display: block;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 8px;
    width: 175px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.dentro-wpp {
    padding: 10px;
    border-radius: 10px;
    height: 75px;
    border: 2px solid green;
}

.dentro-wpp p {
    letter-spacing: 1px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.botao-wpp {
    transition: 1s ease-in-out;
}

.botao-wpp a:hover {
    color: black;
    transition: 1s;
}

.align-insta{
    align-items: center;
    justify-content: center;
    display: flex;
}

@media (max-width: 480px) {
    .footer-row{
        flex-direction: column;
        display: flex;
        gap:20px;
    }

    .wpp-button img {
        width: 50px;
        transition: 1s;
    }

    .chat-box {
        position: fixed;
        right: 22px;
        bottom: 17px;
        width: 220px;
        height: 120px;
        background: white;
        border-radius: 10px;
        border-style: solid;
        border-color: green;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        padding: 10px;
        z-index: 5;
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
        transition: none; 
    }
    
    .chat-box.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        transition: all 0.3s ease-in-out; 
    }
    
    .chat-box a {
        display: block;
        background: #25D366;
        color: white;
        text-align: center;
        padding: 8px;
        width: 175px;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 10px;
    }

    .dentro-wpp {
        padding: 10px;
        border-radius: 10px;
        height: 50px;
        font-size: 0.7rem;
        border: 2px solid green;
    }
    
    .dentro-wpp p {
        letter-spacing: 1px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    
    .botao-wpp {
        transition: 1s ease-in-out;
        width: 190px;
    }
    
    .botao-wpp a:hover {
        color: black;
        transition: 1s;
    }
}