/* --- INICIO CÓDIGO BOTÓN WHATSAPP --- */
        
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    left: 25px;
    
    background-color: #25D366;
    color: white;
    
    width: auto;              /* Ajusta el ancho al contenido */
    height: 50px;             /* Altura fija */
    border-radius: 25px;      /* Bordes redondeados para la píldora */
    padding: 0 16px;          /* Espaciado interno */
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    
    transition: transform 0.2s ease;
}

.whatsapp-button:hover {
    transform: scale(1.05);
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-button span {
    margin-left: 0px;  /* Espacio entre el ícono y el texto */
    font-weight: 600;   /* Hacemos la letra un poco más gruesa */
    font-size: 16px;    /* Tamaño de letra */
    font-family: 'Jost', sans-serif; /* Usamos la misma fuente de tu web */
}

/* --- FIN CÓDIGO BOTÓN WHATSAPP --- */