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

body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

/* HEADER - ARRUMADO E BONITO */
.header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

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

/* ✅ LOGO DIMINUÍDO AQUI */
.logo img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.logo span {
    font-size: 1.3rem;
    font-weight: bold;
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.menu a:hover {
    color: #ff9800;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
}

/* HERO - CENTRALIZADO E BEM ALINHADO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza tudo */
    text-align: center; /* Texto ao centro */
    padding: 120px 5%;
    background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url('../img/fundo.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;
    width: 100%;
}

.destaque {
    color: #ff9800;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 25px;
}

.subtitulo {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 30px;
}

.preco {
    font-size: 4rem;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.botoes {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ✅ BOTÕES COM CORES ORIGINAIS (SEM AZUL) */
.btn-principal,
.btn-secundario {
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: bold;
    transition: .3s;
}

.btn-principal {
    background: #e53935; /* Vermelho original */
    color: white;
}

.btn-principal:hover {
    transform: translateY(-3px);
}

.btn-secundario {
    border: 2px solid #ff9800; /* Laranja original */
    color: #ff9800;
    background: transparent;
}

/* DEMAIS SEÇÕES - CENTRALIZADAS */
.cardapio, .sobre, .contato {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cardapio h2, .sobre h2, .contato h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #ff9800;
}

.card {
    background: #222;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card span {
    display: block;
    margin-top: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: #ff9800;
}

.sobre-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.info-box {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    min-width: 120px;
}

/* ✅ RODAPÉ DO JEITO QUE VOCÊ GOSTOU */
.footer {
    text-align: center;
    padding: 20px 5%;
    background: #000;
    border-top: 1px solid #333;
}
.hero {
    .hero {
    padding: 100px 20px 60px;
    text-align: center;
    background: #f5f5f5;
}
    background: #fff;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 120px 20px 60px;
}

.hero-logo {
    width: 300px;
    max-width: 80%;
    margin-bottom: 40px;
}
.hero-logo {
    width: 220px;
    margin-bottom: 20px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.destaque {
    display: block;
    margin-bottom: 10px;
}

.subtitulo {
    margin: 15px 0;
}

.preco {
    margin: 20px 0;
}

.hero {
    background-image:
        linear-gradient(
            rgba(255,255,255,0.85),
            rgba(255,255,255,0.85)
        ),
        url("../img/fundo.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.itens-cardapio {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.item {
    width: 250px;
    background: #1b1b1b;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}

.item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.item h3 {
    padding: 15px;
    color: #775a5a;
}
.cardapio {
padding: 80px 20px;
text-align: center;
}

.cardapio .card {
background: #222;
border-radius: 12px;
padding: 25px;
margin: 20px auto;
max-width: 500px;
}

.cardapio ul {
list-style: none;
padding: 0;
margin-top: 15px;
}

.cardapio li {
padding: 8px 0;
border-bottom: 1px solid #333;
}

.card button {
    margin-top: 15px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: #e53935;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.card button:hover {
    transform: translateY(-2px);
}

.slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity .6s ease;
}

.slide.active {
    opacity: 1;
}
.video-container {
    width: 90%;
    max-width: 1200px;
    height: 400px;

    margin: 40px auto;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 0 30px rgba(0,0,0,.4);
}

.video-container video {
    width: 100%;
    height: 100%;

    object-fit: cover;
}
.card {
    max-width: 650px;
    padding: 25px;
    margin: 20px auto;
}