<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Reset bÃ¡sico e configuraÃ§Ãµes globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
    font-family: "Passion One", sans-serif;
    /*overflow: hidden;  Previne scroll na tela inicial */
    background-color: #f0f0f0; /* Fundo geral */
    scroll-behavior: smooth;
  }
  
  a {
    text-decoration: none;
  }
  p {
    font-family: "Open Sans", sans-serif;
  }
  
  /* --- Tela de SeleÃ§Ã£o Inicial --- */
  #restaurant-select {
    display: flex;
    height: 100vh; /* Altura total da viewport */
    width: 100vw; /* Largura total da viewport */
  }
  
  .container-home {
    position: relative;
  
    .logo {
      position: absolute;
      transition: all 0.3s ease;
      opacity: 1;
      z-index: 3;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -40%) scale(1);
    }
  
    .title {
      position: absolute;
      left: 50%;
      transform: translatex(-50%) scale(1);
      bottom: 30%;
      background: url(../img/bg-texto-lanches.png) 0 0 no-repeat;
      background-size: cover;
      color: #fff;
      z-index: 3;
      padding: 52px;
      transition: all 0.3s ease;
  
      h1 {
        text-shadow: 0px 2px 3px #00000038;
        font-size: 35px;
      }

      span {
        font-family: "Open Sans", sans-serif;
      }
    }
  }
  
  .restaurant-option {
    flex: 1; /* Ocupa metade do espaÃ§o */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition:
      flex 0.5s ease-in-out,
      filter 0.3s ease; /* TransiÃ§Ã£o suave para hover e flex */
    background-size: cover;
    background-position: center;
    position: relative; /* Para o overlay */
    color: white;
    text-align: center;
    font-size: 2rem; /* Tamanho inicial do texto */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  /* Overlay escuro sobre a imagem de fundo */
  .restaurant-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Overlay escuro */
    z-index: 1;
    transition: background-color 0.3s ease;
  }
  
  .restaurant-option .content {
    position: relative;
    z-index: 2; /* Garante que o texto fique sobre o overlay */
    padding: 20px;
  
    .text {
      opacity: 0.1;
      transition: all 0.3s ease;
    }
  }
  
  .restaurant-option .content .logo {
    transition: all 0.2s ease;
    opacity: 0.1;
    inset: unset;
    position: relative;
    transform: none;
  }
  .restaurant-option:hover {
    .logo {
      opacity: 1;
    }
  }
  .restaurant-option h1 {
    font-size: 50px;
    text-transform: uppercase;
    line-height: 30px;
  }
  .restaurant-option h1 span {
    font-size: 20px;
    display: block;
  }
  /* Efeito de Hover */
  #restaurant-select:hover .restaurant-option:not(:hover) {
    flex: 0.6; /* Diminui o lado que nÃ£o estÃ¡ em hover */
    filter: brightness(0.4); /* Escurece um pouco */
  }
  #restaurant-select .restaurant-option:hover {
    flex: 1.4; /* Aumenta o lado em hover */
    filter: brightness(1); /* Brilho normal */
  }
  #restaurant-select .restaurant-option:hover::before {
    background-color: rgba(0, 0, 0, 0.2); /* Overlay mais claro no hover */
  }
  
  .restaurant-option:hover ~ .logo {
    opacity: 0;
    transform: translate(-50%, -10%) scale(0);
  }
  .restaurant-option:hover ~ .title {
    transform: translateX(-50%) scale(0);
  }
  .restaurant-option:hover .content {
    .text {
      opacity: 1;
    }
  }
  
  .pedir-online-interno {
    text-align: center;
    background: #f8a01a;
    padding: 20px;
    display: block;
    width: auto;
    font-size: 30px;
    font-family: "Passion One", sans-serif;
    text-decoration: none;
    color: #0a2260;
    border-radius: 5px;
    margin: 0 0 1rem 2rem;
    transition: all 0.2s ease;
  
    &amp;:hover {
      background: #f8b41a;
      box-shadow:
        0px 3px 4px rgba(3, 7, 18, 0.05),
        0px 10px 15px rgba(3, 7, 18, 0.04),
        0px 23px 33px rgba(3, 7, 18, 0.08);
    }
  }
  
  /* Imagens de fundo especÃ­ficas (substitua pelos URLs reais ou use cores) */
  
  #option-a,
  #option-b {
    position: relative;
    background-size: cover;
  }
  #option-a {
    /* Exemplo com cor */
    background-color: #064179; /* Marrom para Restaurante A */
    background-image: url("../img/esquina-do-pao-de-queijo-riobranco.jpg");
  }
  #option-a::after,
  #option-b::after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  
  #option-b {
    /* Exemplo com cor */
    background-color: #ffea00; /* Azul aÃ§o para Restaurante B */
    background-image: url("../img/esquina-do-pao-de-queijo-vilaggio.png");
  }
  #option-a::after {
    background: #06437ce8;
  }
  #option-b::after {
    background: #ffea00e3;
  }
  
  /* --- Tela de Detalhes (Overlay) --- */
  #restaurant-details {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 100;
    transform: translateX(100%); /* ComeÃ§a fora da tela Ã&nbsp; direita por padrÃ£o */
    transition: transform 0.3s cubic-bezier(0.49, 0.08, 0.63, 0.96); /* TransiÃ§Ã£o suave com "elasticidade" */
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Permite scroll se o conteÃºdo for grande */
    /* Garante que esteja invisÃ­vel para eventos de ponteiro quando escondido */
    pointer-events: none;
    opacity: 0; /* ComeÃ§a invisÃ­vel para uma transiÃ§Ã£o mais suave */
    background: #064179;
  }
  
  /* Classes para controlar a direÃ§Ã£o da animaÃ§Ã£o e visibilidade */
  #restaurant-details.show-from-left,
  #restaurant-details.show-from-right {
    transform: translateX(0%);
    opacity: 1; /* Torna visÃ­vel */
    pointer-events: auto; /* Permite interaÃ§Ã£o */
  }
  
  /* Estados iniciais antes da animaÃ§Ã£o de entrada */
  #restaurant-details.initial-left {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
  }
  #restaurant-details.initial-right {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
  }
  
  /* Classes para animaÃ§Ã£o de saÃ­da */
  #restaurant-details.hide-to-left {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
  }
  
  #restaurant-details.hide-to-right {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
  }
  
  /* BotÃ£o de Voltar */
  .back-button {
    position: sticky;
    top: 15px;
    left: 15px;
    background: #ffea00;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 110;
    transition: background-color 0.2s ease;
    color: #064179;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
  }
  .back-button:hover {
    background-color: #ddd;
  }
  
  /* Container do ConteÃºdo dos Detalhes */
  .details-content {
    flex-grow: 1; /* Ocupa o espaÃ§o restante */
    background: url(../img/bg-body.jpg) center center repeat;
    position: relative;
    top: -28px;

    header {
      background: #064179;
      position: sticky;
      top: 0;
      z-index: 10;
    }
  
    footer {
      background: #064179;
      color: #fff;
      font-size: 14px;
      padding: 15px 0;
      font-family: "Open Sans", sans-serif;
    }
  
    .container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .tabs &gt; .tab-button,
    .tabs &gt; .tab-link {
      background: unset;
      display: flex;
      flex-direction: column;
      height: fit-content;
      border: 0;
      text-align: left;
      font-family: "Passion One", sans-serif;
      font-size: 18px;
      color: #fff;
      text-transform: uppercase;
      padding: 40px 25px;
  
      span {
        color: #ffea00;
        font-size: 30px;
        display: block;
      }
    }
  }
  
  /* Abas (Tabs) */
  .tabs {
    display: flex;
    align-items: center;
  }
  
  .tab-button,
  .tab-link {
    padding: 15px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    transition:
      background-color 0.3s ease,
      border-color 0.3s ease;
    border-radius: 4px;
  }
  
  .tab-button:hover,
  .tab-link:hover,
  .tab-button.active,
  .tab-link.active {
    background: #0b63b7 !important;
  }
  
  .infos {
    display: flex;
    align-items: center;
  
    span {
      font-family: "Passion One", sans-serif;
      text-align: right;
      display: block;
      color: #ffea00;
      font-size: 37px;
      line-height: 28px;
      padding: 16px 100px 16px 20px;
      background: #0b63b7 url(../img/icone-delivery-header.png) center right
        no-repeat;
      position: relative;
      height: 84px;
      align-items: center;
      display: flex;
      border-radius: 4px;
  
      &amp;::before {
        content: url(../img/icone-delivery-header.png);
        position: absolute;
        top: 0;
        right: 0;
        width: 64px;
        height: 76px;
        background: #ffea00;
        padding: 4px 10px;
      }
    }
  }
  /* ConteÃºdo das Abas */
  .tab-content {
    display: none; /* Escondido por padrÃ£o */
    /* AnimaÃ§Ã£o de fade com pequeno delay e preenchimento */
    opacity: 0; /* ComeÃ§a invisÃ­vel para o fade in */
    /* max-width: 1200px; */
    width: 100%;
    margin: 0 auto;
  }
  
  .tab-content.active {
    display: block; /* Mostra o conteÃºdo da aba ativa */
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    } /* Leve subida */
    to {
      opacity: 1;
    }
  }
  
  /* rows cols  */
  .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-8 {
    flex: 0 0 auto;
    width: 66.67777777%;
  }
  .col-4,
  .col-8 {
    padding: 12px;
  }
  
  /* personz */
  .logo {
    cursor: pointer;

    &amp;.active {
      background: unset !important;
    }

    img { 
      width: 160px;
    }
  }
  .nome-unidade {
    color: #064179;
    text-align: center;
    display: block;
    padding: 10px;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    font-weight: 300;
    overflow: hidden;

    &amp;::before {
      content: " ";
      width: 105%;
      height: 114%;
      position: absolute;
      top: -5px;
      left: 50%;
      background: #fff;
      z-index: -1;
      border-radius: 4px;
      transform: translateX(-50%);
    }
  
    span {
      font-weight: 700;
    }
  }
  
  .flex-direction-column {
    flex-direction: column;
  }
  
  .title-historia {
    color: #064179;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 900;
  }
  .image-historia {
    width: 92%;
    padding: 6px;
    border: 1px solid #f1f1f1;
  }
  .image-lightbox {
    width: 100%;
    border: 1px solid #f1f1f1;
    padding: 5px;
  }
  
  .gap20 {
    gap: 20px;
  }
  
  /* Estilos especÃ­ficos para home, histÃ³ria e cardÃ¡pio */
  #home-content {
    padding: 4rem 0 0 0;
    .container {
      flex-direction: column;
    }
  
    h1 {
      text-align: center;
      font-size: 120px;
      display: block;
      color: #d1af19;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 118px;
  
      span {
        color: #064179;
        font-size: 48px;
        line-height: 48px;
        text-transform: uppercase;
        display: block;
      }
    }
  }
  
  #history-content,
  #menu-content {
    .hero-text {
      background: url(../img/bg-header-interna.jpg) center top no-repeat;
      background-attachment: fixed;
      padding: 80px 0px;
      font-size: 50px;
      color: #fff;
      text-transform: uppercase;
      line-height: 72px;
      text-align: center;
      font-weight: 900;
      margin: 0;
    }
  }
  
  #history-content h2,
  #menu-content h2 {
    color: #064179;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 900;
    width: 100%;
  }
  #history-content {
    .container {
      padding: 2rem 0;
    }
    p {
      font-size: 17px;
      color: #666;
      line-height: 26px;
      margin: 12px 0;
    }
  
    .col-8 {
      display: flex;
      flex-direction: column;
      align-self: flex-start;
    }
  
    ul {
      padding-left: 20px;
  
      li {
        font-size: 17px;
        color: #666;
        line-height: 26px;
        margin: 12px 0;
        font-family: "Open Sans", sans-serif;
      }
    }
  }
  #menu-content {
    .container {
      align-items: flex-start;
    }
    .show-fixed {
      position: sticky;
      top: 230px;
      display: flex;
      flex-direction: column;
      margin: 10px 0;
      .hours {
        background: rgb(11, 99, 183);
        color: #fff;
        padding: 2rem 2rem 0 2rem;
        margin-left: 2rem;
        text-align: center;
        border-radius: 5px;
        font-family: "Open Sans", sans-serif;
        strong {
          display: block;
          color: #ffea00;
          font-weight: 900;
          font-size: 44px;
        }
      }
  
      .icon-delivery {
        background: #ffea00;
        padding: 24px;
        margin: 0 -32px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        position: relative;
        top: 5px;
      }
    }
  }
  
  #menu-content ul {
    list-style: none;
  }
  
  #menu-content li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    color: #444;
  }
  #menu-content li:last-child {
    border-bottom: none;
  }
  #menu-content .item-name {
    font-weight: bold;
  }
  #menu-content .item-price {
    color: #007bff;
    font-weight: bold;
  }
  
  #text-unidade {
    text-align: center;
    background: #f8a01a;
    padding: 20px;
    display: block;
    width: auto;
    font-size: 30px;
    font-family: "Passion One", sans-serif;
    text-decoration: none;
    color: #0a2260;
    border-radius: 5px;
    margin: 1rem 0 0 2rem;
  }
  
  /* Estilos a-side cardapio */
  #menu-content .list-hours {
    margin: 1rem 0 2rem 0;
  
    li {
      color: #fff;
      border: 0;
      border-bottom: 1px solid #ffffff2b;
      padding: 6px 0;
    }
  }
  
  /* Modal Lightbox */
  
  /* The Modal (background) */
  .modal {
    display: block;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000000f5;
    transition: all 0.3s ease;
  }
  
  .closed {
    opacity: 0;
    z-index: 0;
  }
  
  .opened {
    opacity: 1;
    z-index: 999;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .mySlides {
    display: none;
  }
  
  .cursor {
    cursor: pointer;
  }
  
  /* Next &amp; previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  img {
    margin-bottom: -4px;
  }
  
  .caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
  }
  
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow:
      0 4px 8px 0 rgba(0, 0, 0, 0.2),
      0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  .closed {
    opacity: 0;
    z-index: 0;
  }
  
  .opened {
    opacity: 1;
    z-index: 999;
  }
  
  .gallery &gt; div {
    cursor: pointer;
  }
  
  .categories {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 0 4rem 0;
  
    .texto {
      padding: 40px 50px;
      position: relative;
      top: -20px;
    }
    &gt; div {
      text-align: center;
      padding: 12px;
      position: relative;
      opacity: 1;
      transition: all 0.2s ease;
  
      h2 {
        font-size: 30px;
        color: #fff;
        text-transform: uppercase;
        margin-top: 10px;
      }
      span {
        font-size: 18px;
        color: #fff;
        font-weight: 300;
        display: block;
        margin: 0 auto;
        width: 80%;
        font-family: "Open sans", sans-serif;
      }
  
      img {
        transition: all 0.4s ease;
        position: relative;
        z-index: 3;
      }
      &amp;:hover {
        cursor: pointer;
        transform: scale(1.1);
  
        img {
          transform: scale(1.1);
        }
        &amp;::before {
          bottom: 32px;
        }
      }
    }
  
    .lanches {
      &amp;::before {
        content: url(../img/bacon-blocos-home.png);
        position: absolute;
        bottom: 10px;
        right: 0px;
        z-index: 3;
        transition: all 0.2s ease;
      }
      .texto {
        background: url(../img/bg-texto-lanches.png) center center no-repeat;
        background-size: 100% 100%;
      }
    }
    .paodequeijo {
      .texto {
        background: url(../img/bg-texto-pao-de-queijo.png) center center
          no-repeat;
        background-size: 100% 100%;
      }
    }
    .sucos {
      .texto {
        background: url(../img/bg-texto-sucos.png) center center no-repeat;
        background-size: 100% 100%;
      }
  
      &amp;::before {
        content: url(../img/morango-blocos-home.png);
        position: absolute;
        bottom: 0px;
        left: 20px;
        z-index: 3;
        transition: all 0.2s ease;
      }
    }
  }

  /* SESSÃƒO QUEM SOMOS NA HOME */
  .quem-somos-home{
    margin: 2rem 0;
  }

  #quem-somos-home .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  #quem-somos-home .desde {
    background-image: url("../img/bg-quem-somos-desde-home.jpg");
    width: 50%;
  } 

  #quem-somos-home .desde img {
    float: right;
    margin: 90px 0px;
    margin-right: 30px;
  }

  #quem-somos-home .texto {
    background: url("../img/bg-quem-somos-texto-home.jpg") right center no-repeat;
    background-attachment: fixed;
    width: 50%;
    padding: 2rem;
    align-items: center;
    display: flex;
  }

  #quem-somos-home .texto .left {
    width: 530px;
}

