﻿.settings-wrapper {
    background-color: var(--bg-deep);
    min-height: 100vh;
    width: 100%;
    transition: background-color 0.3s ease;
}

.page-title, .section-title {
    color: var(--text-main);
    transition: color 0.3s ease;
}

.text-muted-custom {
    color: var(--text-muted) !important;
    transition: color 0.3s ease;
}

.glass-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-glass) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.theme-options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.theme-option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

body[data-vago-theme="day"] .theme-option-card {
    background: rgba(0, 0, 0, 0.02);
}

.theme-option-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

body[data-vago-theme="day"] .theme-option-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

.theme-option-card.active {
    background: rgba(34, 197, 94, 0.1) !important;
    border-color: #22c55e !important;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.15);
}

.option-icon {
    font-size: 22px;
}

.option-details {
    display: flex;
    flex-direction: column;
}

.option-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.theme-option-card.active .option-title {
    color: #22c55e;
}

.option-desc {
    font-size: 11px;
    color: var(--text-muted);
}


/* Customização do Switch Premium do VaGo */
.custom-vago-switch .form-check-input {
    width: 48px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glass);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

    .custom-vago-switch .form-check-input:focus {
        box-shadow: none;
        border-color: var(--border-glass);
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://w3.org' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M7 10l3 3 6-6'/%3e%3c/svg%3e");
    }

    .custom-vago-switch .form-check-input:checked {
        background-color: #22c55e !important;
        border-color: #22c55e !important;
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.3);
    }
