/* N1 Ingressos - Cores da marca */
/* N1 Ingressos - Paleta Profissional Revisitada */
:root {
    /* Identidade */
    --primary-navy: #000000;
    /* Navy mais profundo e moderno (Slate 800) */
    --primary-orange: #FF8C42;
    /* Laranja N1 */
    --primary-orange-hover: #E67A30;
    --primary-yellow: #FFC857;

    /* Tons Neutros (O segredo do visual profissional) */
    --text-main: #334155;
    /* Cinza escuro para textos */
    --text-muted: #64748b;
    /* Cinza para descrições */
    --bg-light: #f4f6f8;
    /* Fundo da página (cinza mais presente) */
    --bg-white: #ffffff;
    --border-color: #eef1f4;
    /* Cor de borda suave */

    /* Sombras Elevadas */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(30, 41, 59, 0.08);
    /* Sombra azulada */

    /* Acentos e Contraste Adicional */
    --accent-orange: #FF8C42;
    --accent-yellow: #FFC857;
    --text-light: #ffffff;
    --primary-blue: #3b82f6;
    /* Azul moderno para ações de edição */
}

/* Utility Classes */
.bg-navy {
    background-color: var(--primary-navy) !important;
}

.text-navy {
    color: var(--primary-navy) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

.text-orange {
    color: var(--primary-orange) !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Global */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Header - Removido o Gradiente, adicionado Navy Sólido ou Branco */
.header {
    background: var(--primary-navy);
    /* Cor sólida passa mais confiança */
    padding: 0;
    box-shadow: var(--shadow-md);
    /* border-bottom: 3px solid var(--primary-orange); */
    position: sticky;
    top: 0;
    z-index: 1050;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none !important;

}

.nav-links a:hover {
    color: var(--primary-orange) !important;
}

/* Cards - Mais limpos e sem bordas coloridas desnecessárias */
.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    /* Borda fina em vez de sombra pesada */
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    border-bottom: 1px solid var(--border-color);
    /* Borda cinza sutil */
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
}

.card-title {
    color: var(--primary-navy);
    font-weight: 700;
}

/* Botões - Sólidos e Elegantes */
.btn {
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--primary-orange);
    /* Laranja sólido */
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
}

.btn-outline:hover {
    background-color: var(--primary-navy);
    color: var(--text-light);
}

.btn-outline-primary {
    background: transparent;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
}

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

.btn-outline-danger {
    background: transparent;
    border: 1.5px solid #ef4444;
    color: #ef4444;
    text-decoration: none;
}

.btn-outline-danger:hover {
    background: #ef4444;
    color: white;
}

/* Inputs - Visual de Aplicativo */
.form-control {
    border: 1px solid #eef1f4;
    background-color: #ffffff;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
    outline: none;
}

/* Hero Section - Menos "gritante" */
.hero {
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
}

/* Adicionando um detalhe sutil no Hero para não ficar totalmente liso */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 140, 66, 0.05);
    border-radius: 50%;
}

/* Tabelas */
.table th {
    background-color: #F1F5F9;
    /* Fundo cinza claro para o cabeçalho */
    color: var(--primary-navy);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-color);
}

/* :root {
    --primary-navy: #2B3A67;
    --primary-orange: #FF8C42;
    --primary-yellow: #FFC857;
    --gradient-start: #FF8C42;
    --gradient-mid: #8B3A67;
    --gradient-end: #2B3A67;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-ticket: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
    --accent-orange: #FF8C42;
    --accent-yellow: #FFC857;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */

main {
    flex: 1;
}

/* Header */
/* .header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    padding: 0;
    box-shadow: var(--shadow);
} */

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 75px;
}

.logo {
    height: auto;
    max-height: 120px;
    padding: 0;
    margin: -22.5px 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.15);
}

.nav-links {
    display: flex;
    list-style: none !important;
    gap: 2rem;
    margin: 0 !important;
    padding: 0 !important;
}

/* Mobile Nav Link Styles */
.mobile-nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 8px 16px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    width: 100%;
    text-align: left;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--primary-orange) !important;
}

