/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.logo a {
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255,255,255,0.2);
}

.nav-links .admin-link {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    transition: transform 0.5s ease;
    will-change: transform;
}

.hero:hover .banner-image {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 3rem;
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.2);
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Botão CTA no banner (se quiser adicionar) */
.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
}

/* Alerts */
.alert {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    border: 1px solid;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #007bff;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-success {
    background-color: #28a745;
}

.btn-danger {
    background-color: #dc3545;
}

.btn-disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

/* Forms */
.auth-box {
    max-width: 400px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    color: #333;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #666;
}

.login-type-switch {
    display: flex;
    margin-bottom: 2rem;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.login-type-switch a {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    text-decoration: none;
    color: #007bff;
    background-color: #f8f9fa;
    transition: all 0.3s;
}

.login-type-switch a.active {
    background-color: #007bff;
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.auth-footer p {
    margin-bottom: 0.5rem;
    color: #666;
}

.auth-footer a {
    color: #007bff;
    text-decoration: none;
}

.admin-info {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
}

/* Eventos */
.eventos-section {
    padding: 3rem 0;
}

.eventos-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.evento-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.evento-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.evento-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.evento-card:hover img {
    transform: scale(1.05);
}

.evento-card .evento-image {
    overflow: hidden;
    position: relative;
}

.evento-info {
    padding: 1.5rem;
}

.evento-info h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.25rem;
}

.evento-descricao {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.evento-detalhes p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.evento-detalhes strong {
    color: #333;
}

/* Dashboard */
.dashboard {
    padding: 2rem 0;
}

.dashboard h2 {
    margin-bottom: 2rem;
    color: #333;
}

.dashboard-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.info-card p {
    margin-bottom: 0.5rem;
}

/* Ingressos */
.ingressos-section h3 {
    margin-bottom: 2rem;
    color: #333;
}

.no-tickets {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.ingressos-list {
    display: grid;
    gap: 1.5rem;
}

.ingresso-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #007bff;
}

.ingresso-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ingresso-header h4 {
    color: #333;
    margin: 0;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-confirmado {
    background-color: #d4edda;
    color: #155724;
}

.status-pendente {
    background-color: #fff3cd;
    color: #856404;
}

.status-cancelado {
    background-color: #f8d7da;
    color: #721c24;
}

.ingresso-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.ingresso-details code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

.ingresso-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* Compra */
.compra-section {
    padding: 2rem 0;
}

.evento-compra {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.evento-info-compra h3 {
    color: #333;
    margin-bottom: 1rem;
}

.compra-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.compra-form h4 {
    margin-bottom: 1.5rem;
    color: #333;
}

.valor-total {
    background-color: #e9ecef;
    padding: 1rem;
    border-radius: 5px;
    margin: 1.5rem 0;
    text-align: center;
}

.valor-total h4 {
    margin: 0;
    color: #007bff;
}

.success-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mapa do Evento */
.mapa-evento-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mapa-evento-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

.mapa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mapa-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mapa-image:hover {
    transform: translateY(-5px);
}

.espaco-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: inherit;
}

.mapa-image:hover .espaco-image {
    transform: scale(1.05);
}

.mapa-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #007bff;
    border-radius: inherit;
}

.placeholder-content {
    text-align: center;
    color: #666;
    padding: 2rem;
}

.placeholder-content h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.placeholder-content p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.placeholder-content small {
    opacity: 0.7;
    font-style: italic;
}

.evento-info-detalhada {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.evento-info-detalhada .info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento-info-detalhada .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.evento-info-detalhada .info-card h3 {
    color: #007bff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.5rem;
}

.evento-info-detalhada .info-card p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.atracoes {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 10px;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    border: 1px solid #0056b3;
}

.atracoes .headline {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #ffffff !important;
    letter-spacing: 1px;
}

.atracoes .convidados {
    font-size: 1.2rem;
    font-weight: 300;
    color: #ffffff !important;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.setor {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
}

.setor h4 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.setor ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.setor ul li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.setor ul li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.classificacao {
    background: #007bff;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border: 2px solid #0056b3;
}

.tipo-ingresso {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 3px solid #007bff;
}

.tipo-ingresso h4 {
    color: #007bff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.avisos {
    border-left-color: #dc3545 !important;
}

.avisos h3 {
    color: #dc3545 !important;
}

.avisos-lista {
    list-style: none;
    padding: 0;
}

.avisos-lista li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
    padding-left: 2rem;
}

.avisos-lista li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0.8rem;
}

.avisos-lista li:last-child {
    border-bottom: none;
}

/* Seção de Ingressos VIP */
.vip-tickets-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.vip-tickets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vip-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vip-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    font-style: italic;
}

