body {
    font-family: Segoe UI, sans-serif;
    background: #eef7fb;
    margin: 0
}

.whatsapp-widget {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999
}

.whatsapp-button {
    width: 74px;
    height: 74px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D466, #12817E);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    animation: beat 2s infinite
}

.whatsapp-label {
    position: absolute;
    right: 90px;
    top: 18px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    color: #0b6fa4;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15)
}

.menu {
    position: absolute;
    right: 0;
    bottom: 90px;
    width: 360px;
    display: none
}

.menu.show {
    display: block
}

.header {
    background: linear-gradient(135deg, #1e88e5, #4fc3f7);
    color: #fff;
    padding: 18px;
    border-radius: 18px 18px 0 0
}

.body {
    background: #fff;
    padding: 12px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15)
}

.card {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 12px;
    border-radius: 12px
}

.card:hover {
    background: #f3fbff
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 12px
}

.b1 {
    background: #1e88e5
}

.b2 {
    background: #26a69a
}

.b3 {
    background: #ffb300
}

.info {
    flex: 1
}

.info h4 {
    margin: 0
}

.info small {
    color: #666
}

.status {
    font-weight: bold;
    font-size: 12px
}

.available {
    color: #2e7d32
}

.closed {
    color: #c62828
}

.schedule {
    font-size: 11px;
    color: #666
}

@keyframes beat {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}