
/*LETRERO ESTAMOS TRABAJANDO - LICENCIAMIENTO*/
.licenciamiento-floating-badge {
    position: fixed;
    right: 20px;
    bottom: 40px;
    background: linear-gradient(135deg, #002f6c 0%, #004b93 100%);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid #fdb813;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 9999;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease;
}

.licenciamiento-floating-badge:hover {
    transform: translateY(-5px);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.badge-content span {
    color: #fdb813;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
}

/* Sistema de Engranajes */
.gear-system {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-gear {
    position: absolute;
    line-height: 1;
}

/* Engranaje Principal (Grande) - Gira a la derecha */
.gear-large {
    font-size: 26px;
    top: 0;
    left: 0;
    animation: spin-clockwise 3s linear infinite;
}

/* Engranaje Secundario (Chico) - Gira a la izquierda y más rápido */
.gear-small {
    font-size: 16px;
    bottom: -2px;
    right: -4px;
    animation: spin-counter-clockwise 2s linear infinite;
    opacity: 0.9;
}

/* Animaciones de movimiento continuo */
@keyframes spin-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-counter-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}