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

:root {
    --primary: #FF006E;
    --secondary: #8338EC;
    --accent: #FFBE0B;
    --dark: #1A1A2E;
    --light: #FFFFFF;
    --gray: #16213E;
    --gray-light: #E9ECEF;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: #0a0a0a;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg-graffiti.jpg') center center;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; }

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    padding: 0.7rem 0;
    min-height: 70px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.nav {
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: 140px;
    max-width: 140px;
}

.logo h1 {
    display: none;
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark);
    padding: 3rem 1.5rem;
    transition: all 0.3s;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

.nav.active { right: 0; }

.nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
}

.nav-list { margin-top: 3rem; }
.nav-list li { margin-bottom: 1.5rem; }

.nav-list a {
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
}

.nav-toggle {
    background: var(--primary);
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .logo img {
        width: 250px;
        max-width: 250px;
    }
    
    .nav-toggle, .nav-close { display: none; }
    
    .nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        flex: 1;
        display: flex;
        justify-content: flex-end;
        z-index: 5;
    }
    
    .nav-list {
        display: flex;
        gap: 0.8rem;
        margin-top: 0;
        flex-wrap: nowrap;
    }
    
    .nav-list li { 
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .nav-list a {
        font-size: 0.85rem;
        padding: 0.5rem 0.7rem;
        position: relative;
        z-index: 5;
    }
}

@media (min-width: 1024px) {
    .logo img {
        width: 280px;
        max-width: 280px;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .nav-list a {
        font-size: 0.9rem;
        padding: 0.5rem 0.9rem;
    }
}

@media (min-width: 1200px) {
    .logo img {
        width: 300px;
        max-width: 300px;
    }
    
    .nav-list {
        gap: 1.2rem;
    }
    
    .nav-list a {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s;
}

.slide.active { opacity: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(26,26,46,0.8));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slide-text {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .slide-title { font-size: 3.5rem; }
    .slide-text { font-size: 1.3rem; }
    .slide-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--light);
    font-size: 3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
}

.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,110,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-secondary:hover {
    background: rgba(26, 26, 46, 0.7);
    color: var(--light);
}

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

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

section { 
    padding: 4rem 0;
    background: rgba(10, 10, 10, 0.85);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--light);
}

/* ABOUT PREVIEW */
.about-preview { background: rgba(26, 26, 46, 0.9); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.85);
}

.cta-inline {
    background: linear-gradient(135deg, rgba(255,0,110,0.1) 0%, rgba(131,56,236,0.1) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

.urgency-text {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* SCHEDULE */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .schedule-grid { grid-template-columns: repeat(4, 1fr); }
}

.schedule-card {
    background: rgba(26, 26, 46, 0.7);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.schedule-card:hover { transform: translateY(-5px); }

.schedule-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

.schedule-day {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,211,102,0.5);
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ACCORDION */
.accordion-item {
    background: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-header {
    background: rgba(26, 26, 46, 0.9);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.accordion-header.active {
    background: var(--primary);
    color: var(--light);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.accordion-content.active { max-height: 1000px; }

.accordion-body { padding: 1.5rem; }

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s;
}

.gallery-item:hover img { transform: scale(1.1); }

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* FORM */
.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

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

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
}

.card {
    background: rgba(26, 26, 46, 0.7);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
}

/* MENU */
.menu-section {
    margin-bottom: 3rem;
}

.menu-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.menu-item-name {
    font-weight: 600;
    color: var(--light);
}

.menu-item-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.25rem;
}

.menu-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

/* === DARK MODE EXTRAS === */
.card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.card h3 {
    color: var(--primary);
}

.card p {
    color: rgba(255, 255, 255, 0.85);
}

.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-name {
    color: var(--light);
}

.menu-item-desc {
    color: rgba(255, 255, 255, 0.7);
}

.accordion-header {
    background: rgba(26, 26, 46, 0.7);
    color: var(--light);
}

.accordion-body {
    background: rgba(10, 10, 10, 0.8);
    color: rgba(255, 255, 255, 0.85);
}

.schedule-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.schedule-card p {
    color: rgba(255, 255, 255, 0.85);
}

/* Overlay para melhor legibilidade */
section:not(.hero-slider):not(.final-cta) {
    position: relative;
}

section:not(.hero-slider):not(.final-cta)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
}
