/*
 * style.css
 * Versão: 2025-07-02 21:40:41 (UTC)
 * Versão: 2025-07-02 18:40:41 (UTC-3)
 * Este arquivo contém todas as regras CSS organizadas e consolidadas,
 * incluindo as correções para formatação de preço com !important
 * E uniformização dos espaçamentos entre as informações,
 * além da consolidação dos estilos de consulta de reserva e QR Code,
 * e a adição da nova seção horizontal.
 */

/* ------------------------------------------- */
/* 0. VARIÁVEIS CSS GLOBAIS E RESET BÁSICO     */
/* ------------------------------------------- */
:root {
    --price-highlight-color: #FFD700; /* Cor dourada/amarelada para destaque de preço */
    --primary-button-color: #007bff; /* Azul padrão para botões principais */
    --success-color: #4CAF50; /* Verde para sucesso/confirmado/pago */
    --warning-color: #FFC107; /* Âmbar/Laranja para pendente/reservado */
    --danger-color: #F44336; /* Vermelho para cancelado/vendido */
    --neutral-color: #6c757d; /* Cinza para desabilitado/indefinido */
}

/* Garante que padding e border são incluídos na largura/altura */
html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Fundo totalmente preto */
    color: #f0f0f0; /* Texto quase branco */
    line-height: 1.6;
    scroll-behavior: smooth; /* Rolagem suave para links âncora */
    /* background-image: url('caminho/para/sua/imagem-de-bolinhas.png'); */
    /* background-repeat: repeat; */
}

/* Estilo para impedir rolagem quando o lightbox ou modal está ativo */
body.no-scroll {
    overflow: hidden;
}

/* Links em geral */
a {
    text-decoration: none; /* Remove o sublinhado de todos os links */
    color: inherit; /* Herda a cor do texto pai por padrão */
}
a:hover {
    color: var(--price-highlight-color); /* Exemplo de hover para links */
}

/* ------------------------------------------- */
/* 1. LAYOUT GLOBAL                            */
/* ------------------------------------------- */
main {
    max-width: 1200px; /* Largura máxima do conteúdo */
    margin: 20px auto;
    padding: 0 20px; /* Adiciona padding interno */
    background-color: #1a1a1a; /* Fundo mais escuro para o conteúdo principal */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8); /* Sombra mais escura */
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    background-color: #1a1a1a; /* Preto similar ao do main */
    color: #e0e0e0;
    border-top: 2px solid #555555; /* Borda cinza suave */
}

.top-banner-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px; /* Espaçamento após o banner */
}
.top-banner-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* ------------------------------------------- */
/* 2. LAYOUT PRINCIPAL (FLEXBOX)               */
/* ------------------------------------------- */
.layout-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.layout-container .image-wrapper {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 500px;
    cursor: zoom-in;
}

#baladaLayout {
    max-width: 100%;
    height: auto;
    border: 3px solid #ffffff;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    display: block;
    margin: 0 auto;
}

.info-block {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ------------------------------------------- */
/* 3. ELEMENTOS COMUNS                         */
/* ------------------------------------------- */
h1, h2, h3 {
    color: #ffffff;
}

.info-block h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.6em;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    text-align: center;
}

.info-block .item {
    margin-bottom: 15px;
}

.info-block .item h4 {
    color: #4a74e9;
    margin-bottom: 5px;
    font-size: 1.1em;
}

h5 {
    color: #FFFFFF;
    margin-bottom: 1px;
    font-size: 1.4em;
    border-bottom: 1px solid #555;
}

/* Estilos para uniformizar espaçamento dos textos dos itens */
.info-block .item p,
.info-block .item ul,
.info-block .item ul li {
    font-size: 0.95em;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}
.info-block .item ul {
    list-style: none;
}

/* Estilos uniformes para preços */
.info-block .item p .price-value,
.info-block .item ul li {
    font-size: 1.3em !important;
    color: var(--price-highlight-color) !important;
    font-weight: bold !important;
}

