* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;
    --accent: #FF5B49;
    --accent-hover: #FF5B49;
    --accent-glow: #ac4d42;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --border-color: #2a2a2a;
    --gradient-1: linear-gradient(135deg, #FF5B49 0%, #FF5B49 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --header-bg: rgba(10, 10, 10, 0.95);
}

body.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --header-bg: rgba(255, 255, 255, 0.95);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.search-box {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 8px 16px;
}

.btn-ghost:hover {
    color: var(--text-primary);
}

main {
    padding-top: 72px;
}

/* Hero Banner Dinâmico - Estilo Sympla com Carrossel 3D Coverflow */
.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: var(--bg-primary);
    padding: 60px 0 40px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(60px) brightness(0.2);
    transform: scale(1.2);
    z-index: 0;
    transition: background-image 0.8s ease-in-out;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

/* Carrossel 3D Container */
.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 420px;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Flyers no Carrossel - Formato Landscape */
.hero-flyer {
    position: absolute;
    width: 700px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: var(--bg-card);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.hero-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Estados do Carrossel 3D - Efeito Coverflow */
.hero-flyer.center {
    z-index: 10;
    transform: translateX(0) translateZ(0) scale(1);
    opacity: 1;
    filter: brightness(1);
}

.hero-flyer.center:hover {
    transform: translateX(0) translateZ(0) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.hero-flyer.left-1 {
    z-index: 9;
    transform: translateX(-420px) translateZ(-100px) rotateY(25deg) scale(0.85);
    opacity: 0.8;
    filter: brightness(0.7);
}

.hero-flyer.left-2 {
    z-index: 8;
    transform: translateX(-720px) translateZ(-200px) rotateY(35deg) scale(0.7);
    opacity: 0.6;
    filter: brightness(0.5);
}

.hero-flyer.left-3 {
    z-index: 7;
    transform: translateX(-950px) translateZ(-300px) rotateY(40deg) scale(0.6);
    opacity: 0.4;
    filter: brightness(0.4);
}

.hero-flyer.right-1 {
    z-index: 9;
    transform: translateX(420px) translateZ(-100px) rotateY(-25deg) scale(0.85);
    opacity: 0.8;
    filter: brightness(0.7);
}

.hero-flyer.right-2 {
    z-index: 8;
    transform: translateX(720px) translateZ(-200px) rotateY(-35deg) scale(0.7);
    opacity: 0.6;
    filter: brightness(0.5);
}

.hero-flyer.right-3 {
    z-index: 7;
    transform: translateX(950px) translateZ(-300px) rotateY(-40deg) scale(0.6);
    opacity: 0.4;
    filter: brightness(0.4);
}

.hero-flyer.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) translateZ(-500px) scale(0.3);
}

/* Detalhes do Evento - Abaixo do Carrossel */
.hero-details {
    color: #fff;
    text-align: center;
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-meta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--accent);
    stroke-width: 2.5;
}

.hero-details .btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 91, 73, 0.5);
}

.hero-details .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 91, 73, 0.6);
}

/* Botões de Navegação */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.hero-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-btn.prev {
    left: 20px;
}

.hero-nav-btn.next {
    right: 20px;
}

