/* Buttons Component */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem; /* Más padding para estilo moderno */
    border-radius: 12px; /* Maximo redondeo 12px */
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    text-decoration: none !important;
    letter-spacing: 0.3px;
}

/* Primary Button - Prussian Blue Gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(16, 37, 66, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 37, 66, 0.4);
    color: #ffffff !important;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(16, 37, 66, 0.3);
}

/* Secondary Button - Outline or Ghost */
.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary) !important;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 37, 66, 0.2);
    transform: translateY(-2px);
}

/* Small button variant */
.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* Large button variant */
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
}