#quem-somos-home .texto h3 {
  color: #d1af19;
  font-size: 72px;
  line-height: 72px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

#quem-somos-home .texto h4 {
  font-family: 'Open sans', sans-serif;
  color: #143c5d;
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 10px;
  font-weight: 300;
}

#quem-somos-home .texto p {
  margin-bottom: 30px;
}

#quem-somos-home .texto .btn {
  display: inline-block;
  background: #e25f17;
  font-family: 'Open sans', sans-serif;
  font-weight: 300;
  padding: 20px;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  user-select: none;
  border: 1px solid transparent;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  text-transform: uppercase;
}

.btn-more {
  display: inline-block;
  background: #e25f17;
  font-family: 'Open sans', sans-serif;
  font-weight: 300;
  padding: 20px;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  user-select: none;
  border: 1px solid transparent;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  text-transform: uppercase;
}
  .title-text {
    
    position: relative;

    h2 {
      background: #064179;
      color: #fff;
      border-radius: 4px;
      font-family: 'Passion One', sans-serif;
      text-transform: uppercase;
      font-weight: normal;
      padding: 12px 24px;
      z-index: 2;
      margin: 20px 0;
    }

    &amp;::before {
      
      content: " ";
      width: 100%;
      height: 1px;
      background: #dedede;
      position: absolute;
      top: 50%;
      left: 0;
      z-index: 1;
    }

  }

  .citation {
    font-size: 55px;
    line-height: 65px;
    font-weight: 400;
    text-align: center;
    font-style: italic;
    font-family: "Open sans", sans-serif;
    color: #666;
    position: relative;

    &amp;::before,
    &amp;::after {
      position: absolute;
      content: '"';
      font-size: 120px;
      color: #ac9116;
      font-family: 'Passion One', sans-serif;
      line-height: 70px;
    }

    &amp;::before {
      left: 0;
      top: -50px;
      transform: rotate(180deg);
    }
    &amp;::after {
      right: 0;
      top: 0;
    }
  }

