        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', serif;
        }

        body {
            background-color: #fff;
            color: #111;
            line-height: 1.6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', serif;
        }

        body {
            background-color: #fff;
            color: #111;
            line-height: 1.6;
        }

        /* Header */
        .site-header{    
        position: sticky;
        top: 0;
        z-index: 50;
        background: #fff9f6;
        border-bottom: 1px solid #ecdcd3;
        backdrop-filter: saturate(1.2) blur(6px);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        }
        .navegacao-header{
        margin-right: 50px;
        }
        .nav-header{
        display: flex;
        flex-direction: row;
        gap: 22px;
        list-style: none;
        color: #4C1B1B;
        font-family: 'Playfair Display', serif;
        }
        .wrap{
            max-width:var(--container); 
            margin:0 auto; 
            padding:0 24px
        }
        .nav{
            display:flex; 
            align-items:center; 
            justify-content:space-between; 
            height:84px; 
            margin: 0;
        }
        .brand{
            display:flex; 
            align-items:center; 
            gap:14px
        }
        .brand-title{
            font-family:'Playfair Display', serif; 
            letter-spacing:.4px; 
            color:var(--brown); 
            font-weight:700
        }
        .brand-title h1{
            display:block; 
            font-size:22px;
            color: #5B1B1D;
        }
        .brand-title h5{
            font-size:12px; 
            opacity:.7;
            color: #5B1B1D;
        }
        .nav-header ul{
            display:flex; 
            list-style:none; 
            gap:28px; 
            margin:0; 
            padding:0;
        }
        .nav-header a{
            font-weight: 600;
            color:#5B1B1D; 
            text-decoration: none;
        }
        .nav-header a:hover{
            color:#F37A87
        }

        /* Logo mark */
        .logo{width: 69px;
        }

        /* Hero Section */
        .menu-header {
            background-color: #FFF5EE;
            text-align: center;
            padding: 80px 20px 40px;
        }

        .menu-header h1 {
            font-size: 48px;
            margin-bottom: 15px;
            color: #5B1B1D; 
            font-size: 22px;
        }

        .menu-header p {
            font-size: 18px;
            color: #5B1B1D;
        }

        /* Menu Section */
        .menu-section {
            padding: 60px 0px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-section h2 {
            font-size: 32px;
            margin-bottom: 30px;
            text-align: center;
            color: #5B1B1D; 
        }

        .menu-category {
            margin-bottom: 50px;
        }

        .menu-category h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #F37A87; 
        }

        .menu-items {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .menu-item {
            flex: 1 1 calc(33% - 20px);
            min-width: 200px;
            background: #FBE9DE;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
        }

        .foto-item{
            width: 50%;
        }

        .texto-item{
            width: 50%;
        }

        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .menu-item h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #5B1B1D;
            text-align: center;
        }

        .menu-item p {
            font-size: 14px;
            color: #555;
            margin-bottom: 5px;
            padding-left: 5px;
            width: 105%;
        }

        .menu-item span {
            font-weight: bold;
            color: #F37A87; 
            display: flex;
            justify-content: center;
        }

        /* Footer */
        footer {
            background-color: #5B1B1D;
            color: #fff;
            padding: 60px 40px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #F8CACA; 
        }

        .footer-column p, .footer-column a {
            font-size: 14px;
            color: #fff;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }

        .footer-column a:hover {
            color: #F37A87; 
        }

        @media(max-width: 900px) {
        .brand-title h1{
            margin: 0;
            font-size: 14px;
        }
       .brand-title h5{
            margin: 0;
            font-size: 10px;
        }
        .menu-items {
            flex-direction: column;
        }

        .menu-item p{
            width: 100%;
        }
           
        .sobre, .localizacao, .contato{
            display: none;
        }

        .nav{
            padding: 0px 50px 0px 0px;
        }

        .navegacao-header{
            margin-right: 0;
        }

        .menu-section{
            padding: 60px 0px;
            text-align: center;
        }

      footer{
        background-color: #5B1B1D;
        color: #fff;
        padding: 15px 15px;
      }
    
      .footer-column{
        min-width: 0;
        margin-bottom: 0;
      }

    }