/**
 * Buttons Component - Global Service
 */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
    gap: 0.5rem;
    font-family: var(--font-global);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: #09409a;
    color: white;
    border-color: #09409a;
}

.btn-primary:hover {
    background: white;
    color: #09409a;
    border-color: #09409a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 84, 178, 0.3);
}

.btn-secondary {
    background: #2dd100;
    color: white;
    border-color: #2dd100;
}

.btn-secondary:hover {
    background: white;
    color: #2dd100;
    border-color: #2dd100;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #09409a;
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: #09409a;
    border-color: #09409a;
}

.btn-outline-primary:hover {
    background: #09409a;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
