/* ============================================
   BOTONES - Sistema de botones compartidos
   Para: dashboards, workspace, suscripción,
   editar perfil, centro de ayuda
   ============================================ */

.btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #0077B5;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-toggle {
    background: transparent;
    color: #0077B5;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
}

.btn-toggle:hover {
    background: #f0f0f0;
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.btn-locate {
    background: #28a745;
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-locate:hover {
    background: #218838;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #0077B5;
    color: #0077B5;
}

.btn-outline:hover {
    background: #0077B5;
    color: white;
}

.btn-danger {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
}

.btn-danger:hover {
    background: #dc3545;
    color: white;
}

.btn-warning {
    background: transparent;
    border: 1px solid #ffc107;
    color: #ffc107;
}

.btn-warning:hover {
    background: #ffc107;
    color: #212529;
}

.btn-success {
    background: transparent;
    border: 1px solid #28a745;
    color: #28a745;
}

.btn-success:hover {
    background: #28a745;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .btn-small {
        width: 100%;
    }
}
