:root {
    --bg-color: #050505;
    --card-bg: #111;
    --item-bg: #1a1a1a;
    --neon-red: #ff0000;
    --dark-red: #8b0000;
    --silver: #c0c0c0;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --shadow-neon: 0 0 15px rgba(255, 0, 0, 0.6);
    --shadow-silver: 0 0 15px rgba(192, 192, 192, 0.3);
    --font-heading: 'Pirata One', cursive;
    --font-body: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    /* Old School Gradient Background */
    background: 
        radial-gradient(circle at 80% 90%, #6e0000 0%, transparent 40%),
        radial-gradient(circle at 20% 10%, #300000 0%, transparent 40%),
        radial-gradient(circle, #0a0a0a 20%, #000 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--neon-red);
    text-shadow: 2px 2px 0 var(--silver);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

h1 { font-size: 3.5rem; margin-bottom: 0.5rem; }
h2 { font-size: 2.5rem; margin: 3rem 0 1.5rem; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }

p { color: var(--text-muted); line-height: 1.6; }

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    margin-bottom: 40px;
    text-align: center;
}

/* Frame Estilo Neon (Substitui .card-frame e .booking-card) */
.neon-frame {
    background: var(--card-bg);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-neon), var(--shadow-silver);
    position: relative;
    overflow: hidden; 
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-info {
    text-align: center;
    margin-bottom: 25px;
}

/* CARROSSEL DE DATAS */
.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

/* Botões de Navegação */
.nav-btn {
    background: rgba(0,0,0,0.5);
    border: 2px solid var(--silver);
    color: var(--silver);
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--neon-red);
    color: #fff;
    border-color: var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red);
}

.nav-btn.prev { margin-right: 15px; }
.nav-btn.next { margin-left: 15px; }

/* Janela de Visualização */
.carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

/* Card de Data */
.date-card {
    flex: 0 0 170px; /* Largura fixa */
    background: var(--item-bg);
    border: 2px solid #444;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-card.active {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    opacity: 1;
    transform: scale(1.05);
    z-index: 5;
    background: #1e1e1e;
}

.day-name { 
    font-size: 1.4rem; 
    font-weight: bold; 
    color: var(--text-main); 
    font-family: var(--font-heading); 
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.day-date { 
    font-size: 0.85rem; 
    color: var(--silver); 
    margin-bottom: 12px; 
}

/* Botões de Período */
.slot-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    margin-top: 8px;
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.2s;
}

.slot-btn:hover:not(:disabled) {
    background: var(--neon-red);
    border-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
    transform: scale(1.02);
}

.slot-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #333;
}

/* Formulário */
.booking-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed #333;
    width: 100%;
    max-width: 500px;
    animation: fadeIn 0.5s ease;
    display: none; /* JS vai mostrar */
}

input, select {
    width: 100%;
    padding: 15px;
    background: #000;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

input:focus, select:focus {
    border-color: var(--neon-red);
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

.btn-confirm {
    width: 100%;
    padding: 15px;
    background: var(--dark-red);
    color: #fff;
    border: 1px solid var(--neon-red);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm:hover {
    background: var(--neon-red);
    box-shadow: 0 0 20px var(--neon-red);
}

/* PORTFOLIO */
.portfolio-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    position: relative;
    display: flex;
    justify-content: center; /* Centraliza se poucos itens */
}

.portfolio-wrapper::-webkit-scrollbar { display: none; }

.portfolio-track {
    display: flex;
    gap: 30px;
    padding: 10px;
    width: max-content;
}

.portfolio-card {
    width: 260px;
    background: var(--item-bg);
    border: 2px solid #333;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--silver);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.portfolio-img {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #333;
}

.portfolio-info {
    padding: 15px;
    text-align: center;
}

.price-tag {
    display: block;
    color: var(--neon-red);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.desc-tag { font-size: 0.9rem; color: #aaa; }

.rules {
    margin-top: 50px;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .neon-frame { padding: 20px; }
    .nav-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .date-card { flex: 0 0 140px; }
    h1 { font-size: 2.5rem; }
}

/* Bot�o Admin */
.float-admin-btn { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: #000; border: 2px solid var(--silver); border-radius: 50%; color: var(--silver); display: flex; align-items: center; justify-content: center; font-size: 24px; text-decoration: none; transition: 0.3s; box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); z-index: 9999; }
.float-admin-btn:hover { border-color: var(--neon-red); color: var(--neon-red); box-shadow: 0 0 15px var(--neon-red); transform: rotate(90deg); }
