/* CONTAINER PRINCIPAL */
.zap-float-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999999;
}

/* MENU */
.zap-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.20);
    width: 260px; /* 🔥 largura fixa para alinhamento perfeito */
}

/* LINKS DO MENU */
.zap-menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border-left: 4px solid #25D366;
    display: block;
    line-height: 1.3;
    transition: background 0.2s;
}

.zap-menu a small {
    font-weight: normal;
    font-size: 13px;
}

/* HOVER */
.zap-menu a:hover {
    background: #f1fff7;
}

/* BOTÃO DO WHATSAPP */
.zap-button {
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.zap-button img {
    width: 38px;
    height: 38px;
}