.floating-erp {
    position: fixed;
    right: 20px;
    bottom: 120px;
    z-index: 999;
    transition: all 0.3s ease;
}

.erp-text {
    position: absolute;
    width: max-content; /* Esto asegura que el texto no se corte */
    text-align: center;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; /* Reducido ligeramente */
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px; /* Reducido el espaciado entre letras */
    background-color: rgba(0, 0, 0, 0.8);
    padding: 6px 12px; /* Reducido el padding horizontal y vertical */
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    min-width: 80px; /* Ancho mínimo */
    max-width: 120px; /* Ancho máximo */
    white-space: nowrap; /* Evita que el texto se divida en múltiples líneas */
}

.floating-erp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-erp img {
    width: 65px;
    height: 65px;
}

/* Efecto hover mejorado */
.floating-erp:hover .erp-text {
    background-color: rgba(92, 193, 238, 0.9); /* Color azul al hover */
    transform: translateX(-50%) scale(1.05);
}

.floating-erp:hover a {
    background-color: rgba(92, 193, 238, 0.9);
    transform: scale(1.1);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}