@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/** 
 * public/assets/css/style.css - Design System SaLiPi 2026 (Paleta Oficial)
 * Paleta: Laranja #E85A2A | Verde #5CB85C | Az.Marinho #1B2E6B
 *         Roxo #7B3F8E | Pink #E8459F | Azul #1A3A8F | Amarelo #F5A500
 */
:root {
    /* === CORES PRIMÁRIAS OFICIAIS === */
    --primary:        #1B2E6B; /* Azul Marinho — cor institucional principal */
    --primary-light:  rgba(27, 46, 107, 0.08);
    --accent:         #E8459F; /* Pink Vibrante — destaques e CTAs */
    --accent-orange:  #E85A2A; /* Laranja — alertas e atenção */
    --accent-green:   #5CB85C; /* Verde — sucesso e aprovação */
    --accent-purple:  #7B3F8E; /* Roxo — secundário */
    --accent-blue:    #1A3A8F; /* Azul — links e informação */
    --accent-yellow:  #F5A500; /* Amarelo — avisos e destaques */

    /* === GRADIENTE OFICIAL (7 CORES) === */
    --grad-premium:  linear-gradient(90deg, #E85A2A 0%, #5CB85C 16.6%, #1B2E6B 33.2%, #7B3F8E 49.8%, #E8459F 66.4%, #1A3A8F 83%, #F5A500 100%);
    --grad-primary:  linear-gradient(135deg, #1B2E6B 0%, #1A3A8F 100%);
    --grad-accent:   linear-gradient(135deg, #E8459F 0%, #7B3F8E 100%);

    /* === NEUTROS E UTILITÁRIOS === */
    --bg-light:      #f1f5f9;
    --glass-bg:      rgba(255, 255, 255, 0.88);
    --glass-border:  rgba(255, 255, 255, 0.55);
    --text-main:     #1e293b;
    --text-muted:    #64748b;
    --radius-lg:     32px;
    --radius-md:     20px;
    --shadow-premium: 0 20px 40px -10px rgba(27, 46, 107, 0.15);
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Sora', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    background-image: 
        radial-gradient(at 0% 0%, rgba(27, 46, 107, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(232, 69, 159, 0.04) 0px, transparent 50%);
    background-attachment: fixed;
    margin: 0;
    min-height: 100vh;
}

/* Glassmorphism Cards Unificados */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.title-gradient {
    color: #1B2E6B !important;
    font-weight: 800;
    letter-spacing: -1.5px;
    display: inline-block;
    background: linear-gradient(135deg, #1B2E6B 0%, #E8459F 60%, #F5A500 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.title-premium-fix {
    color: #1B2E6B !important;
    font-weight: 800;
    letter-spacing: -1.5px;
    display: inline-block;
}
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Forms Unificados */
.form-group-custom {
    margin-bottom: 24px;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
    padding-left: 5px;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border-radius: var(--radius-md);
    padding: 14px 20px;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
    background-color: white;
}

.form-control[readonly] {
    background-color: #f8fafc;
    border-color: #e2e8f0;
}

/* Botões Unificados */
.btn-premium {
    background: var(--grad-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px -5px rgba(27, 46, 107, 0.35);
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(232, 69, 159, 0.45);
    color: white;
    filter: brightness(1.1);
}

/* Status Badges */
.badge-salipi {
    border-radius: 50px;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Sections Icons */
.section-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Responsive Utilities */
@media (max-width: 991px) {
    .container { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 768px) {
    .glass-card { border-radius: 20px; padding: 25px !important; }
    .display-1 { font-size: 4rem; }
}

/* --- ESTILOS AVANÇADOS (PREMIUM) --- */

.fw-800 { font-weight: 800; }

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulse-blob 8s infinite alternate;
}

@keyframes pulse-blob {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.interaction-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.interaction-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    background: white;
}

.bg-accent-light {
    background-color: var(--accent-light);
}

.text-accent {
    color: var(--accent);
}

.z-index-1 { z-index: 1; }

/* Novas Seções Institucionais */
.experience-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(27, 46, 107, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid rgba(27, 46, 107, 0.15);
}

.stat-item {
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.homenageado-section {
    background-image: url('https://salipi.com.br/edicao2025/wp-content/uploads/2021/10/salipi-logo-ok.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(27, 46, 107, 0.8) 100%);
    z-index: 0;
}

.espaco-mini-card {
    transition: all 0.4s ease;
    border-color: #f1f5f9 !important;
}

.espaco-mini-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary) !important;
    box-shadow: 0 15px 30px rgba(27, 46, 107, 0.1) !important;
}

.icon-circle-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.max-w-700 { max-width: 700px; }
.tracking-widest { letter-spacing: 3px; }
.op-80 { opacity: 0.8; }
.x-small { font-size: 0.75rem; }

/* Gradientes de Botões Específicos */
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-orange));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    color: white;
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: white;
}

/* Redesign Homenageado */
.homenageado-container {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.homenageado-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.25);
    background: white;
    padding: 15px;
    transition: all 0.5s ease;
}

.homenageado-frame:hover {
    transform: scale(1.02);
}

.homenageado-frame img {
    border-radius: 30px;
    filter: sepia(0.2) contrast(1.1);
}

.homenageado-card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.homenageado-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* Espaços Pro */
.espaco-card-pro {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.espaco-card-pro:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(27, 46, 107, 0.15);
    border-color: var(--primary);
}

.espaco-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: 0.3s;
}

.espaco-card-pro:hover::before {
    opacity: 1;
}

.space-detail-section {
    padding: 100px 0;
    border-bottom: 1px solid #f1f5f9;
}

.space-detail-section:nth-child(even) {
    background: #f8fafc;
}

.space-nav-sticky {
    position: sticky;
    top: 84px;
    z-index: 900;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.space-nav-capsule {
    display: inline-flex;
    background: white;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.space-nav-item {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.space-nav-item:hover {
    color: var(--primary);
    background: rgba(27, 46, 107, 0.05);
}

.space-nav-item.active {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 4px 12px rgba(27, 46, 107, 0.25);
}

.category-title {
    font-weight: 950;
    font-size: 2.5rem;
    color: var(--text-main);
    letter-spacing: -1.5px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 5px;
    background: var(--primary);
    border-radius: 10px;
}

/* Ajuste de Scroll para IDs */
[id] {
    scroll-margin-top: 160px;
}

/* --- GALERIA DE MULTIMÍDIA (VÍDEOS & FOTOS) --- */
.video-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 46, 107, 0.12);
}

.video-thumb {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.photo-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.3s;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.sponsor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.sponsor-item img {
    max-height: 60px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}

.sponsor-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* --- DASHBOARD & SIDEBAR LAYOUT (v2 - Deprecated em favor do Master V5) --- */
/* Mantido vazio para preservar numeração se necessário ou removido */

/* Dashboard Cards Específicos */
.stat-card-premium {
    background: white;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

/* Floating Summary Box (Inscrição) */
.floating-summary-box {
    position: sticky;
    top: 100px;
    z-index: 100;
}

/* Stepper Modern v2 */
.stepper-v2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.stepper-v2::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-v2-item {
    position: relative;
    z-index: 2;
    background: transparent;
    text-align: center;
    flex: 1;
}

.step-v2-circle {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #94a3b8;
    font-weight: 700;
    transition: 0.3s;
}

.step-v2-item.active .step-v2-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.2);
}

.step-v2-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-v2-item.active .step-v2-label {
    color: var(--primary);
}

@media (max-width: 991px) {
    .dashboard-sidebar {
        display: none;
    }
}
/* --- SEÇÃO: PARTICIPANTES CONFIRMADOS (Estilo Bienal) --- */

.confirme-attendance-section {
    background: #f8fafc;
    position: relative;
    padding: 100px 0;
    border-top: 1px solid #f1f5f9;
}

.speaker-card {
    background: white;
    border-radius: 32px;
    padding: 12px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
    position: relative;
}

.speaker-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(27, 46, 107, 0.2);
}

.speaker-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #eee;
    position: relative;
}

.speaker-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.speaker-card:hover .speaker-img-wrapper img {
    transform: scale(1.08);
}

.speaker-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
}