/* Indicadores */
.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-indicator {
    width: 35px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-indicator.active {
    background: var(--accent);
    width: 55px;
}

/* Responsividade */
@media (max-width: 1400px) {
    .hero-flyer {
        width: 600px;
        height: 340px;
    }

    .hero-flyer.left-1,
    .hero-flyer.right-1 {
        transform: translateX(calc(var(--dir, 1) * 360px)) translateZ(-100px) rotateY(calc(var(--dir, 1) * 25deg)) scale(0.85);
    }

    .hero-flyer.left-2,
    .hero-flyer.right-2 {
        transform: translateX(calc(var(--dir, 1) * 620px)) translateZ(-200px) rotateY(calc(var(--dir, 1) * 35deg)) scale(0.7);
    }

    .hero-flyer.left-3,
    .hero-flyer.right-3 {
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .hero-carousel-container {
        height: 360px;
    }

    .hero-flyer {
        width: 550px;
        height: 310px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 550px;
        padding: 40px 0 30px;
    }

    .hero-carousel-container {
        height: 320px;
        perspective: 1000px;
    }

    .hero-flyer {
        width: 500px;
        height: 280px;
    }

    .hero-flyer.left-2,
    .hero-flyer.right-2,
    .hero-flyer.left-3,
    .hero-flyer.right-3 {
        opacity: 0;
        pointer-events: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-carousel-container {
        height: 280px;
    }

    .hero-flyer {
        width: 450px;
        height: 250px;
    }

    .hero-flyer.left-1,
    .hero-flyer.right-1 {
        opacity: 0.5;
        transform: translateX(calc(var(--dir, 1) * 300px)) translateZ(-80px) rotateY(calc(var(--dir, 1) * 20deg)) scale(0.75);
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .hero-carousel-container {
        height: 240px;
    }

    .hero-flyer {
        width: 380px;
        height: 210px;
    }

    .hero-flyer.left-1,
    .hero-flyer.right-1 {
        opacity: 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .hero-details .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

.section {
    padding: 64px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
}

.section-link {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

.section-link:hover {
    text-decoration: underline;
}

.categories {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.categories::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    min-width: 120px;
}

.category-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.category-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.category-icon-text {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
}

.category-item:hover .category-name {
    color: var(--text-primary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.event-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 18px;
    transition: var(--transition);
}

.event-favorite:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.event-favorite.active {
    background: #ff4757;
    color: white;
}

.event-info {
    padding: 16px;
}

.event-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.event-date,
.event-location {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
}

.artists-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.artists-carousel::-webkit-scrollbar {
    display: none;
}

.artist-card {
    min-width: 200px;
    text-align: center;
    cursor: pointer;
}

.artist-image {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: var(--transition);
}

.artist-card:hover .artist-image {
    border-color: var(--accent);
    transform: scale(1.05);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-favorite {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
}

.artist-favorite:hover,
.artist-favorite.active {
    background: #ff4757;
}

.artist-name {
    font-size: 16px;
    font-weight: 600;
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
    margin-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-link:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--accent);
}

.checkout-page {
    min-height: calc(100vh - 72px);
    padding: 40px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
}

.checkout-form {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-section {
    margin-bottom: 32px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input {
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover,
.payment-option.active {
    border-color: var(--accent);
}

.payment-option.active {
    background: rgba(0, 212, 170, 0.1);
}

.payment-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-option.active .payment-radio {
    border-color: var(--accent);
}

.payment-option.active .payment-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.payment-icon {
    font-size: 24px;
}

.payment-label {
    font-size: 14px;
    font-weight: 500;
}

.payment-icon-text {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 6px;
}

.details-icon-text {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 6px;
    flex-shrink: 0;
}

.checkout-summary {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: fit-content;
    position: sticky;
    top: 112px;
}

.summary-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    gap: 16px;
}

.summary-item-image {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-info {
    flex: 1;
}

.summary-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.summary-item-date {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 2px;
}

.summary-item-qty {
    font-size: 12px;
    color: var(--text-secondary);
}

.summary-item-price {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.coupon-form {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.coupon-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
}

.coupon-form button {
    padding: 12px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.coupon-form button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.summary-row span:first-child {
    color: var(--text-secondary);
}

.summary-row.total span:first-child {
    color: var(--text-primary);
}

.summary-row.total span:last-child {
    color: var(--accent);
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--accent);
}

.event-page {
    min-height: calc(100vh - 72px);
}

.event-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.event-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 60%);
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    padding: 40px 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.event-main {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.event-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.event-breadcrumb a:hover {
    color: var(--accent);
}

.event-page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.event-page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.event-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.event-tab {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}

.event-tab:hover {
    color: var(--text-primary);
}

.event-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.event-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.event-description p {
    margin-bottom: 16px;
}

.speakers-section {
    margin-top: 40px;
}

.speakers-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.speaker-card {
    text-align: center;
}

.speaker-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 2px solid var(--border-color);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.speaker-role {
    font-size: 12px;
    color: var(--text-secondary);
}

.event-sidebar {
    height: fit-content;
    position: sticky;
    top: 112px;
}

.ticket-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.ticket-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.ticket-price-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.quantity-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.quantity-value {
    font-size: 16px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.btn-buy {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-bottom: 16px;
}

.details-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.details-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details-item {
    display: flex;
    gap: 12px;
}

.details-icon {
    width: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.details-content {
    flex: 1;
}

.details-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.details-value {
    font-size: 14px;
    color: var(--text-primary);
}

.share-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.share-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
}

.share-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--text-primary);
    font-size: 24px;
}

@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .checkout-grid,
    .event-content {
        grid-template-columns: 1fr 360px;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-grid,
    .event-content {
        grid-template-columns: 1fr;
    }

    .checkout-summary,
    .event-sidebar {
        position: static;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav,
    .search-box,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        /* Empurra o botao para a direita */
    }

    .header-content {
        height: 64px;
    }


    main {
        padding-top: 64px;
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .event-hero {
        height: 300px;
    }

    .event-page-title {
        font-size: 24px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 8px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu-link svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.mobile-menu-link:hover {
    background: var(--bg-tertiary);
    color: var(--accent);
}

.mobile-menu-actions {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
}

/* Light Theme Specific Overrides */
body.light-theme .header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: var(--border-color);
}

body.light-theme .form-input,
body.light-theme .search-input {
    background-color: #ffffff;
    border-color: #cbd5e1;
}

body.light-theme .form-input:focus,
body.light-theme .search-input:focus {
    border-color: var(--accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 91, 73, 0.15);
}

body.light-theme .category-item {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    border-color: var(--border-color);
}

body.light-theme .event-card {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

body.light-theme .event-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

body.light-theme .btn-secondary {
    background-color: #ffffff;
}

body.light-theme .footer {
    background-color: #f8fafc;
    border-top-color: #e2e8f0;
}

/* Auth Pages Styles */
.auth-page {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
}

.auth-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-tabs {
    display: flex;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.auth-tab.active {
    background: var(--accent);
    color: var(--bg-primary);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    font-size: 12px;
    color: var(--text-muted);
}

.social-login {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--accent);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--accent);
}

.forgot-link {
    text-align: right;
    margin-top: -12px;
}

.forgot-link a {
    font-size: 13px;
    color: var(--accent);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: var(--bg-primary);
}

.success-message h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Profile & Tickets Global Styles */
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255, 91, 73, 0.1);
    color: var(--accent);
}

.auth-form-card,
.profile-edit-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.ticket-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-confirmed {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.status-pending {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.status-cancelled {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}