.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
}

body {
  min-height: 100dvh;
}

.site-shell {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgb(19 127 236 / 0.12);
  flex-shrink: 0;
}

.site-logo__icon {
  font-size: 1.375rem;
  line-height: 1;
  color: #137fec;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.site-brand {
  text-decoration: none;
  color: inherit;
}

.site-brand:hover .site-logo {
  background: rgb(19 127 236 / 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(229 231 235 / 0.8);
  background: rgb(246 247 248 / 0.95);
  backdrop-filter: blur(8px);
}

.dark .site-header {
  border-color: rgb(31 41 55 / 0.8);
  background: rgb(16 25 34 / 0.95);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  width: 100%;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.nav-link {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  background: rgb(19 127 236 / 0.1);
  color: #137fec;
}

.nav-link--active {
  color: #137fec;
  font-weight: 600;
}

.lang-switch {
  display: inline-flex;
  margin-left: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgb(209 213 219);
  overflow: hidden;
}

.dark .lang-switch {
  border-color: rgb(55 65 81);
}

.lang-btn {
  padding: 0.375rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: transparent;
  color: rgb(107 114 128);
  transition: background 0.15s, color 0.15s;
}

.lang-btn:hover {
  background: rgb(243 244 246);
}

.dark .lang-btn:hover {
  background: rgb(31 41 55);
}

.lang-btn--active {
  background: #137fec;
  color: #fff;
}

.lang-btn--active:hover {
  background: #0f6fd4;
  color: #fff;
}

.btn-book {
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.25rem;
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  background: #137fec;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

.btn-book:hover {
  background: #0f6fd4;
}

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
}

.nav-mobile-toggle:hover {
  background: rgb(243 244 246);
}

.dark .nav-mobile-toggle:hover {
  background: rgb(31 41 55);
}

.nav-mobile-panel {
  display: none;
  border-bottom: 1px solid rgb(229 231 235);
  background: #fff;
}

.dark .nav-mobile-panel {
  border-color: rgb(31 41 55);
  background: rgb(17 24 39);
}

.nav-mobile-panel.open {
  display: block;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .nav-mobile-toggle {
    display: none;
  }
  .nav-mobile-panel {
    display: none !important;
  }
}

.page-main {
  flex: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

.card {
  border-radius: 0.75rem;
  border: 1px solid rgb(229 231 235);
  background: #fff;
}

.dark .card {
  border-color: rgb(31 41 55);
  background: rgb(17 24 39 / 0.6);
}

.text-muted {
  color: #617589;
}

.dark .text-muted {
  color: rgb(156 163 175);
}

.section-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
}

.flow-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-top: 1px solid rgb(229 231 235);
  background: #fff;
  padding: 1rem;
}

.dark .flow-bar {
  border-color: rgb(55 65 81);
  background: rgb(16 25 34);
}

.flow-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.whatsapp-fab {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
  transition: transform 0.15s;
}

.whatsapp-fab:hover {
  transform: scale(1.05);
}

body.has-flow-bar .whatsapp-fab {
  bottom: 5.5rem;
}

body.has-flow-bar footer {
  display: none;
}

.map-embed {
  width: 100%;
  height: 16rem;
  border: 0;
  display: block;
}

.map-embed--sm {
  height: 10rem;
}

@media (min-width: 768px) {
  .map-embed {
    height: 18rem;
  }
  .map-embed--sm {
    height: 11rem;
  }
}

.choice-btn {
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.choice-btn--active {
  border-width: 2px;
  border-color: #137fec;
  background: rgb(19 127 236 / 0.08);
  box-shadow: 0 0 0 1px rgb(19 127 236 / 0.2);
}

.choice-btn--active .choice-btn__icon {
  color: #137fec;
}

.choice-btn--active .choice-btn__label {
  color: #137fec;
}