.speaker-card:hover .speaker-tag {
    background: var(--primary);
    color: white;
}

.speaker-name {
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-main);
    padding: 0 10px;
}

.speaker-bio-short {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 10px;
    opacity: 0.8;
}

/* Modal Speaker Premium v4 (Layout Split) */
#speakerModal .modal-content {
    border-radius: 40px;
    border: none;
    overflow: hidden;
    background: white;
}

.speaker-modal-body {
    padding: 0;
}

.modal-split-side {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 400px;
}

.modal-split-content {
    padding: 60px 40px;
}

.speaker-modal-img-v4 {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1/1;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 8px solid white;
}

.modal-title-v4 {
    font-weight: 950;
    font-size: 2.5rem;
    color: var(--text-main);
    letter-spacing: -1px;
    line-height: 1;
}

/* --- ANIMAÇÕES DE INTERFACE --- */
@keyframes animFadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-up {
    animation: animFadeUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Ajuste de Dropdowns para consistência */
.dropdown-menu {
    border: none !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    z-index: 2050 !important; /* Garantir que fique sobre os cards glassmorphism */
}
    margin-top: 10px !important;
    border-radius: 16px !important;
    padding: 10px !important;
}

.dropdown-item {
    transition: 0.2s ease;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(27, 46, 107, 0.06) !important;
    color: var(--primary) !important;
    transform: translateX(5px);
}