.mobile-nav-link span {
    font-size: 20px !important;
    color: var(--primary-orange);
}

#mobile-nav-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--primary-navy);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* .nav-links a {
    color: var(--text-light) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
    display: inline-block !important;
}

.nav-links a:hover {
    color: var(--primary-yellow);
    transform: translateY(-2px);
} */

/* Container */
.container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Cards */
/* .card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

/* .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
} */

/* .card-title {
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-weight: 700;
} */

/* Botões */
/* .btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-navy) 100%);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 58, 103, 0.3);
} */

.btn-secondary {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

/* .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
} */

.btn-outline:hover {
    background-color: var(--primary-navy);
    color: var(--text-light);
}

/* Grid de eventos */
.events-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.events-grid>a {
    flex: 0 0 calc(25% - 0.9375rem);
    max-width: calc(25% - 0.9375rem);
}

.events-grid>.card {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Featured Carousel Custom Styles */
#featuredCarousel .carousel-item {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 5px 1.5rem 5px;
    /* Espaço reduzido para não cortar a sombra dos cards */
}

#featuredCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

#featuredCarousel .carousel-indicators .active {
    opacity: 1;
    width: 12px;
    height: 12px;
    background-color: var(--primary-orange) !important;
}

.carousel-controls-custom .carousel-control-prev,
.carousel-controls-custom .carousel-control-next {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    top: 40%;
    opacity: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    z-index: 10;
}

#featuredCarousel:hover .carousel-control-prev,
#featuredCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-controls-custom .carousel-control-prev {
    left: -22px;
}

.carousel-controls-custom .carousel-control-next {
    right: -22px;
}

.carousel-controls-custom .carousel-control-prev:hover,
.carousel-controls-custom .carousel-control-next:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.carousel-controls-custom .carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-controls-custom .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0) !important;
}

