.ti__main {
  overflow-x: none !important;
}

.ti__apresentacao__section {
  background: var(--rest-fundo);
  color: var(--rest-branco);
  font-family: var(--font-texto)
}

.ti__apresentacao__banner {
  position: relative;
  isolation: isolate;
  min-height: 95svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ti__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.02)
}

.ti__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .65));
  backdrop-filter: saturate(120%) blur(0.5px);
  z-index: -1
}

.ti__apresentacao__content {
  width: 100%;
  max-width: 1200px;
  padding: clamp(16px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2.5vw, 20px);
  text-align: left
}

.ti__apresentacao__subtitulo {
  margin: 0;
  font-family: var(--font-josefin);
  font-weight: 500;
  letter-spacing: .6px;
  color: var(--rest-branco);
  font-size: 1.5rem;
  text-transform: uppercase
}

.ti-name {
  margin: 0;
  font-family: var(--font-destaque);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: .4px;
  font-size: 5rem
}

.ti__actions {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 44px
}

.ti__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 30px;
  width: 320px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-destaque);
  font-weight: 600;
  transition: transform .3s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
  box-shadow: var(--rest-sombra);
  user-select: none
}

.ti__btn:focus-visible {
  outline: 2px solid var(--rest-secundaria);
  outline-offset: 2px
}

.ti__bnt__cardapio {
  background: linear-gradient(90deg, var(--rest-primaria), var(--rest-hover));
  color: var(--rest-branco)
}

.ti__bnt__cardapio:hover,
.ti__bnt__reserva:hover {
  transform: scale(1.02)
}

.ti__bnt__reserva {
  background: var(--rest-preto);
  color: var(--rest-branco)
}

.ti__apresentacao__mais {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  transition: transform .2s ease, background .2s ease
}

.ti__apresentacao__mais p {
  margin: 0;
  font-family: var(--font-destaque);
  font-size: 12px;
  letter-spacing: .4px;
  color: var(--rest-branco)
}

.ti__apresentacao__mais i {
  font-size: 16px;
  line-height: 1
}

.ti__apresentacao__mais:hover {
  transform: translateX(-50%) translateY(-2px)
}

.ti__apresentacao__mais:focus-visible {
  outline: 2px solid var(--rest-secundaria);
  outline-offset: 3px
}

@keyframes ti-bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(4px)
  }
}

.ti__apresentacao__mais i {
  animation: ti-bounce 1.2s infinite ease-in-out
}

.ti__apresentacao__bar {
  display: flex;
  width: 100%;
  height: 10px;
  line-height: 0;
  border-radius: 0 0 calc(var(--rest-radius) + 8px) calc(var(--rest-radius) + 8px);
}

.ti__apresentacao__bar .bar {
  flex: 1 1 25%;
  height: 100%;
}

.ti__apresentacao__bar .red1 {
  background: var(--rest-principal, #6b0400);
}

.ti__apresentacao__bar .red2 {
  background: var(--rest-primaria, #D84315);
}

.ti__apresentacao__bar .red3 {
  background: var(--rest-hover, #FF7043);
}

.ti__apresentacao__bar .red4 {
  background: var(--rest-erro, #E53935);
}

/* Section SOBRE */
.ti__restaurante__sobre {
  padding: clamp(24px, 5vw, 72px) clamp(16px, 4vw, 44px);
  background: var(--rest-principal);
  color: var(--rest-branco);
  min-height: 80svh;
}

.ti__sobre__grid {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: clamp(16px, 4vw, 48px);
  align-items: center;
  padding: 20px;
}

.ti__restaurante__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 50%;
  background: var(--rest-card);
  border: 1px solid var(--rest-borda);
  box-shadow: var(--rest-sombra);
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.ti__sobre__textos {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 14px);
  max-width: 80ch;
}

.ti__sobre__titulo {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--rest-branco);
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.1;
}

.ti__sobre__descricao {
  margin: 0;
  font-family: var(--font-texto);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--rest-branco);
  text-wrap: pretty;
  hyphens: auto;
}

.ti__sobre__textos a {
  color: var(--rest-primaria);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.ti__sobre__textos a:hover {
  color: var(--rest-hover);
  text-decoration-color: var(--rest-hover);
}

/* Section Informação */
.ti__informacoes {
  width: 100%;
  min-height: 70svh;
  padding: clamp(16px, 4vw, 32px) 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--rest-fundo);
  color: var(--rest-texto);
}

.ti__info__wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.ti__info__titulo {
  margin: 0 0 16px;
  font-family: var(--font-josefin);
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--rest-principal);
  text-align: center;
}

