.flotante-contenedor {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99;
}

/* Ícono flotante */
.iconoEstilos {
    background-color: #EFA743;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iconoEstilos:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}

/* Mensaje flotante */
.mensajeFlotante {
    background-color: rgb(221, 206, 206);
    color: #333;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    font-size: 10px;
    white-space: nowrap;
}

.flotante-contenedor {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99;
    text-decoration: none; /* quita el subrayado del enlace */
}