/* Retro Ticket Styles */
.event-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-ticket);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 360px;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.event-image-container {
    position: relative;
    height: 234px;
    width: 100%;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder Gradients */
.bg-placeholder-1 {
    background: linear-gradient(135deg, #FF8C42, #8B3A67) !important;
}

.bg-placeholder-2 {
    background: linear-gradient(135deg, #2B3A67, #8B3A67) !important;
}

.bg-placeholder-3 {
    background: linear-gradient(135deg, #FFC857, #FF8C42) !important;
}

.bg-placeholder-4 {
    background: linear-gradient(135deg, #4C1D95, #9e3b6e) !important;
}

.bg-placeholder-5 {
    background: linear-gradient(135deg, #000000, #FF8C42) !important;
}

.event-title-retro {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0.2rem 0;
    line-height: 1.2;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.retro-divider {
    height: 20px;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-white);
}

.retro-divider::before,
.retro-divider::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 20px;
    background: var(--bg-light);
}

.retro-divider::before {
    left: -8px;
    border-radius: 0 10px 10px 0;
}

.retro-divider::after {
    right: -8px;
    border-radius: 10px 0 0 10px;
}

.retro-dash {
    flex: 1;
    border-bottom: 2px dashed #e2e8f0;
    margin: 0 1rem;
}

.event-content-retro {
    padding: 0.5rem 0.75rem;
    padding-top: 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.admit-one-text {
    color: var(--primary-yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
}

.event-day-big {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.event-month-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
}



.event-location-retro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #475569;
    font-size: 0.65rem;
    padding: 0 0.5rem;
    margin-top: 0;
    padding-bottom: 0.25rem;
}

.event-location-retro .material-symbols-outlined {
    font-size: 16px !important;
    color: var(--primary-orange);
}

/* Formulários */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
    font-weight: 600;
}

/* .form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
} */

/* Badge de status */
.badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.badge-success {
    background-color: #28a745;
    color: white;
}

.badge-warning {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.badge-danger {
    background-color: #dc3545;
    color: white;
}

/* Footer */
.footer {
    background-color: var(--primary-navy);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hero Section */
/* .hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    color: var(--text-light);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 3rem;
} */

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Tabelas */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table th {
    background-color: var(--primary-navy);
    color: var(--text-light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.table tr:hover {
    background-color: #f8f9fa;
}

.step-error {
    background-color: #fff1f1;
    border: 2px solid #dc3545;
    color: #b02a37;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 8px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f1f3f5;
    border-radius: 999px;
    padding: 6px 14px;
    margin: 0 24px;
    width: 320px;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.search-form:focus-within {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .15);
}

.search-icon {
    font-size: 20px;
    color: #6c757d;
    margin-right: 8px;
}

.search-input {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    width: 100% !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 4px 0 !important;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Organizer CTA Card */
.organizer-cta-card {
    padding: 4rem 2rem;
}

.organizer-cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.organizer-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
        height: auto;
        min-height: 70px;
    }

    .logo {
        height: 85px;
        margin: -7.5px 0;
    }

    .nav-links {
        text-align: center;
    }

    .events-grid {
        gap: 0.75rem;
    }

    .events-grid>a {
        flex: 0 0 calc(50% - 0.375rem);
        max-width: calc(50% - 0.375rem);
    }

    .carousel-hero-container {
        height: 250px !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .search-form {
        display: none;
    }

    #mobileSearchInput::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    /* Configurações exclusivas para o grid de eventos (Todos os Eventos - 2 colunas) no mobile */
    .events-grid .event-card {
        height: 100%;
        min-height: 240px;
    }

    .events-grid .event-image-container {
        height: 160px;
    }

    .events-grid .event-content-retro {
        padding: 0.5rem;
        gap: 0.2rem;
    }

    .events-grid .event-title-retro {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .events-grid .event-day-big {
        font-size: 1.15rem;
    }

    .events-grid .event-month-year {
        font-size: 0.65rem;
    }

    .events-grid .event-location-retro {
        font-size: 0.6rem;
        padding-bottom: 0px;
    }

    .events-grid .retro-divider {
        height: 15px;
    }

    .events-grid .retro-divider::before,
    .events-grid .retro-divider::after {
        width: 12px;
        height: 15px;
    }

    /* Como Funciona - Carousel Mobile */
    .how-it-works-title {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }

    .how-it-works-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.25rem !important;
        padding: 0.5rem 0.5rem 1.5rem !important;
        margin: 0 -1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .how-it-works-grid::-webkit-scrollbar {
        display: none;
    }

    .how-it-works-card {
        flex: 0 0 280px !important;
        scroll-snap-align: center !important;
        padding: 1.5rem !important;
        min-height: auto !important;
    }

    .how-it-works-icon {
        font-size: 2.2rem !important;
        margin-bottom: 0.75rem !important;
    }

    .how-it-works-step-title {
        font-size: 1.15rem !important;
        margin-bottom: 0.5rem !important;
    }

    .how-it-works-text {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0 !important;
    }

    /* Organizer CTA - Mobile */
    .organizer-cta-section {
        margin-top: 2rem !important;
    }

    .organizer-cta-card {
        padding: 2.5rem 1.25rem !important;
        border-radius: 1.5rem !important;
    }

    .organizer-cta-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }

    .organizer-cta-text {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .organizer-cta-btn {
        width: 100%;
        padding: 0.8rem !important;
    }
}

/* Lotes Selecionados */
.lote-item {
    transition: all 0.2s ease;
    border: 2px solid #e5e7eb !important;
}

.lote-item:hover {
    background-color: #fffaf0;
}

.lote-item.selected {
    border-color: #e5e7eb !important;
    background-color: #fff4e6;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.1);
}

.lote-item.selected strong {
    color: #FF8C42;
}

/* ===== Comprador Dashboard ===== */
.buyer-dashboard {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

/* Header */
.buyer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.buyer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.buyer-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.buyer-avatar-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buyer-greeting {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
}

.buyer-btn-logout {
    padding: 0.5rem 1.25rem;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.buyer-btn-logout:hover {
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

/* Stat Cards */
.buyer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.buyer-stat-card {
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buyer-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.buyer-stat-card--outline {
    background: var(--bg-white);
    border: 2px solid var(--primary-orange);
}

.buyer-stat-card--filled {
    background: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.buyer-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.buyer-stat-icon--ticket {
    background: #fde8d8;
    color: var(--primary-orange);
}

.buyer-stat-icon--ticket .material-symbols-outlined {
    font-size: 26px;
    color: var(--primary-orange);
}

.buyer-stat-icon--events {
    background: var(--primary-orange);
    color: #fff;
}

.buyer-stat-icon--events .material-symbols-outlined {
    font-size: 26px;
    color: #fff;
}

.buyer-stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.buyer-stat-card--outline .buyer-stat-label {
    color: #475569;
}

.buyer-stat-card--filled .buyer-stat-label {
    color: rgba(255, 255, 255, 0.85);
}

.buyer-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.buyer-stat-card--outline .buyer-stat-value {
    color: var(--text-dark);
}

.buyer-stat-card--filled .buyer-stat-value {
    color: #fff;
}

/* Card de Perfil Estilizado */
.profile-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    overflow: hidden;
}

.profile-header {
    background: #f8fafc;
    padding: 20px 30px;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-header .icon {
    font-size: 32px;
    color: #2B3A67;
    background: rgba(43, 58, 103, 0.1);
    padding: 8px;
    border-radius: 10px;
}

.section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FF8C42;
    /* Laranja N1 */
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
    margin-left: 15px;
}

/* Inputs Refinados */
.custom-input {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.custom-input:focus {
    border-color: #2B3A67;
    box-shadow: 0 0 0 3px rgba(43, 58, 103, 0.1);
    outline: none;
}

.btn-n1-primary {
    background: linear-gradient(135deg, #2B3A67 0%, #1a2440 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-n1-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(43, 58, 103, 0.3);
    color: white;
}

/* Navigation Tabs */
.buyer-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.buyer-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.buyer-tab .material-symbols-outlined {
    font-size: 20px;
}

.buyer-tab--active {
    background: var(--bg-white);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.buyer-tab--active .material-symbols-outlined {
    color: var(--primary-orange);
}

.buyer-tab--inactive {
    background: var(--primary-navy);
    color: #fff;
    border: 2px solid var(--primary-navy);
}

.buyer-tab--inactive:hover {
    background: #1e2d52;
    border-color: #1e2d52;
}

.buyer-tab--inactive .material-symbols-outlined {
    color: #fff;
}

/* Section Title */
.buyer-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Empty State */
.buyer-empty-state {
    text-align: center;
    padding: 2rem 1rem 1rem;
}

.buyer-empty-illustration {
    max-width: 260px;
    margin: 0 auto 1.5rem;
}

.buyer-empty-illustration svg {
    width: 100%;
    height: auto;
}

.buyer-empty-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.buyer-empty-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Explore Button */
.buyer-btn-explore {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange), #e67a30);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(255, 140, 66, 0.35);
}

.buyer-btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.45);
    color: #fff;
}

/* Ingresso Card (when tickets exist) */
.buyer-ingresso-card {
    background: var(--bg-white);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buyer-ingresso-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.buyer-ingresso-info {
    flex: 1;
}

.buyer-ingresso-evento {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.buyer-ingresso-detalhe {
    font-size: 0.85rem;
    color: #64748b;
}

.buyer-ingresso-id {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-align: center;
}

.buyer-ingresso-icon {
    width: 56px;
    height: 56px;
    background: #fde8d8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.buyer-ingresso-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--primary-orange);
}

/* Success Toast */
.buyer-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: fadeIn 0.4s ease-out;
}

/* Responsive */
@media (max-width: 640px) {
    .buyer-dashboard {
        padding: 1.25rem 1rem 2rem;
    }

    .buyer-greeting {
        font-size: 1.25rem;
    }

    .buyer-stats {
        grid-template-columns: 1fr;
    }

    .buyer-tabs {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .buyer-btn-explore {
        max-width: 100%;
    }

    .section-title-mobile {
        font-size: 20px;
    }
}

.carousel-hero-container {
    height: 355px;
}