.ti__info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.5vw, 24px);
}

.ti__card {
  background: var(--rest-card);
  border: 1px solid var(--rest-borda);
  border-radius: var(--rest-radius);
  padding: clamp(14px, 2.4vw, 20px);
  box-shadow: var(--rest-sombra);
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ti__card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rest-primaria)
}

.ti__card__head h3 {
  margin: 0;
  font-family: var(--font-destaque);
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--rest-texto)
}

.ti__info__texto {
  margin: 0;
  color: var(--rest-subtexto);
  font-family: var(--font-texto);
  line-height: 1.7
}

.ti__mini-mapa {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: calc(var(--rest-radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--rest-borda);
  box-shadow: var(--rest-sombra);
  background: #f6f6f6;
}

.ti__mini-mapa iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ti__mini-mapa__overlay {
  position: absolute;
  inset: 0;
  text-indent: -9999px;
}

.ti__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-family: var(--font-destaque);
  width: max-content
}

.ti__status.is-open {
  background: rgba(76, 175, 80, .12);
  color: var(--rest-destaque);
  border: 1px solid rgba(76, 175, 80, .3)
}

.ti__status.is-closed {
  background: rgba(229, 57, 53, .1);
  color: var(--rest-erro);
  border: 1px solid rgba(229, 57, 53, .3)
}

.ti__horario__lista {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px
}

.ti__horario__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--rest-borda);
  padding: 6px 0
}

.ti__horario__item .dia {
  font-family: var(--font-destaque);
  color: var(--rest-texto)
}

.ti__horario__item .hora {
  color: var(--rest-texto)
}

.ti__horario__item .fechado {
  color: var(--rest-erro)
}

.ti__card--contato {
  gap: 16px
}

.ti__contato__ctas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.ti__btn__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: calc(var(--rest-radius) + 2px);
  font-family: var(--font-destaque);
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, border-color .2s ease
}

.ti__btn--whats {
  background: var(--rest-destaque);
  color: var(--rest-branco)
}

.ti__btn--whats:hover {
  filter: brightness(1.05);
  transform: translateY(-1px)
}

.ti__btn--ghost {
  background: transparent;
  border-color: var(--rest-borda);
  color: var(--rest-texto)
}

.ti__btn--ghost:hover {
  border-color: var(--rest-primaria);
  transform: translateY(-1px)
}

.ti__contato__lista {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ti__fone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px dashed var(--rest-borda);
  border-radius: calc(var(--rest-radius) - 2px);
  padding: 8px 10px
}

.ti__fone__link {
  font-family: var(--font-texto);
  color: var(--rest-texto);
  text-decoration: none
}

.ti__fone__link:hover {
  text-decoration: underline
}

.ti__btn__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  border: 1px solid var(--rest-borda);
  background: var(--rest-card);
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, border-color .2s ease
}

.ti__btn__copy:hover {
  border-color: var(--rest-primaria);
  transform: translateY(-1px)
}

/* Section Unidades*/
.ti__unidades {
  min-height: 80svh;
  /* ocupa pelo menos 80% da viewport */
  display: flex;
  /* permite centralizar o conteúdo */
  align-items: center;
  /* centraliza verticalmente */
  padding: clamp(16px, 4vw, 32px) 20px;
  background: var(--rest-fundo);
  color: var(--rest-texto);
}

/* Garantir largura máxima e centralização do conteúdo interno */
.ti__unidades__wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* grade permanece igual; ajuste se quiser mais respiro */
.ti__unidades__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.5vw, 24px);
}

.ti__unidades__titulo {
  margin: 0 0 16px;
  font-family: var(--font-josefin);
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--rest-principal);
  text-align: center;
}

.ti__unidade {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(14px, 2.4vw, 20px);
  background: var(--rest-card);
  border: 1px solid var(--rest-borda);
  border-radius: var(--rest-radius);
  box-shadow: var(--rest-sombra);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ti__unidade:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  border-color: color-mix(in oklab, var(--rest-borda) 55%, var(--rest-primaria));
}

