/* Pricing Currency Selector - Estilo Arredondado */
.pricing-currency-selector {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    padding: 0.25rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-currency-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    min-width: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-currency-btn:hover {
    color: var(--text-primary);
}

.pricing-currency-btn.active {
    background: #FF6B35;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}