/* --- PASSAPORTE DIGITAL (TICKETS) --- */
.passaporte-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.passaporte-header {
    background: var(--primary);
    padding: 30px;
    text-align: center;
    position: relative;
}

.passaporte-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: radial-gradient(circle at 15px 30px, transparent 15px, var(--primary) 16px);
    background-size: 30px 30px;
    background-position: center bottom;
}

.passaporte-body {
    padding: 50px 40px;
}

.passaporte-divider {
    border-top: 2px dashed #e2e8f0;
    margin: 40px 0;
    position: relative;
}

.passaporte-divider::before,
.passaporte-divider::after {
    content: '';
    position: absolute;
    top: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8fafc; /* Cor do fundo do dashboard */
}

.passaporte-divider::before { left: -55px; }
.passaporte-divider::after { right: -55px; }

.qr-premium-box {
    background: #f8fafc;
    border-radius: 30px;
    padding: 25px;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.03);
}

.status-badge-float {
    position: absolute;
    top: 30px;
    right: 30px;
    transform: rotate(10deg);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ticket-dot {
    width: 8px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 50%;
}

/* --- FLUXO DE INSCRIÇÃO MASTER (V5 unificado abaixo) --- */

/* CARDS DE ATIVIDADE PREMIUM (GRID V5) */
.ativ-card-v5 {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.ativ-card-v5 {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.ativ-card-v5:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1) !important;
}

.ativ-card-v5:active { transform: scale(0.98); }

.ativ-card-v5 .category-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
}

.ativ-card-v5 .title-ativ {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary);
    padding-right: 60px;
}

.ativ-card-v5 .info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

