/* Estilos para el Botón de WhatsApp Premium */
.ash-whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999999;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    /* Glassmorphism ligero inicial */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 50px;
    color: #ffffff;
    /* Texto blanco solicitado */
    text-decoration: none;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
}

.ash-whatsapp-button.active {
    opacity: 1;
    transform: translateY(0);
}

.ash-whatsapp-button:hover {
    background: #ffffff;
    /* Fondo blanco solicitado en expansión */
    color: #25D366;
    /* Cambio a Verde WhatsApp para legibilidad sobre fondo blanco */
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15);
}

.ash-whatsapp-icon {
    background: #25D366;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    color: #ffffff;
    /* Aseguramos que el SVG herede blanco */
}

.ash-whatsapp-button:hover .ash-whatsapp-icon {
    background: #25D366;
    color: #ffffff;
}

.ash-whatsapp-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease;
}

.ash-whatsapp-button:hover .ash-whatsapp-text {
    max-width: 150px;
}

/* Responsividad */
@media (max-width: 768px) {
    .ash-whatsapp-button {
        bottom: 20px;
        right: 20px;
        padding: 8px;
    }

    .ash-whatsapp-text {
        display: none;
    }

    .ash-whatsapp-icon {
        margin-right: 0;
    }
}