html {
  scroll-behavior: smooth; }

.menu {
  background-color: black; }
  .menu > div {
    background-color: white;
    display: block;
    width: 100%;
    margin: 0px auto;
    max-width: 500px; }
    .menu > div img {
      width: 100%;
      height: auto;
      display: block; }

#lang {
  background-color: black;
  color: white;
  padding: 4px; }
  #lang a {
    font-size: 16px;
    text-decoration: underline; }
  #lang img {
    width: 36px;
    padding: 2px;
    margin-right: 4px;
    display: inline-block;
    vertical-align: middle; }

.transition, #index .sucursales a.sucursal, #categories, #nav-bar a {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }

body {
  color: white;
  background-color: black;
  font-family: 'Lato', sans-serif; }

h1 {
  font-size: 22px;
  font-family: 'Cako', serif;
  text-transform: uppercase; }

.page > div {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 530px;
  padding: 16px;
  margin: 0px auto; }

#index {
  background-color: black;
  color: white; }
  #index > div {
    padding-top: 60px;
    padding-bottom: 40px; }
  #index .logo {
    width: 60%;
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0px auto; }
  #index .sucursales {
    padding: 16px; }
    #index .sucursales .titulo {
      display: block;
      font-size: 14px;
      text-align: center;
      padding-top: 10px; }
    #index .sucursales a.sucursal {
      text-decoration: underline;
      color: white !important;
      text-align: center;
      font-family: 'Cako', serif;
      text-transform: uppercase;
      font-size: 22px;
      display: block;
      padding: 10px 18px;
      margin: 14px 8px;
      border-radius: 12px; }
      #index .sucursales a.sucursal:hover, #index .sucursales a.sucursal:active {
        background-color: #262626; }

a#instagram {
  position: absolute;
  top: 11px;
  right: 14px;
  display: block; }
  a#instagram img {
    width: 26px;
    height: auto;
    display: block; }

#categories {
  z-index: 1000;
  display: block;
  width: 85vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  padding: 20px;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.95);
  font-family: 'Cako', serif; }
  #categories img.cross {
    position: absolute;
    display: block;
    top: 8px;
    right: 26px;
    width: 25px;
    height: auto; }
  #categories img {
    width: 100%;
    max-width: 100px;
    height: auto;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px; }
  #categories a {
    display: block; }
  #categories a.main {
    font-size: 26px;
    color: white;
    text-transform: uppercase;
    padding: 10px 0px; }
    #categories a.main span {
      text-decoration: none !important;
      padding-left: 14px; }
      #categories a.main span img {
        width: 20px;
        height: auto;
        display: inline;
        transform: translateY(8px); }
  #categories a.sub {
    font-size: 22px;
    color: #0062ab !important;
    text-transform: capitalize;
    padding: 4px 0px;
    padding-left: 16px; }
  #categories a:hover, #categories a:active {
    text-decoration: underline; }

#categories-button {
  z-index: 900; }
  #categories-button img {
    position: fixed;
    display: block;
    top: 15px;
    right: 15px;
    width: 45px;
    height: auto; }

#nav-bar {
  background-color: black;
  padding: 6px; }
  #nav-bar div {
    display: block;
    width: 100%; }
  #nav-bar a {
    background-color: #262626;
    color: white;
    display: inline-block;
    text-align: center;
    padding: 6px 0px;
    border-radius: 4px;
    margin: 1%;
    width: 31%;
    font-size: 16px; }
    #nav-bar a:hover, #nav-bar a:active, #nav-bar a.selected {
      background-color: #0062ab; }

#go-up {
  position: fixed;
  bottom: 8px;
  left: 10px;
  width: 64px; }
  #go-up img {
    width: 100%;
    display: block;
    height: auto; }

#banner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; }
  #banner-overlay.hidden {
    display: none; }
  #banner-overlay .banner-container {
    position: relative;
    max-width: 80%;
    margin: 0 1rem;
    box-sizing: border-box; }
  #banner-overlay .banner-image {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 90vh;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); }
  #banner-overlay .banner-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer; }
    #banner-overlay .banner-close img {
      width: 100%;
      height: auto;
      display: block; }
  #banner-overlay .banner-cta-container {
    text-align: center;
    margin-top: 1rem; }
  #banner-overlay .banner-cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0062ab;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s; }
    #banner-overlay .banner-cta-button:hover {
      background: #01184a; }