.vip-tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.vip-ticket-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.vip-ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.vip-ticket-card.platinum::before {
    background: linear-gradient(90deg, #e8e8e8, #ffffff, #e8e8e8);
}

.vip-ticket-card.gold::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.vip-ticket-card.silver::before {
    background: linear-gradient(90deg, #c0c0c0, #e8e8e8, #c0c0c0);
}

.vip-ticket-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-color: #ffd700;
}

.vip-card-header {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.vip-card-header h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    margin: 0;
    letter-spacing: 2px;
}

.vip-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #ffd700;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.vip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vip-ticket-card:hover .vip-card-image img {
    transform: scale(1.1);
}

.vip-card-content {
    padding: 2rem;
}

.vip-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.vip-quantity {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quantity-info {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #333, #555);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid #666;
}

.vip-benefits {
    margin-bottom: 2rem;
}

.vip-benefits h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.vip-benefits ul {
    list-style: none;
    padding: 0;
}

.vip-benefits li {
    padding: 0.4rem 0;
    color: #ddd;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-benefits li:last-child {
    border-bottom: none;
}

.vip-actions {
    text-align: center;
}

.btn-vip-platinum {
    background: linear-gradient(135deg, #e8e8e8, #ffffff);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(232, 232, 232, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-vip-gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-vip-silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-login-required {
    background: transparent;
    color: #ffd700;
    padding: 1rem 2rem;
    border: 2px solid #ffd700;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-vip-platinum:hover, .btn-vip-gold:hover, .btn-vip-silver:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-login-required:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
}

.vip-section-footer {
    text-align: center;
    margin-top: 3rem;
}

.vip-info-box {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-align: left;
}

.vip-info-box h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.vip-info-box p {
    margin: 0.5rem 0;
    color: #ddd;
    font-size: 0.95rem;
}

/* Responsividade para Ingressos VIP */
@media (max-width: 1024px) {
    .vip-tickets-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .vip-tickets-section {
        padding: 2rem 0;
    }
    
    .vip-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .vip-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .vip-tickets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vip-card-content {
        padding: 1.5rem;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .vip-info-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .vip-section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .vip-card-header h3 {
        font-size: 1.5rem;
    }
    
    .vip-card-content {
        padding: 1rem;
    }
    
    .btn-vip-platinum, .btn-vip-gold, .btn-vip-silver, .btn-login-required {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Área Exclusiva Lounge VIP */
.event-lounge {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    margin-top: 2rem;
}

.event-lounge .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.lounge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.lounge-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.lounge-image img:hover {
    transform: scale(1.02);
}

.lounge-info h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.lounge-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    color: #e0e0e0;
}

.lounge-benefits {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.lounge-benefits h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.lounge-benefits ul {
    list-style: none;
    padding: 0;
}

.lounge-benefits li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #f0f0f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lounge-benefits li:last-child {
    border-bottom: none;
}

.lounge-pricing {
    margin-bottom: 2rem;
}

.lounge-pricing h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.price-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-tier {
    background: linear-gradient(135deg, #2c2c2c, #404040);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.price-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.price-tier.premium::before {
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.price-tier.gold::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.price-tier.silver::before {
    background: linear-gradient(90deg, #c0c0c0, #e8e8e8);
}

.price-tier h5 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.price-tier .price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.price-tier p {
    color: #ccc;
    font-size: 0.9rem;
}

.lounge-reservation {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.reservation-note {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lounge-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-vip {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-vip:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.btn-contact {
    background: transparent;
    color: #ffd700;
    padding: 1rem 2rem;
    border: 2px solid #ffd700;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-contact:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Responsividade para Lounge VIP */
@media (max-width: 768px) {
    .event-lounge .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .lounge-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lounge-image {
        order: -1;
    }
    
    .price-tiers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .lounge-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-vip, .btn-contact {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .lounge-benefits, .lounge-reservation {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .event-lounge {
        padding: 2rem 0;
    }
    
    .event-lounge .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .lounge-info h3 {
        font-size: 1.5rem;
    }
    
    .price-tier .price {
        font-size: 1.5rem;
    }
    
    .btn-vip, .btn-contact {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Informações Importantes */
.important-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 2rem;
}

.important-info .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-section {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-align: center;
}

.info-header h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
}

.transfer-info .info-header {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.prohibited-items .info-header {
    background: linear-gradient(135deg, #dc3545, #bd2130);
}

.info-content {
    padding: 2rem;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

.important-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.check-icon {
    font-size: 1.2rem;
    color: #28a745;
    font-weight: bold;
    flex-shrink: 0;
}

.point p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.prohibited-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.prohibited-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: #fff5f5;
    border-radius: 8px;
    border-left: 3px solid #dc3545;
    transition: background-color 0.3s ease;
}

.prohibited-item:hover {
    background: #ffe6e6;
}

.prohibited-icon {
    font-size: 1rem;
    color: #dc3545;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.prohibited-item p {
    margin: 0;
    color: #333;
    line-height: 1.4;
    font-size: 0.95rem;
}

.additional-info {
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #007bff;
    text-align: center;
}

.additional-info p {
    margin: 0;
    color: #0056b3;
    font-weight: 500;
}

/* Responsividade para Informações Importantes */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .important-info .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .important-info {
        padding: 2rem 0;
    }
    
    .important-info .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .info-content {
        padding: 1.5rem;
    }
    
    .info-header {
        padding: 1rem 1.5rem;
    }
    
    .info-header h3 {
        font-size: 1.1rem;
    }
    
    .point {
        padding: 0.8rem;
    }
    
    .prohibited-item {
        padding: 0.6rem;
    }
    
    .additional-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .point {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        text-align: center;
    }
    
    .prohibited-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        text-align: center;
    }
    
    .check-icon, .prohibited-icon {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .hero-banner {
        height: 400px;
    }
    
    .banner-image {
        height: 400px;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
    }

    .mapa-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mapa-image {
        order: -1; /* Coloca a imagem primeiro no mobile */
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .espaco-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .mapa-image:hover {
        transform: none; /* Remove hover no mobile */
    }

    .mapa-image:hover .espaco-image {
        transform: none; /* Remove zoom hover no mobile */
    }

    .dashboard-info {
        grid-template-columns: 1fr;
    }

    .ingresso-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .auth-box {
        margin: 1rem;
        padding: 1.5rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .evento-info {
        padding: 1rem;
    }

    .mapa-evento-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .mapa-evento-section {
        padding: 2rem 0;
    }

    .mapa-image {
        border-radius: 10px;
        margin-bottom: 2rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .espaco-image {
        border-radius: 10px;
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        object-position: center;
    }

    .mapa-placeholder {
        min-height: 250px;
        border-radius: 10px;
    }

    .placeholder-content {
        padding: 1.5rem;
    }

    .placeholder-content h3 {
        font-size: 1.3rem;
    }

    .evento-info-detalhada .info-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }

    .atracoes .headline {
        font-size: 1.5rem;
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    }

    .atracoes .convidados {
        font-size: 1rem;
        color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    }
}