﻿.btn-whatsapp {
    position: fixed;
    bottom: 20px;   /* separación desde abajo */
    right: 0px;    /* separación desde la derecha */
    z-index: 1000;  /* siempre visible encima */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;    /* tamaño base móvil */
    height: 50px;
    border-radius: 50%;
    /*background-color: #25D366;*/ /* verde WhatsApp */
    /*box-shadow: 0 4px 8px rgba(0,0,0,0.3);*/
    transition: transform 0.2s ease-in-out;
}

.btn-whatsapp:hover {
    transform: scale(1.1); /* efecto hover */
}

.btn-whatsapp img {
    width: 42px;   /* tamaño base móvil */
    height: 42px;
}

/* === Mejora para pantallas grandes (>= 768px) === */
@media (min-width: 768px) {
    .btn-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 0px;
    }

    .btn-whatsapp img {
        width: 56px;
        height: 56px;
    }
}