/**
 * Ingresso Simples - Estilos Globais
 * Arquivo CSS comum para todas as páginas
 */

/* ============================================
   RESET E BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #e8f4fc 0%, #d1e9f6 50%, #f0f7fc 100%);
    font-family: 'Outfit', sans-serif;
    color: #1e3a5f;
}

/* ============================================
   GLOW EFFECTS
   ============================================ */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: #60a5fa;
    top: -100px;
    right: -100px;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: 10%;
    left: -100px;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: #818cf8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content-wrapper-narrow {
    max-width: 800px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.header-centered {
    justify-content: center;
}

.header-no-border {
    border-bottom: none;
}

/* ============================================
   LOGO
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    /*width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.logo-text .ingresso {
    background: linear-gradient(135deg, #1e3a5f 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .simples {
    color: #3b82f6;
}

/* ============================================
   NAVIGATION MENU
   ============================================ */
.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.nav-link.active {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.nav-link svg {
    opacity: 0.7;
}

.nav-link:hover svg,
.nav-link.active svg {
    opacity: 1;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
    display: none;
    background: rgba(59, 130, 246, 0.1);
    border: none;
    color: #3b82f6;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(59, 130, 246, 0.2);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

/* Mobile Menu Absolute (para páginas com formulário) */
.mobile-menu-absolute {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    z-index: 100;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header {
        justify-content: space-between;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: #3b82f6;
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
}

.form-group label span {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-width: 0;
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    background: #fff;
    font-size: 15px;
    font-family: inherit;
    color: #1e3a5f;
    transition: all 0.3s ease;
}

.form-group > input,
.form-group > select,
.form-group > textarea {
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.error-message {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Input with prefix */
.input-with-prefix {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.input-prefix {
    padding: 14px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.input-with-prefix input {
    border-radius: 0 12px 12px 0;
    flex: 1;
    min-width: 0;
    width: 100%;
}

/* Phone input with country */
.phone-input-wrapper {
    display: flex;
    gap: 8px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.phone-input-wrapper select {
    width: 110px;
    flex-shrink: 0;
}

.phone-input-wrapper input {
    flex: 1;
    min-width: 0;
    width: 100%;
}

@media (max-width: 500px) {
    .phone-input-wrapper {
        flex-direction: column;
    }
    .phone-input-wrapper select {
        width: 100%;
    }
}

/* Password wrapper */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 50px;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #3b82f6;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.radio-option {
    flex: 1;
    min-width: 120px;
}

.radio-option input {
    display: none;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.radio-option input:checked + label {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.radio-option label:hover {
    border-color: #3b82f6;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    padding: 24px;
}

.card-body {
    padding: 24px;
}

.card-footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

/* Card sem hover effect */
.card-static {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* ============================================
   BOX - Containers genéricos reutilizáveis
   ============================================ */

/* Box base - container branco com borda */
.box {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 20px;
}

/* Box com sombra */
.box-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Box light - fundo claro sutil */
.box-light {
    background: rgba(59, 130, 246, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    padding: 20px;
}

/* Box highlight - para destaque com gradiente leve */
.box-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(29, 78, 216, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 20px;
}

/* Box header - com ícone e título */
.box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.box-header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.box-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a5f;
}

.box-header p {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

/* Item card - para listas de itens */
.item-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.item-card:last-child {
    margin-bottom: 0;
}

.item-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.item-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.item-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e3a5f;
}

.item-card-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

/* ============================================
   HELP BAR - Barra de ajuda/suporte
   ============================================ */
.help-bar {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(29, 78, 216, 0.02) 100%);
    border-radius: 14px;
    padding: 16px 20px;
    margin: 20px 0;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.help-bar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1e3a5f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}

.help-bar-link:hover {
    color: #3b82f6;
}

.help-bar-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #E1306C 0%, #833AB4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Help bar variante com texto à esquerda */
.help-bar-left {
    justify-content: flex-start;
}

/* Help bar com borda tracejada (para cupom, por ex) */
.help-bar-dashed {
    border-style: dashed;
}

/* ============================================
   INFO BOX
   ============================================ */
.info-box {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-box svg {
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.info-box-warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

.info-box-warning svg {
    color: #f59e0b;
}

.info-box-success {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.info-box-success svg {
    color: #10b981;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e3a5f;
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.toast.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.toast-icon {
    flex-shrink: 0;
}

/* ============================================
   MODAL / CONFIRM POPUP
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    padding: 32px;
    text-align: center;
    animation: modalIn 0.3s ease;
}

.modal-lg {
    max-width: 600px;
}

.modal-sm {
    max-width: 320px;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.modal-icon-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.modal-icon-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.modal-icon-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.modal-icon-instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    color: #fff;
}

/* Modal icon quadrado (para Instagram) */
.modal-icon-square {
    border-radius: 16px;
}

.modal-icon svg {
    width: 32px;
    height: 32px;
}

.modal h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.modal p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

.modal-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal-btn-cancel {
    background: #f1f5f9;
    color: #64748b;
}

.modal-btn-cancel:hover {
    background: #e2e8f0;
}

.modal-btn-confirm {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.modal-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.modal-btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.modal-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.modal-btn-instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    color: #fff;
}

.modal-btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3);
}

/* Modal com apenas um botão */
.modal-buttons-single {
    justify-content: center;
}

.modal-buttons-single .modal-btn {
    flex: none;
    min-width: 140px;
}

/* Close button para modal */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(100, 116, 139, 0.2);
    color: #1e3a5f;
}

/* ============================================
   ALERT BOXES
   ============================================ */
.alert-box {
    border-radius: 12px;
    padding: 14px 16px;
    margin: 16px 0;
}

.alert-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.alert-box p {
    font-size: 13px;
    line-height: 1.5;
}

.alert-box-info {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.alert-box-info .alert-box-title {
    color: #3b82f6;
}

.alert-box-info p {
    color: #1e3a5f;
}

.alert-box-warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.alert-box-warning .alert-box-title {
    color: #d97706;
}

.alert-box-warning p {
    color: #92400e;
}

.alert-box-danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.alert-box-danger .alert-box-title {
    color: #dc2626;
}

.alert-box-danger p {
    color: #991b1b;
}

.alert-box-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-box-success .alert-box-title {
    color: #059669;
}

.alert-box-success p {
    color: #065f46;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-primary {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.15);
}

.section-title svg {
    color: #3b82f6;
}

/* ============================================
   BACK LINK
   ============================================ */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #3b82f6;
}

/* ============================================
   PROGRESS STEPS
   ============================================ */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.progress-step.completed {
    background: #10b981;
    color: #fff;
}

.progress-step.pending {
    background: rgba(59, 130, 246, 0.1);
    color: #64748b;
}

.progress-line {
    width: 40px;
    height: 3px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.progress-line.active {
    background: linear-gradient(90deg, #10b981, #3b82f6);
}

/* ============================================
   BUTTONS ROW
   ============================================ */
.buttons-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.back-btn {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    background: #fff;
    color: #3b82f6;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.back-btn:hover {
    background: rgba(59, 130, 246, 0.08);
    transform: translateY(-2px);
}

.submit-btn {
    flex: 1;
    padding: 18px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

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

/* ============================================
   SUCCESS STATE
   ============================================ */
.success-state {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.success-state.show {
    display: block;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
}

.success-state h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.success-state p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden {
    display: none !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.4s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 16px;
    }
    
    .header {
        padding: 12px 0;
        margin-bottom: 24px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}