.ti__unidade__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ti__unidade__nome {
  margin: 0;
  font-family: var(--font-destaque);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--rest-texto);
}

.ti__unidade__cidade {
  margin-left: auto;
  font-family: var(--font-texto);
  font-size: 14px;
  color: var(--rest-subtexto);
}

.ti__unidade__end {
  margin: 0;
  font-family: var(--font-texto);
  color: var(--rest-subtexto);
  line-height: 1.6;
}

.ti__unidade__mapa {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: calc(var(--rest-radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--rest-borda);
  box-shadow: var(--rest-sombra);
  background: #f6f6f6;
}

.ti__unidade__mapa iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ti__mapa__overlay {
  position: absolute;
  inset: 0;
  text-indent: -9999px;
}

.ti__mapa__overlay:focus-visible {
  outline: 2px solid var(--rest-secundaria);
  outline-offset: 2px;
}

.ti__vazio {
  grid-column: 1/-1;
  margin: 0;
  font-family: var(--font-texto);
  color: var(--rest-subtexto);
}

.ti__unidade__head svg {
  color: var(--rest-primaria);
  width: 22px;
  height: 22px;
  transition: transform .18s ease, color .18s ease;
}

.select-option.is-selected {
  background: var(--rest-secundaria);
  font-weight: 600;
}

.select-option:active {
  transform: scale(.995);
}


/* Overlay */
.modal-unidade {
  padding: 24px;
  background: rgba(0,0,0,.38);      
  backdrop-filter: blur(2px);        
  z-index: 9999;
}


/* Caixa do modal */
.modal-unidade .modal-content {
  width: min(640px, 94vw);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--rest-card);
  color: var(--rest-texto);
  border: 1px solid var(--rest-borda);
  border-radius: var(--rest-radius);
  padding: 18px;
  overflow: hidden;
  transform: translateY(8px);
  animation: modalIn .18s ease-out both;
}

@keyframes modalIn {
  from { opacity: .96; transform: translateY(14px); }
  to   { opacity: 1;   transform: translateY(0); }
}

/* Título */
.modal-unidade h2 {
  margin: 2px 0 6px;
  font-family: var(--font-josefin);
  font-size: clamp(1.1rem, 2.3vw, 1.35rem);
  line-height: 1.25;
  color: var(--rest-preto);
  letter-spacing: .2px;
}

/* Lista */
.unidade-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
  display: grid;
  gap: 10px;
}

/* Item */
.unidade-item {
  border: 1px solid var(--rest-borda);
  border-radius: calc(var(--rest-radius) - 4px);
  background: var(--rest-branco);
  padding: 12px 14px;
  transition: background-color .15s ease, border-color .15s ease;
  cursor: pointer;
}
.unidade-item strong {
  font-family: var(--font-destaque);
  color: var(--rest-texto);
}

/* Hover/Focus com realce discreto usando a cor primária do projeto */
.unidade-item:hover,
.unidade-item:focus-within {
  background: rgba(216, 67, 21, .06); /* ~ var(--rest-primaria) suave */
  border-color: var(--rest-primaria);
}

/* Bloco do mapa */
.mapa-pequeno {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rest-borda);
}
.mapa-pequeno iframe {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
  pointer-events: none;
}
.mapa-pequeno:hover iframe {
  pointer-events: auto; /* permite interação se o usuário quiser */
}

/* Botão fechar (ghost) */
#modal-close {
  align-self: flex-end;
  appearance: none;
  border: 1px solid var(--rest-primaria);
  background: transparent;
  color: var(--rest-primaria);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font-texto);
  font-weight: 600;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
#modal-close:hover {
  background: var(--rest-primaria);
  color: var(--rest-branco);
}

/* Responsividade */
@media (max-width: 520px) {
  .modal-unidade .modal-content { padding: 14px; }
  .unidade-item { padding: 10px 12px; }
  .mapa-pequeno iframe { height: 130px; }
}

/* Acessibilidade: reduz animações se o usuário preferir */
@media (prefers-reduced-motion: reduce) {
  .modal-unidade .modal-content { animation: none; }
  .unidade-item,
  #modal-close { transition: none; }
}

/* Scrollbar discreta (WebKit) */
.unidade-list::-webkit-scrollbar { width: 10px; }
.unidade-list::-webkit-scrollbar-track { background: transparent; }
.unidade-list::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.14);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}