* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; 
    background: #1a0f0a; 
    color: #fff; 
    line-height: 1.6; 
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
    position: fixed; top: 0; width: 100%; 
    background: rgba(26,15,10,0.95);
    padding: 15px 5%; display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); transition: background 0.4s;
}
header.scrolled { background: rgba(26,15,10,1); }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.logo-img {
    height: 100px; /* Logo maior no desktop */
    transition: height 0.3s ease, transform 0.3s;
}
.logo-img:hover { transform: scale(1.1); }

/* Menu desktop */
nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: #ff6b35;
    transition: width 0.3s ease;
}
nav a:hover { color: #ff6b35; }
nav a:hover::after { width: 100%; }

/* Hamburger */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 10;
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    transition: 0.3s;
}

/* Hero e Slider */
#hero {
    height: 100vh; min-height: 600px; position: relative; overflow: hidden;
}
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}
.slide.active { opacity: 1; }

#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.35));
    z-index: 1;
}
.hero-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 1000px;
}
.slide-caption {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 2;
}

/* Botão */
.btn {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}
.btn:hover {
    background: #e55a2b;
    box-shadow: 0 8px 25px rgba(255,107,53,0.5);
    transform: translateY(-3px);
}

/* Seções gerais */
section { padding: 100px 20px; text-align: center; }
section:nth-child(even) { background: #0f0805; }
h2 { font-size: 3.5rem; margin-bottom: 60px; color: #ff6b35; }

/* Destaques */
.destaques {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.destaque-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.6s;
}
.destaque-card:hover {
    box-shadow: 0 15px 35px rgba(255,107,53,0.25);
    transform: translateY(-10px);
}
.destaque-card i { font-size: 3.5rem; color: #ff6b35; margin-bottom: 20px; }

/* Carrossel */
.carousel {
    position: relative;
    max-width: 100%;

    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.carousel-inner {
    display: flex;
    transition: transform 0.6s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    flex: 0 0 100%;
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    overflow: hidden;
}
.carousel-item img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}
.carousel-item img:hover { transform: scale(1.05); }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,107,53,0.8);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
    transition: all 0.3s;
}
.carousel-btn:hover {
    background: #ff6b35;
    transform: translateY(-50%) scale(1.1);
}
.prev { left: 20px; }
.next { right: 20px; }

/* Cardápio (menu-grid) */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.menu-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.6s;
    backdrop-filter: blur(5px);
}
.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255,107,53,0.25);
}
.menu-item h3 { color: #ff6b35; margin-bottom: 15px; }
.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.menu-item img:hover { transform: scale(1.05); }

/* Footer */
footer {
    background: #0f0805;
    padding: 60px 20px 30px;
    text-align: center;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
}
.footer-section h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.social-icons-footer a {
    font-size: 2rem;
    margin: 0 15px;
    color: #fff;
    transition: color 0.3s;
}
.social-icons-footer a:hover { color: #ff6b35; }
.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #999;
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    z-index: 1000;
    transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.15); }

/* Responsivo */
@media (max-width: 1024px) {
    h2 { font-size: 3rem; }
    .hero-content h1 { font-size: 4rem; }
    .hero-content p { font-size: 1.8rem; }
}
@media (max-width: 868px) {
    .nav-desktop {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(26,15,10,0.98);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9;
    }
    .nav-desktop.active { display: flex; }
    .nav-desktop ul {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .nav-desktop a { font-size: 1.8rem; }
    .menu-toggle { display: block; position: absolute; right: 20px; }
    .logo-img { height: 80px; }
    .header-container { justify-content: center; }
}
@media (max-width: 768px) {
    .carousel-btn { width: 50px; height: 50px; font-size: 1.5rem; }
    .prev { left: 10px; }
    .next { right: 10px; }
    .menu-grid { grid-template-columns: 1fr; gap: 30px; }
    .menu-item img { height: 200px; }
    .footer-container { text-align: center; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.3rem; }
    .btn { padding: 12px 25px; font-size: 1.1rem; }
    .whatsapp-float { width: 55px; height: 55px; bottom: 15px; right: 15px; }
}