.disclaimer {
    font-size: 0.9em;
    color: #888;
    text-align: center;
    margin-top: 30px;
}

.map-reference {
    opacity: 0.8;
    background-color: #2c2c2c;
    border: 1px dashed #555;
}

/* ------------------------------------------- */
/* 4. FORMULÁRIOS E BOTÕES                     */
/* ------------------------------------------- */
.selection-box {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.selection-box h2 {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-size: 2em;
    border-bottom: 2px solid #555;
    padding-bottom: 15px;
}

.reservation-options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.reservation-section {
    background-color: #3a3a3a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reservation-section h3 {
    color: #f0f0f0;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.reservation-section p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
    color: #e0e0e0;
    font-weight: bold;
}

select,
input[type="number"],
input[type="text"] { /* Incluído para estilos de input genéricos */
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #444;
    color: #f0f0f0;
    font-size: 1em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
/* Seta customizada para select */
select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20fill%3D%22%23cccccc%22%20d%3D%22M208.5%2089.5L128%20170l-80.5-80.5L32%2096l96%2096l96-96z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

select:focus,
input[type="number"]:focus,
input[type="text"]:focus { /* Incluído para estilos de input genéricos */
    outline: none;
    border-color: var(--primary-button-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

select option {
    background-color: #444;
    color: #f0f0f0;
}

.selected-package-info,
.total-individual-price {
    margin-top: 10px;
    font-weight: bold;
    color: var(--primary-button-color);
}

/* Estilo geral para todos os botões (base) */
button,
.action-button,
.back-button {
    background-color: var(--primary-button-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: auto;
    text-decoration: none;
    display: block;
    text-align: center;
}

button:hover,
.action-button:hover,
.back-button:hover {
    background-color: #0056b3;
}

/* Estilo específico para o botão comprar/reservar dentro das seções de formulário */
.comprarBtn {
    padding: 15px 25px;
    font-size: 1.1em;
}

/* Estilos para Radio buttons */
.esgotado {
    color: #999;
    text-decoration: line-through;
    font-style: italic;
    cursor: not-allowed;
}
input[type="radio"]:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
.radio-lotes-table {
    margin-top: 0;
    border-collapse: collapse;
    width: auto;
}
.radio-lotes-table,
.radio-lotes-table tr,
.radio-lotes-table td {
    border: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
}
.radio-lotes-table td {
    vertical-align: middle;
    padding-bottom: 5px;
    padding-right: 10px;
}
.radio-lotes-table input[type="radio"] {
    vertical-align: middle;
    margin-right: 5px;
    margin-top: 0;
    width: 20px; /* Definido explicitamente para o radio */
    height: 20px; /* Definido explicitamente para o radio */
    min-width: 20px;
    min-height: 20px;
}
.radio-lotes-table label {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
}

/* ------------------------------------------- */
/* 5. LIGHTBOX (ZOOM DE IMAGEM)                */
/* ------------------------------------------- */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

#lightbox.active {
    opacity: 1;
    visibility: visible;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

#lightbox.active img {
    transform: scale(1);
}

/* ------------------------------------------- */
/* 6. CARROSSEL DE EVENTOS                     */
/* ------------------------------------------- */
.event-carousel-section {
    width: 100%;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width:100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 70%;
    text-align: center;
}

.slide-overlay h2 {
    margin-top: 0;
    font-size: 2.5em;
    color: var(--price-highlight-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-overlay p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Botões do Carrossel (Setas) */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: rgba(255, 255, 255, 0);
    border: 1px solid transparent;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 2em;
    z-index: 20;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 10px;
}

/* Pontinhos do Carrossel (Navegação) */
.carousel-dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--price-highlight-color);
    transform: scale(1.2);
}

/* ------------------------------------------- */
/* 7. MODAL DE CAMAROTES                       */
/* ------------------------------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #2c2c2c;
    margin: auto;
    padding: 30px;
    border: 1px solid #444;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    color: #e0e0e0;
    transform: translateY(-50px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-content h2 {
    color: var(--price-highlight-color);
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 2em;
    border-bottom: 1px solid #555;
    padding-bottom: 15px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #f0f0f0;
    text-decoration: none;
}

/* --- LENDAS DE STATUS (Bolinhas) --- */
.status-legend {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #ccc;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.status-legend span {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
}

.status-legend span::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Cores da legenda */
.status-legend span:nth-child(1)::before { background-color: var(--success-color); } /* Disponível */
.status-legend span:nth-child(2)::before { background-color: var(--warning-color); } /* Reservado */
.status-legend span:nth-child(3)::before { background-color: var(--danger-color); } /* Vendido */

/* --- SEÇÕES DE CAMAROTES (CATEGORY) --- */
.camarote-category {
    background-color: #3a3a3a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.camarote-category h3 {
    color: var(--primary-button-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.6em;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    text-align: left;
}

.camarote-category .details {
    font-size: 0.9em;
    color: #ccc;
    margin-bottom: 15px;
}

.camarote-category .category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

/* --- ESTILO PARA CADA CAMAROTE INDIVIDUAL --- */
.camarote-item {
    background-color: #2c2c2c;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 calc(33.33% - 14px);
    min-width: 220px;
}

/* Linha do cabeçalho (Nome do Camarote e Status) */
.camarote-header-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.camarote-item .name {
    font-weight: bold;
    color: #f0f0f0;
    white-space: nowrap;
    margin-right: 10px;
    font-size: 1.1em;
}

/* --- STATUS INDIVIDUAL DO CAMAROTE (Bolinha) --- */
.camarote-item .status {
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.9em;
    min-width: 100px;
    justify-content: center;
    white-space: nowrap;
}

.camarote-item .status::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Cores dos status individuais */
.status.disponivel {
    color: var(--success-color);
    background-color: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.4);
}
.status.disponivel::before { background-color: var(--success-color); }

.status.reservado {
    color: var(--warning-color);
    background-color: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
}
.status.reservado::before { background-color: var(--warning-color); }

.status.vendido {
    color: var(--danger-color);
    background-color: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
}
.status.vendido::before { background-color: var(--danger-color); }

.status.indefinido {
    color: var(--neutral-color);
    background-color: rgba(108, 117, 125, 0.15);
    border: 1px solid rgba(108, 117, 125, 0.4);
}
.status.indefinido::before { background-color: var(--neutral-color); }

/* Linha da ação (Botão) */
.camarote-action-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 5px;
}

/* Botão de ação dentro do modal para cada camarote */
.camarote-item .buy-button {
    background-color: var(--success-color);
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 0.95em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
}

.camarote-item .buy-button:hover {
    background-color: #218838;
}

.camarote-item .buy-button[disabled] {
    background-color: var(--neutral-color);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Estilo para o ícone do WhatsApp */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

/* ------------------------------------------- */
/* 8. CONSULTA DE RESERVAS E QR CODE           */
/* ------------------------------------------- */
.reservation-lookup-section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    text-align: center;
    color: #f0f0f0;
}

.reservation-lookup-section h2 {
    color: #e0b020;
    margin-bottom: 25px;
    font-size: 2em;
    text-shadow: 1px 1px 2px #000;
}

.reservation-lookup-container .input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.reservation-lookup-container label {
    font-size: 1.1em;
    padding-top: 5px;
}

.reservation-lookup-container input[type="text"] {
    flex-grow: 1;
    max-width: 300px;
    padding: 12px 15px;
    border: 1px solid #e0b020;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
    /* Remover setas de input number se não forem desejadas */
    -moz-appearance: textfield; /* Firefox */
}
.reservation-lookup-container input[type="text"]::-webkit-outer-spin-button,
.reservation-lookup-container input[type="text"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.reservation-lookup-container input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.reservation-lookup-container input[type="text"]:focus {
    border-color: var(--price-highlight-color);
    background-color: rgba(255, 255, 255, 0.2);
}

/* O action-button já é global, mas pode ser sobreescrito aqui se necessário */
.reservation-lookup-container .action-button {
    background-color: #e0b020;
    color: #1a1a1a;
    font-weight: bold;
}
.reservation-lookup-container .action-button:hover {
    background-color: var(--price-highlight-color);
    transform: translateY(-2px);
}

.results-area {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    min-height: 100px;
    text-align: left;
    overflow-x: auto;
}

.results-area p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.results-area .loading-message,
.results-area .info-message {
    color: #e0b020;
    font-style: italic;
    text-align: center;
}

.results-area .error-message {
    color: var(--danger-color);
    font-weight: bold;
    text-align: center;
}

.reservation-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #f0f0f0;
}

.reservation-card p {
    margin: 5px 0;
}

.reservation-card p strong {
    color: #e0b020;
}

/* --- Status colors for reservation details (unified) --- */
.reservation-card .status {
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-block;
}

.reservation-card .status.pago,
.reservation-card .status.confirmada, /* Class used by QR Lookup */
.reservation-card .status.disponivel { /* Not used here, but kept for consistency */
    background-color: var(--success-color);
    color: white;
}

.reservation-card .status.pendente,
.reservation-card .status.reservado {
    background-color: var(--warning-color);
    color: #333;
}

.reservation-card .status.cancelado,
.reservation-card .status.vendido,
.reservation-card .status.expirado {
    background-color: var(--danger-color);
    color: white;
}

/* --- QR Code styles for reservation card --- */
.qr-code-container {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code-container canvas {
    border: 3px solid #fff;
    border-radius: 5px;
    background-color: #fff; /* Fundo branco para o QR code */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    display: block; /* Garante que o canvas seja um bloco para centralização */
    /* Tamanho e visibilidade são gerenciados pela biblioteca qrcode.js */
}


/* ------------------------------------------- */
/* 9. NOVA SEÇÃO HORIZONTAL                    */
/* ------------------------------------------- */
.horizontal-section {
    padding: 40px 20px; /* Espaçamento interno */
    background-color: rgba(0, 0, 0, 0.7); /* Fundo semi-transparente escuro */
    color: #fff; /* Cor do texto */
    text-align: center;
    margin-top: 40px; /* Espaçamento acima da seção */
    width: 100%; /* Garante que ocupe a largura total do main */
    box-sizing: border-box; /* Inclui padding na largura */
}

.horizontal-container {
    max-width: 1200px; /* Largura máxima para centralizar o conteúdo */
    margin: 0 auto; /* Centraliza o container */
}

.horizontal-section h2 {
    color: #e0b020;
    margin-bottom: 25px;
    font-size: 2em;
    text-shadow: 1px 1px 2px #000;
}

.horizontal-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.horizontal-section ul {
    list-style: none; /* Remove marcadores de lista */
    padding: 0;
    margin-bottom: 30px;
    display: flex; /* Para centralizar os itens da lista */
    justify-content: center;
    flex-wrap: wrap; /* Permite quebrar linha em telas menores */
}

.horizontal-section ul li {
    font-size: 1.1em;
    margin: 5px 15px;
    position: relative;
    padding-left: 20px; /* Espaço para o ícone customizado */
}

.horizontal-section ul li::before {
    content: '⭐'; /* Ícone de estrela como marcador */
    position: absolute;
    left: 0;
    color: #ffd700;
}

.horizontal-content {
    display: flex; /* Usa flexbox para organizar os itens horizontalmente */
    justify-content: space-around; /* Distribui os itens igualmente */
    flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha em telas menores */
    gap: 20px; /* Espaço entre os itens */
}

.horizontal-item {
    background-color: rgba(255, 255, 255, 0.1); /* Fundo claro semi-transparente para os itens */
    border-radius: 8px;
    padding: 25px;
    flex: 1; /* Permite que os itens cresçam e ocupem o espaço disponível */
    min-width: 280px; /* Largura mínima para cada item antes de quebrar */
    max-width: 350px; /* Largura máxima para cada item */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.horizontal-item:hover {
    transform: translateY(-5px); /* Efeito de elevação ao passar o mouse */
}

.horizontal-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ff9900; /* Cor de destaque para títulos de item */
}

.horizontal-item p {
    font-size: 1em;
    color: #eee;
}

/* ------------------------------------------- */
/* 10. RESPONSIVIDADE (MEDIA QUERIES)          */
/* ------------------------------------------- */
@media (max-width: 992px) { /* Breakpoint para telas médias (tablets) */
    .layout-container {
        flex-direction: column;
        align-items: center;
    }
    .layout-container .image-wrapper {
        width: 90%;
        flex-basis: auto;
        order: 2;
    }
    .info-block {
        width: 90%;
        flex-basis: auto;
        order: 1;
        margin-bottom: 20px;
    }
    .right-info {
        order: 3;
    }

    .carousel-container {
        height: 350px;
    }

    .camarote-item {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) { /* Breakpoint para telas menores (celulares) */
    main {
        padding: 10px;
        margin: 10px auto;
    }
    .selection-box {
        padding: 20px;
    }
    .selection-box h2 {
        font-size: 1.8em;
    }
    .reservation-section {
        padding: 20px;
    }
    .info-block,
    .layout-container .image-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }
    .info-block h3 {
        font-size: 1.4em;
    }
    button,
    .action-button,
    .back-button,
    .comprarBtn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .carousel-container {
        height: 280px;
    }

    .slide-overlay {
        padding: 20px;
        max-width: 85%;
    }

    .slide-overlay h2 {
        font-size: 1.6em;
    }

    .slide-overlay p {
        font-size: 0.9em;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }
    .modal-content h2 {
        font-size: 1.5em;
    }

    .camarote-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .camarote-category .category-items {
        gap: 15px;
    }

    .camarote-item .name {
        font-size: 1em;
    }
    .camarote-item .status {
        font-size: 0.85em;
    }

    .status-legend {
        font-size: 0.8em;
    }

    /* Responsividade para a seção de consulta */
    .reservation-lookup-section {
        padding: 20px;
        margin: 20px auto;
    }
    .reservation-lookup-section h2 {
        font-size: 1.8em;
    }
    .reservation-lookup-container .input-group {
        flex-direction: column;
        align-items: center;
    }
    .reservation-lookup-container input[type="text"] {
        max-width: 100%;
    }

    /* Responsividade para a nova seção horizontal */
    .horizontal-section {
        padding: 30px 15px;
    }

    .horizontal-section h2 {
        font-size: 2em;
    }

    .horizontal-content {
        flex-direction: column; /* Empilha os itens verticalmente em telas pequenas */
        align-items: center; /* Centraliza os itens empilhados */
    }

    .horizontal-item {
        max-width: 90%; /* Ocupa quase toda a largura da tela */
    }
}

/* ... seu CSS existente ... */

/* Estilo para o ícone antes do título do evento */
.event-title-icon {
    width: 200px;   /* Ajuste o tamanho conforme sua imagem */
    height: auto;
    vertical-align: middle; /* Alinha o ícone verticalmente com o texto */
    margin-right: 15px; /* Espaço entre o ícone e o texto */
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5)); /* Adiciona uma sombra sutil */
    padding-bottom: 5px; /* Pequeno ajuste para alinhamento visual */
}

/* ... o restante do seu CSS ... */

/* Ajuste se o ícone empurrar muito o título em telas pequenas */
@media (max-width: 768px) {
    .event-title-icon {
        width: 200px; /* Reduz o tamanho do ícone em telas menores */
        margin-right: 10px;
    }
}