.centered {
    flex-direction: column;
    margin-bottom: 1rem !important;
    font-weight: 300;
}

  /* Responsividade */


/* responsividade especifica do header */
@media (max-width: 1100px) {
   
    .details-content {
      .container + .container {
        align-items: flex-end;

        .logo {
          margin-right: 3rem;
        }
      }

      .tabs &gt; .tab-button,
      .tabs &gt; .tab-link {
        padding: 30px 25px;
      }
    }
    .infos {
      position: absolute;
      left: 214px;
      transform: scale(0.7);
      top: 29px;
    }

    header .tabs {
      width: 100%;
    }

    .categories {
      div {
        img {
          width: 100%;
        }
      }
    }
}
.buttons-mobile {
  display: none;
}
/* responsivo total */
/* --- Estilos Mobile (Tablet e Celular) --- */
@media (max-width: 768px) {
  
    
    html,
    body {
      overflow-x: hidden;
    }
  
    body.menu-mobile-opened {
      overflow: hidden !important;
    }
    .categories {
      div {
        img {
          width: auto;
        }
      }
    }
   
    .buttons-mobile {
      display: flex;
      position: sticky;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background: #ffffffd1;
      z-index: 120;
      gap: 5px;
      padding: 5px;

      a {
        width: 50%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        background: #064179;
        color: #fff;
        border-radius: 4px;
        padding: 11px 0;
      }
      a+a {
        background: #e25f17;
        text-transform: uppercase;
      }
    }

    #quem-somos-home .row { 
      margin: 0 auto;
    }
    #quem-somos-home .desde,
    #quem-somos-home .texto {
      width: 100%;

      h3 {
        font-size: 45px;
      }

      h4 {
        font-size: 30px;
        line-height: 30px;
      }

      .btn { 
        font-size: 14px !important;
        width: auto;
      }
    }
    #quem-somos-home .desde {
      
      display: flex;
      align-items: center;
      padding: 3rem;
      background-position: center center;
      
      img {
        margin: 0;
        width: 100%;
        float: unset;
      }
    }

     /* Overlay escuro sobre a imagem de fundo */
    .restaurant-option::before {
      content: unset!important;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.4); /* Overlay escuro */
      z-index: 1;
      transition: background-color 0.3s ease;
    }
    .title-text {
      align-items: flex-start !important;

    }
    
    .citation {
      font-size: 35px;
      line-height: 35px;
      
      &amp;::after,
      &amp;::before {
        font-size: 70px;
      }
      
      &amp;::before {
        top: -50px;
      }

      &amp;::after {
        top: unset;
        bottom: -50px;
      }
    }  
    
    #restaurant-select {
      flex-direction: column;
      z-index: 10;

      .logo-mobile-choose { 
        display: none;
      }
    }
    .restaurant-option .content {
        .logo,
        .text {
            opacity: 1;
        }
    }
    .restaurant-option {
      font-size: 1.5rem; /* Texto menor em telas pequenas */
    }
  
    /* No mobile, remove o efeito de hover que encolhe o outro lado */
    #restaurant-select:hover .restaurant-option:not(:hover) {
      flex: 1;
      filter: brightness(1);
    }
    #restaurant-select .restaurant-option:hover {
      flex: 1;
      filter: brightness(1);
    }
    #restaurant-select .restaurant-option:active {
      /* Efeito de toque no mobile */
      filter: brightness(0.8);
    }
    #restaurant-select .restaurant-option:active::before {
      background-color: rgba(0, 0, 0, 0.5);
    }
    .pedir-online-interno {
      display: none;
    }
    .image-historia {
      width: 100%;
      padding: 0;
    }
    /* toggle menu mobile */
    /* mobile menu toggle button */
    .menu-toggle {
      position: absolute;
      display: inline-block;
      width: 40px;
      height: 30px;
      margin: 25px;
      top: 35%;
      right: 0;
      z-index: 9999;
    }
    .menu-toggle span {
      margin: 0 auto;
      position: relative;
      top: 12px;
      transition-duration: 0s;
      transition-delay: .2s;
      transition: background-color 0.3s;
    }
    .menu-toggle span:before, .menu-toggle span:after {
      position: absolute;
      content: '';
    }
    .menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
      width: 40px;
      height: 6px;
      background-color: #c3d6e5;
      display: block;
      opacity: 1;
      border-radius: 2px;
    }
    .menu-toggle span:before {
      margin-top: -12px;
      transition-property: margin, transform;
      transition-duration: .2s;
      transition-delay: .2s, 0;  
    }
    .menu-toggle span:after {
      margin-top: 12px;
      transition-property: margin, transform;
      transition-duration: .2s;
      transition-delay: .2s, 0;  
    }

    .menu-toggle-active span {
      background-color: rgba(0,0,0,0);
      transition: 0.3s background-color;
    }
    .menu-toggle-active span:before {
      margin-top: 0;
      transform: rotate(45deg);
      transition-delay: 0, .2s;
    }
    .menu-toggle-active span:after {
      margin-top: 0;
      transform: rotate(-45deg);
      transition-delay: 0, .2s;
    }




    .tab-button {
      font-size: 0.9rem;
      padding: 12px 5px; /* Menos padding nas abas */
    }
    .tab-button,
    .tab-link { 
      text-align: right !important;
    }
    .details-content {
      padding: 50px 15px 15px 15px;
    }
    .back-button {
      top: 8px;
      left: 10px;
      font-size: 12px;
      z-index: 3030;
    }
    .container-home {
      .logo {
        top: 20%;
        transform: translate(-50%, -20%) scale(0.8);
      }
  
      .title {
        top: 50%;
        padding: 45px;
        transform: translate(-50%, -50%);
        left: 50%;
        bottom: unset;
        width: 80%;
        text-align: center;
  
        h1 {
          font-size: 24px;
        }
      }
    }
  
    .restaurant-option {
      flex: 1;
      width: 100%;
      min-height: 30vh;
      font-size: 1.2rem;
    }
  
    .restaurant-option h1 {
      font-size: 30px;
      line-height: 24px;
    }
  
    .restaurant-option h1 span {
      font-size: 16px;
    }
  
    .tabs {
      flex-direction: column;
      background: #064179;
      position: absolute;
      height: calc(100vh - 65px);
      width: 100% !important;
      top: 0;
      z-index: -1;
      padding-top: 11rem;
      transition: all .2s ease;
      right: -100%;

     &amp;.open {
      right: 0;
     }

    
    }
  
    .tab-button,
    .tab-link {
      width: 100%;
      padding: 12px;
      font-size: 30px !important;
     
      span {
        font-size: 45px !important;
      }
    }
  
    .details-content {
      padding: 0;
      overflow-x: clip;

      header {
        text-align: center;
        position: sticky;
        width: 100%;
        top: 0;
        z-index: 999;

        .logo {
          text-align: left !important;
          margin: 0 !important;

          img {
            width: 110px;
            
          }
        }
      }

      footer {
        .logo-footer {
          margin: 1rem 0;
        }
      }
      

      .container {
        flex-direction: column;
        overflow: hidden;
        align-items: center !important;
      }

     

      .infos {
        flex-direction: column;
        align-items: center;
        display: none;

        span {
          padding: 16px 20px;
          font-size: 24px;
          height: auto;
          text-align: center;
          margin-top: 1rem;
          &amp;::before {
            display: none;
          }
        }
      }
    }
    #menu-list {
      padding: 12px;
      li img {
          width: 100%;
      }
    }
    .row {
      flex-direction: column;
    }
  
    .col-4,
    .col-8 {
      width: 100%;
      padding: 12px;
    }
  
    #home-content {
      padding: 2rem 0 0 0;
  
      h1 {
        font-size: 60px;
        line-height: 60px;
  
        span {
          font-size: 24px;
          line-height: 24px;
        }
      }
    }
  
    #history-content,
    #menu-content {
      .hero-text {
        font-size: 30px;
        line-height: 40px;
        padding: 60px 20px;
      }
    }
  
    #history-content {
      .container {
        padding: 2rem 1rem;
      }
  
      p,
      ul li {
        font-size: 16px;
        line-height: 24px;
      }
    }
  
    #menu-content {
      .container {
        flex-direction: column;
      }
  
      .show-fixed {
        position: relative;
        top: 0;
        margin: 2rem 0 0 0;
        width: 100%;
      }
  
      .hours {
        margin-left: unset !important;
        padding: 1rem;

        strong {
          font-size: 30px;
        }
      }
  
      .icon-delivery {
        margin: 1rem 0 0 0;
        padding: 1rem;
      }
    }
  
    .categories {
      flex-direction: row;
      padding: 0 0 2rem 0;
      overflow-x: auto;
  
      &gt; div {
        width: 100%;
        padding: 1rem;
  
        h2 {
          font-size: 24px;
        }
  
        span {
          font-size: 16px;
        }
      }
  
      .lanches::before,
      .sucos::before {
        bottom: 10px;
      }
    }
    .nome-unidade {
      font-size: 12px;
      padding: 10px;
      margin: 0 0 0 auto;

      &amp;::before {
        height: 100%;
            width: 1000%;
            top: 1px;
      }
    }
    .pedir-online-interno,
    #text-unidade {
      font-size: 24px;
      margin: 1rem auto;
    }
    footer .container span {
      text-align: center;
      font-size: 14px;
      font-weight: 300;
    }

     .btn-more {
      font-size: 14px !important;
    }
  }</pre></body></html>