/* ------- POSIÇÃO FIXA ------- */
.whats-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* ------- BOTÃO REDONDO ------- */
.whats-button {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: 0.25s ease;
    position: absolute;
    right: 0;
    bottom: 0;
}

.whats-button img {
    width: 35px;
    height: 35px;
}

/* ------- BOTÃO EXPANDIDO (TEXTO + ÍCONE) ------- */
.whats-expand {
    position: absolute;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
    background: #25d366;
    padding: 10px;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);

    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: 0.25s ease;
}

.whats-expand img {
    width: 35px;
    height: 35px; /* mesmo tamanho do botão redondo */
}

.whats-text {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 13px;
    text-align: right;
    white-space: nowrap;
}

/* ------- HOVER COM efeito ------- */
.whats-wrapper:hover .whats-button {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.whats-wrapper:hover .whats-expand {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}