/* SUMMARY BOX STICKY (CHECKOUT GLASS) */
.summary-sticky-v5 {
    position: sticky;
    top: 2rem;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 2.5rem;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.summary-sticky-v5 .item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-sticky-v5 .total-row {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.summary-sticky-v5 .total-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.5;
    letter-spacing: 2px;
}

.summary-sticky-v5 .total-value {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

/* SELECT HIDDEN MASTER */
.check-hidden-v5 {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check-hidden-v5:checked + .ativ-card-v5 {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(231, 111, 81, 0.15);
}

.check-hidden-v5:checked + .ativ-card-v5::after {
    content: "\F272";
    font-family: "bootstrap-icons";
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    opacity: 0.15;
    transition: 0.5s;
    transform: scale(1.4);
}

/* CATEGORY FILTERS */
.filter-pill {
    padding: 12px 28px;
    border-radius: 50px;
    background: #fff;
    border: 1.5px solid #f1f5f9;
    color: #64748b;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.filter-pill:hover, .filter-pill.active {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(27, 46, 107, 0.2);
}

/* PASSAPORTE DIGITAL V5 (TICKET) */
.passaporte-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}
.passaporte-header {
    background: var(--grad-premium);
    padding: 3rem;
    text-align: center;
    position: relative;
}
.status-badge-float {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.passaporte-body {
    padding: 4rem 3.5rem;
}
.ticket-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(231,111,81,0.4);
}
.qr-premium-box {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 35px;
    border: 1px solid rgba(0,0,0,0.05);
    display: inline-block;
}
.passaporte-divider {
    height: 2px;
    background: repeating-linear-gradient(to right, #e2e8f0, #e2e8f0 10px, transparent 10px, transparent 20px);
    margin: 3rem 0;
}

/* STEPPER V3 - GLASS PROGRESS (PADRONIZADO) */
.stepper-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 2.5rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.stepper-v3::before {
    content: "";
    position: absolute;
    top: calc(2.5rem + 28px); /* Ajuste milimétrico para o centro dos círculos V5 */
    left: 80px;
    right: 80px;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-v3-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-v3-circle {
    width: 55px;
    height: 55px;
    background: #fff;
    border: 3px solid #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 800;
    color: #cbd5e1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.step-v3-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    transition: 0.3s;
}

.step-v3-item.active .step-v3-circle {
    background: var(--primary);
    border-color: #fff;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 15px 30px rgba(27, 46, 107, 0.3);
}

.step-v3-item.active .step-v3-label {
    color: var(--primary);
    font-weight: 900;
}

.step-v3-item.past .step-v3-circle {
    background: var(--accent-green);
    border-color: #fff;
    color: #fff;
    box-shadow: 0 10px 20px rgba(92, 184, 92, 0.2);
}

/* ADMIN SIDEBAR V5 FIX */
.admin-sidebar .nav-link.active {
    background: var(--grad-primary) !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(27, 46, 107, 0.25);
}
.admin-sidebar .nav-link.active i {
    color: #fff !important;
    opacity: 1;
}
.nav-section-label { font-size: 0.65rem; font-weight: 900; color: #94a3b8; letter-spacing: 2px; }

/* Estilos Adicionais para o Resumo Gruda */
.summary-sticky-v5 {
    position: sticky;
    top: 2rem;
    z-index: 10;
}

/* REUSABLE CLASSES */
.max-w-800 { max-width: 800px; margin: 0 auto; }
.x-small { font-size: 0.75rem; }
.bg-primary-light { background: #eff6ff; color: #1d4ed8; }
.bg-success-light { background: #ecfdf5; color: #059669; }
.bg-warning-light { background: #fffbeb; color: #b45309; }
.opacity-05 { opacity: 0.05; }
.interaction-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important; }
.rounded-5 { border-radius: 35px !important; }
.fs-7 { font-size: 0.85rem !important; }
.x-small { font-size: 0.75rem !important; }
.fw-900 { font-weight: 950 !important; }
/* --- ESTRUTURA MASTER V5 (DASHBOARD UNIFICADO) --- */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f8fafc;
    width: 100%;
}

.dashboard-sidebar {
    width: 280px;
    background: #fff;
    border-right: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    z-index: 1050;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dashboard-main {
    flex-grow: 1;
    min-width: 0;
    padding: 0;
    position: relative;
    background: #f8fafc;
    overflow-x: hidden;
}

/* Modo Dashboard Limpo (Sem Header Global) */
.dashboard-layout .dashboard-wrapper {
    min-height: 100vh;
}
.dashboard-layout .dashboard-sidebar {
    height: 100vh;
    top: 0;
}

/* Ajustes de Links do Menu Lateral (Emerald Master) */
.nav-dash-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 16px;
    color: #64748b;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.nav-dash-link:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.nav-dash-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-dash-link.active i {
    color: var(--primary);
}

.nav-dash-link i {
    font-size: 1.2rem;
    color: #94a3b8;
    transition: 0.3s;
}

/* RESPONSIVIDADE MASTER V5 */
@media (max-width: 991px) {
    .dashboard-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        z-index: 9999;
    }
    
    .dashboard-wrapper.sidebar-open .dashboard-sidebar {
        left: 0;
    }
    
    .dashboard-main {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    .dashboard-main .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (min-width: 992px) {
    .dashboard-main {
        padding: 0 1.5rem;
    }
}

/* --- VOUCHER PREMIUM (PASSAPORTE DIGITAL) --- */
.ticket-v5 {
    background: #ffffff;
    border-radius: 24px;
    position: relative;
    overflow: visible;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    margin: 20px 0;
}

.ticket-v5::before, .ticket-v5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.ticket-v5::before { left: -20px; }
.ticket-v5::after { right: -20px; }

.ticket-header-v5 {
    padding: 40px;
    background: var(--grad-premium);
    color: white;
    border-radius: 24px 24px 0 0;
    text-align: center;
    position: relative;
}

.ticket-body-v5 {
    padding: 40px;
    position: relative;
}

.ticket-divider-v5 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 2px dashed #e2e8f0;
    z-index: 5;
}

.qr-voucher-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.qr-voucher-box:hover {
    transform: scale(1.05);
}

.hologram-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Versão de Impressão */
@media print {
    .ticket-v5 {
        box-shadow: none !important;
        border: 2px solid #000 !important;
        border-radius: 0 !important;
    }
    .ticket-header-v5 {
        background: #fff !important;
        color: #000 !important;
        border-bottom: 2px solid #000 !important;
    }
    .ticket-v5::before, .ticket-v5::after { display: none !important; }
    .btn, .dashboard-sidebar, .no-print { display: none !important; }
    .title-gradient { color: #000 !important; -webkit-text-fill-color: #000 !important; background: none !important; }
}
