* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #F8F8F8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #2C2C2C;
    color: #B8860B;
    padding: 1rem 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-texto h1 {
    margin: 0;
    line-height: 1.2;
}

nav {
    background-color: #3A3A3A;
    border-radius: 8px;
    padding: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

nav ul li a {
    color: #F5F5F5;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-weight: 500;
}

nav ul li a:hover {
    background-color: #8B3A3A;
    color: #FFD966;
    transform: translateY(-2px);
}

main {
    min-height: 70vh;
    padding: 2rem 0;
}

section {
    margin-bottom: 3rem;
}

h2 {
    color: #8B3A3A;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-left: 4px solid #B8860B;
    padding-left: 1rem;
}

h3 {
    color: #8B3A3A;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.produtos-grid, .novidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.produto-card, .novidade-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid #B8860B;
}

.produto-card:hover, .novidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 58, 58, 0.15);
}

.produto-preco {
    font-size: 1.4rem;
    color: #B8860B;
    font-weight: bold;
    margin: 0.5rem 0;
}

.produto-estoque {
    color: #888;
    font-size: 0.85rem;
}

.novidade-resumo {
    font-weight: 600;
    color: #8B3A3A;
    margin-bottom: 0.5rem;
}

.novidade-descricao {
    color: #666;
    line-height: 1.5;
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.sobre-info p {
    margin-bottom: 1rem;
    color: #444;
}

.sobre-info strong {
    color: #8B3A3A;
}

.equipe {
    margin-top: 1rem;
}

.equipe h3 {
    margin-bottom: 1.2rem;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.membro, .membro-card {
    text-align: center;
    background: #F8F8F8;
    padding: 1.2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.membro:hover, .membro-card:hover {
    transform: translateY(-3px);
}

.membro-icone {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.membro h4 {
    color: #8B3A3A;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.membro p {
    color: #888;
    font-size: 0.85rem;
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-contato {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.form-contato h3 {
    margin-bottom: 1.5rem;
}

.form-grupo {
    margin-bottom: 1.2rem;
}

.form-grupo label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #8B3A3A;
}

.form-grupo input,
.form-grupo select,
.form-grupo textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus {
    outline: none;
    border-color: #B8860B;
}

.form-grupo textarea {
    resize: vertical;
}

.btn-enviar {
    background: #8B3A3A;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background: #B8860B;
    transform: translateY(-2px);
}

.redes-sociais {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.redes-sociais h3 {
    margin-bottom: 1rem;
}

.redes-sociais p {
    margin-bottom: 1.5rem;
    color: #666;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: #F8F8F8;
    border-radius: 10px;
    text-decoration: none;
    color: #444;
    transition: all 0.3s ease;
    border-left: 3px solid #B8860B;
}

.social-link:hover {
    transform: translateX(5px);
    background: #8B3A3A;
    color: white;
}

.social-link:hover .social-icon {
    color: #FFD966;
}

.social-icon {
    font-size: 1.3rem;
}

footer {
    background: #2C2C2C;
    color: #AAA;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer p:last-child {
    color: #B8860B;
    font-size: 0.85rem;
}

.hero {
    text-align: center;
    padding: 2rem 0;
}

.hero h2 {
    border-left: none;
    text-align: center;
    font-size: 2rem;
}

.hero p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 1rem auto;
}

.diferenciais h2 {
    text-align: center;
    border-left: none;
}

@media (max-width: 768px) {
    .sobre-container,
    .contato-container {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li a {
        width: 100%;
        text-align: center;
    }
    
    .logo-area {
        text-align: center;
        justify-content: center;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .produto-card, .novidade-card {
        padding: 1rem;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-container,
    .form-contato,
    .redes-sociais {
        padding: 1.2rem;
    }
}

.hero-banner {
    background: linear-gradient(135deg, #8B3A3A 0%, #2C2C2C 100%);
    background-image: linear-gradient(135deg, rgba(139, 58, 58, 0.8) 0%, rgba(44, 44, 44, 0.9) 100%), url('imagens/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h2 {
    border-left: none;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
}

.hero-tagline {
    color: #FFD966 !important;
    font-style: italic;
    margin-bottom: 2rem !important;
}

.btn-hero {
    display: inline-block;
    background: #B8860B;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.btn-hero:hover {
    background: #FFD966;
    color: #2C2C2C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.6);
}

.diferencial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.diferencial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #B8860B;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 58, 58, 0.15);
}

.diferencial-icone {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.diferencial-card h3 {
    color: #8B3A3A;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.diferencial-card p {
    color: #666;
    line-height: 1.6;
}

.destaque-especial {
    margin: 4rem 0;
    padding: 2rem 0;
}

.destaque-header {
    text-align: center;
    margin-bottom: 3rem;
}

.destaque-header h2 {
    border-left: none;
    color: #8B3A3A;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.destaque-header p {
    color: #666;
    font-size: 1.1rem;
}

.combo-destaque {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    align-items: center;
}

.combo-imagem {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.combo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.combo-destaque:hover .combo-imagem img {
    transform: scale(1.05);
}

.badge-novo {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #B8860B;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.combo-conteudo {
    padding: 2.5rem;
}

.combo-conteudo h3 {
    color: #8B3A3A;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.combo-conteudo p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.combo-items {
    background: #F8F8F8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    list-style: none;
}

.combo-items li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.combo-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #B8860B;
    font-weight: bold;
}

.combo-preco {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.preco-antigo {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
}

.preco-novo {
    font-size: 2.2rem;
    color: #B8860B;
    font-weight: 800;
}

.btn-reservar {
    display: inline-block;
    background: #8B3A3A;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-reservar:hover {
    background: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 58, 58, 0.3);
}

.ofertas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.oferta-card {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #B8860B;
    transition: all 0.3s ease;
}

.oferta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 58, 58, 0.12);
}

.oferta-icone {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.oferta-card h4 {
    color: #8B3A3A;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.oferta-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.oferta-descricao {
    color: #888;
    font-style: italic;
    font-size: 0.85rem;
}

.experiencia {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFF 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
    text-align: center;
}

.experiencia h2 {
    border-left: none;
    margin-bottom: 3rem;
}

.experiencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.experiencia-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.experiencia-numero {
    display: block;
    font-size: 2.5rem;
    color: #B8860B;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.experiencia-item h4 {
    color: #8B3A3A;
    margin-bottom: 0.3rem;
}

.experiencia-item p {
    color: #888;
    font-size: 0.9rem;
}

.cta-final {
    background: linear-gradient(135deg, #8B3A3A 0%, #2C2C2C 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.cta-final h2 {
    color: white;
    border-left: none;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFD966;
}

.cta-botoes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cardapio {
    background: transparent;
    color: white;
    border: 2px solid #FFD966;
}

.btn-cardapio:hover {
    background: #FFD966;
    color: #2C2C2C;
    transform: translateY(-3px);
}

.contato-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contato-header h2 {
    border-left: none;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.formulario-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.formulario-section h3 {
    color: #8B3A3A;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-contato {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-grupo {
    display: flex;
    flex-direction: column;
}

.form-grupo label {
    color: #8B3A3A;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-grupo input,
.form-grupo select,
.form-grupo textarea {
    padding: 0.8rem;
    border: 2px solid #DDD;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus {
    outline: none;
    border-color: #B8860B;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-grupo textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enviar {
    background: #8B3A3A;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-enviar:hover {
    background: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 58, 58, 0.3);
}

.info-contato {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #B8860B;
}

.info-card h3 {
    color: #8B3A3A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: #8B3A3A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: #B8860B;
}

.horario-list {
    list-style: none;
}

.horario-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #EEE;
}

.horario-list li:last-child {
    border-bottom: none;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: inline-block;
    padding: 0.8rem 1rem;
    background: #F8F8F8;
    border-radius: 8px;
    text-decoration: none;
    color: #8B3A3A;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: #8B3A3A;
    color: white;
    transform: translateX(5px);
}

.mapa-section {
    margin: 4rem 0;
    text-align: center;
}

.mapa-section h3 {
    color: #8B3A3A;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.mapa-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #AAA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #B8860B;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .combo-destaque {
        grid-template-columns: 1fr;
    }

    .combo-imagem {
        height: 250px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .cta-botoes {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta {
        width: 100%;
    }

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 4rem 1rem;
        min-height: auto;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .diferencial-grid,
    .ofertas-grid,
    .experiencia-grid {
        grid-template-columns: 1fr;
    }

    .combo-preco {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-final h2 {
        font-size: 1.5rem;
    }
}

.horarios-lista {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 3rem;
}

.horarios-lista li {
    padding: 0.8rem 0;
    color: #444;
    border-bottom: 1px solid #EEE;
}

.horarios-lista li:last-child {
    border-bottom: none;
}

.horarios-lista strong {
    color: #8B3A3A;
    font-weight: 600;
}

time {
    color: #B8860B;
    font-weight: 500;
    background: rgba(184, 134, 11, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

.novidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.novidade-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid #B8860B;
}

.novidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 58, 58, 0.15);
}

.novidade-card h3 {
    color: #8B3A3A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.novidade-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.novidade-horario {
    color: #8B3A3A !important;
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #EEE;
}

@media (max-width: 768px) {
    .novidades-grid {
        grid-template-columns: 1fr;
    }
}

.cardapio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cardapio-header h2 {
    border-left: none;
    color: #8B3A3A;
    font-size: 2.5rem;
}

.cardapio-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto;
}

.cardapio-secao {
    margin: 4rem 0;
}

.secao-titulo {
    color: #8B3A3A;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #B8860B;
}

.pratos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.prato-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 4px solid #B8860B;
    display: flex;
    flex-direction: column;
}

.prato-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(139, 58, 58, 0.2);
}

.prato-imagem {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.prato-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.prato-card:hover .prato-imagem img {
    transform: scale(1.1);
}

.badge-destaque,
.badge-novo {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.badge-destaque {
    background: #8B3A3A;
    color: white;
}

.badge-novo {
    background: #B8860B;
    color: white;
}

.prato-conteudo {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prato-conteudo h4 {
    color: #8B3A3A;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.prato-descricao {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.prato-detalhes {
    background: #F8F8F8;
    padding: 0.8rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.prato-peso {
    display: block;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.prato-preco {
    color: #B8860B !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.combo-card {
    background: linear-gradient(135deg, #FFF 0%, #F8F8F8 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #B8860B;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 58, 58, 0.15);
}

.combo-card h4 {
    color: #8B3A3A;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.combo-descricao {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.combo-preco {
    color: #B8860B;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.combo-pessoas {
    display: inline-block;
    background: #8B3A3A;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cta-cardapio {
    background: linear-gradient(135deg, #8B3A3A 0%, #2C2C2C 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.cta-cardapio h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-cardapio p {
    font-size: 1.1rem;
    color: #FFD966;
    margin-bottom: 2rem;
}

.btn-reserva-grande {
    display: inline-block;
    background: #B8860B;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-reserva-grande:hover {
    background: #FFD966;
    color: #2C2C2C;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .pratos-grid,
    .combos-grid {
        grid-template-columns: 1fr;
    }

    .prato-imagem {
        height: 180px;
    }

    .secao-titulo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pratos-grid,
    .combos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prato-conteudo {
        padding: 1.2rem;
    }

    .prato-conteudo h4 {
        font-size: 1.1rem;
    }

    .combo-card {
        padding: 1.5rem;
    }
}

.sobre-secao {
    margin: 3rem 0;
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.sobre-info,
.sobre-filosofia {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sobre-info h3,
.sobre-filosofia h3 {
    color: #8B3A3A;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #B8860B;
    padding-bottom: 1rem;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-item {
    background: #F8F8F8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #B8860B;
}

.info-item strong {
    color: #8B3A3A;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    font-size: 0.95rem;
}

.filosofia-item {
    margin-bottom: 1.5rem;
}

.filosofia-item h4 {
    color: #8B3A3A;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.filosofia-item p {
    color: #666;
    line-height: 1.6;
}

.valores-lista {
    list-style: none;
    padding: 0;
    margin-top: 0.8rem;
}

.valores-lista li {
    padding: 0.6rem 0;
    color: #666;
}

.equipe-secao {
    margin: 4rem 0;
    text-align: center;
}

.equipe-intro {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.membro-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #B8860B;
}

.membro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(139, 58, 58, 0.15);
}

.membro-icone {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.membro-card h4 {
    color: #8B3A3A;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.membro-cargo {
    color: #B8860B;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.membro-descricao {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.sobre-cta {
    background: linear-gradient(135deg, #8B3A3A 0%, #2C2C2C 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.sobre-cta h2 {
    color: white;
    border-left: none;
    margin-bottom: 1rem;
}

.sobre-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #FFD966;
}

.btn-cta {
    display: inline-block;
    background: #B8860B;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #FFD966;
    color: #2C2C2C;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .sobre-container {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .equipe-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 480px) {
    .sobre-info,
    .sobre-filosofia {
        padding: 1.5rem;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
    }

    .membro-icone {
        font-size: 2.5rem;
    }
}

.novidades-banner {
    background: linear-gradient(135deg, #8B3A3A 0%, #2C2C2C 100%);
    background-image: linear-gradient(135deg, rgba(139, 58, 58, 0.7) 0%, rgba(44, 44, 44, 0.85) 100%);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.novidades-content h2 {
    color: white;
    border-left: none;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.novidades-content p {
    color: #FFD966;
    font-size: 1.2rem;
}

.horarios-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.horarios-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.horarios-lista {
    list-style: none;
    padding: 0;
}

.horarios-lista li {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid #EEE;
    align-items: center;
}

.horarios-lista li:last-child {
    border-bottom: none;
}

.dia {
    font-weight: 600;
    color: #8B3A3A;
}

.horario {
    color: #666;
}

.status-fechado {
    background: #FFE0E0;
    color: #8B3A3A;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.aviso-importante {
    background: #FFF9E6;
    border-left: 4px solid #B8860B;
    padding: 1.5rem;
    border-radius: 8px;
}

.aviso-importante h4 {
    color: #8B3A3A;
    margin-bottom: 0.8rem;
}

.aviso-importante p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

#promocoes-principais {
    margin: 4rem 0;
}

#promocoes-principais h2 {
    text-align: center;
    border-left: none;
    margin-bottom: 2rem;
}

.promocoes-destaque {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.promo-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 4px solid #B8860B;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 58, 58, 0.2);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #B8860B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-card h3 {
    color: #8B3A3A;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.promo-card h4 {
    color: #8B3A3A;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.promo-descricao {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.promo-periodo {
    color: #8B3A3A;
    font-weight: 600;
    margin: 1rem 0;
}

.promo-icone {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.promo-texto {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.8rem 0 0 0;
}

.btn-promo {
    display: inline-block;
    background: #8B3A3A;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: #B8860B;
    transform: translateY(-2px);
}

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

#novidades-blog {
    margin: 4rem 0;
}

#novidades-blog h2 {
    text-align: center;
    border-left: none;
    margin-bottom: 2rem;
}

.novidades-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.novidade-blog {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.novidade-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 58, 58, 0.12);
}

.novidade-data {
    background: linear-gradient(135deg, #8B3A3A 0%, #2C2C2C 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    min-height: 80px;
}

.novidade-data .mes {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
}

.novidade-data .dia {
    font-size: 1.8rem;
    font-weight: 800;
}

.novidade-conteudo h4 {
    color: #8B3A3A;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.novidade-conteudo p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.novidade-tag {
    display: inline-block;
    background: #F0E6D2;
    color: #8B3A3A;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.eventos {
    margin: 4rem 0;
}

#eventos h2 {
    text-align: center;
    border-left: none;
    margin-bottom: 1rem;
}

.eventos-intro {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.eventos-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.evento-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #B8860B;
    transition: all 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 58, 58, 0.12);
}

.evento-mes {
    display: inline-block;
    background: #8B3A3A;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.evento-card h4 {
    color: #8B3A3A;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.evento-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.evento-info {
    color: #8B3A3A;
    font-weight: 600;
    font-size: 0.9rem;
}

.newsletter-cta {
    background: linear-gradient(135deg, #8B3A3A 0%, #2C2C2C 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.newsletter-cta h2 {
    color: white;
    border-left: none;
    margin-bottom: 1rem;
}

.newsletter-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #FFD966;
}

.newsletter-botoes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-newsletter {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
}

.btn-email {
    background: #B8860B;
    color: white;
}

.btn-email:hover {
    background: #FFD966;
    color: #2C2C2C;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .logo-area {
        justify-content: center;
        margin-bottom: 1rem;
    }
    .logo-texto h1 {
        font-size: 1.5rem;
    }
    .horarios-container {
        grid-template-columns: 1fr;
    }

    .promocoes-destaque {
        grid-template-columns: 1fr;
    }

    .novidades-blog-grid {
        grid-template-columns: 1fr;
    }

    .eventos-timeline {
        grid-template-columns: 1fr;
    }

    .newsletter-botoes {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .novidades-banner {
        padding: 2rem 1rem;
    }

    .novidades-content h2 {
        font-size: 1.8rem;
    }

    .horarios-lista li {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .promo-card {
        padding: 1.5rem;
    }

    .novidade-blog {
        grid-template-columns: 1fr;
    }

    .novidade-data {
        min-height: auto;
    }
}

.produto-imagem {
    position: relative;
    width: calc(100% + 3rem);
    height: 200px;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-imagem .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #8B3A3A;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.produto-descricao {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}