.card-whatsapp {
    width: 70%;
    display: flex;
    justify-content: flex-start;
    font-size: 1em;
    align-items: center;
    gap: 10px;
    background-color: var(--highlight);
    border: 1px solid var(--whatsapp);
    border-radius: 50px;
    position: fixed;
    bottom: 0;
    right: 0;
}

.wpp-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--whatsapp);
    color: var(--highlight);
    width: 45px;
    height: 45px;
    border-radius: 100%;
    font-size: 2em; 
}

.wpp-text {
    color: #198a42;
}

@media (max-width: 1200px) {
    .card-whatsapp {
        padding: 10px;
        width: 70%;
    }
}

@media (max-width: 700px) {
    .card-whatsapp {
        width: 90%;
    }

    .wpp-icon {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }

    .wpp-text {
        font-size: 1em;
    }
}

@media (max-width: 500px) {
    .card-whatsapp {
        flex-direction: column;
        text-align: center;
        width: 20%;
    }
}