@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --accent: #FF4D31;
  --accent-dark: #E03E25;
  --accent-light: #FF6B4A;
  --dark: #0D0D0D;
  --dark-2: #171717;
  --text: #171717;
  --muted: #6B6B6B;
  --line: #E8E8E8;
  --white: #fff;
  --soft: #F8F8F8;
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }

/* ==================== NAV / HERO ==================== */
.tx-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: #0D0D0D;
}
.tx-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tx-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.75) 42%,
    rgba(8, 8, 8, 0.35) 100%
  );
}

/* ===== NAV PADRÃO (fundo branco) ===== */
.tx-nav {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1240px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 1000;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: visible !important;
}

/* Quando a página é interna (sem hero de vídeo) */
.tx-nav.tx-nav--inner,
.tx-nav.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  max-width: none;
  width: 100%;
  padding: 12px max(24px, calc((100% - 1240px) / 2));
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: visible !important;
}

/* LOGO */
.tx-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.tx-brand img {
  width: 195px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.tx-brand:hover img {
  transform: scale(1.03);
}

.tx-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}
.tx-nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.tx-nav__links a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.tx-nav__links a:hover {
  color: var(--accent);
}
.tx-nav__links a:hover:after {
  width: 100%;
}

.tx-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: visible !important;
  position: relative;
  z-index: 1001;
}

.tx-login {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  padding: 10px 14px;
  transition: color 0.2s;
}
.tx-login:hover {
  color: var(--accent);
}

.tx-register,
.tx-btn--accent {
  background: var(--accent);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.tx-register {
  padding: 11px 18px;
  font-size: 14px;
}
.tx-register:hover,
.tx-btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 49, 0.35);
}

/* ===== USUÁRIO LOGADO + DROPDOWN ===== */
.tx-nav .dropdown {
  position: relative;
  z-index: 1050;
}

.tx-user {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #f5f5f5;
  border-radius: 40px;
  padding: 5px 14px 5px 5px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  cursor: pointer;
}
.tx-user:hover {
  background: #eeeeee;
}
.tx-user img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

/* Dropdown do usuário — z-index alto para não sumir */
.tx-nav .dropdown-menu,
.tx-user-menu {
  z-index: 1055 !important;
  margin-top: 8px !important;
  border: 0;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  min-width: 220px;
  background: #fff;
}

.tx-user-menu .dropdown-item {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}
.tx-user-menu .dropdown-item:hover {
  background: #f8f8f8;
  color: var(--accent);
}
.tx-user-menu .dropdown-item.text-danger:hover {
  background: #fff5f5;
  color: #dc2626;
}

.tx-menu {
  display: none;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  font-size: 22px;
  padding: 6px;
  cursor: pointer;
}

/* Hero content */
.tx-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 200px 24px 140px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.tx-hero__copy {
  max-width: 680px;
}
.tx-kicker,
.tx-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.tx-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  max-width: 740px;
  margin-bottom: 20px;
  font-weight: 800;
}
.tx-hero__copy p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}
.tx-hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-weight: 700;
  font-size: 15px;
}
.tx-btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.tx-btn--ghost:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.tx-btn--dark {
  background: var(--dark);
  color: #fff;
}
.tx-btn--dark:hover {
  background: #222;
  transform: translateY(-2px);
}
.tx-hero__stat {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(255, 77, 49, 0.4);
  flex: none;
}
.tx-hero__stat strong {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}
.tx-hero__stat span {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 6px;
  opacity: 0.95;
}
.tx-hero__bottom {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px max(24px, calc((100% - 1240px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
.tx-hero__bottom span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.tx-hero__bottom i {
  color: var(--accent);
  margin-right: 8px;
}

/* ==================== BOOKING ==================== */
.tx-booking-wrap {
  max-width: 1080px;
  margin: -48px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 20px;
}
.tx-booking {
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr auto;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
}
.tx-booking__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
.tx-booking__field > i {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.tx-booking__field small {
  display: block;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
}
.tx-booking__field input {
  border: 0;
  outline: 0;
  width: 100%;
  color: #222;
  background: transparent;
  font-size: 15px;
}
.tx-booking > .tx-btn {
  margin: 10px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 8px;
  white-space: nowrap;
}
.tx-booking > .tx-btn:hover {
  background: var(--accent-dark);
}

/* ==================== GENERIC ==================== */
.tx-section {
  max-width: 1240px;
  margin: auto;
  padding: 100px 24px;
}
.tx-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 40px;
}
.tx-section__head > div {
  max-width: 680px;
}
.tx-section__head h2,
.tx-overview h2,
.tx-facility h2,
.tx-cta h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 800;
}
.tx-section__head > p {
  max-width: 400px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.tx-eyebrow {
  color: var(--accent);
  margin-bottom: 12px;
}
.tx-section__head--center {
  justify-content: center;
  text-align: center;
}
.tx-text-link {
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  transition: color 0.2s;
}
.tx-text-link:hover {
  color: var(--accent);
}
.tx-text-link i {
  color: var(--accent);
  margin-left: 6px;
}

/* ==================== SPACES ==================== */
.tx-space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tx-space-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tx-space-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.tx-space-card--featured {
  border-top: 4px solid var(--accent);
}
.tx-space-card__image {
  height: 230px;
  overflow: hidden;
}
.tx-space-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tx-space-card:hover img {
  transform: scale(1.05);
}
.tx-space-card__body {
  padding: 22px;
}
.tx-space-card__body > span,
.tx-event div > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--accent);
  text-transform: uppercase;
}
.tx-space-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  margin: 8px 0 10px;
  font-weight: 700;
}
.tx-space-card p {
  color: var(--muted);
  line-height: 1.6;
  min-height: 70px;
  font-size: 14px;
}
.tx-space-card__body > div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.tx-space-card strong {
  font-size: 17px;
  font-weight: 800;
}
.tx-space-card a {
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  transition: color 0.2s;
}
.tx-space-card a:hover {
  color: var(--accent);
}
.tx-space-card a i {
  color: var(--accent);
  margin-left: 4px;
}

/* ==================== FACILITY ==================== */
.tx-facility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  color: #fff;
}
.tx-facility__image {
  min-height: 600px;
}
.tx-facility__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tx-facility__content {
  padding: 80px clamp(28px, 5vw, 80px);
  align-self: center;
}
.tx-facility h2 {
  max-width: 520px;
}
.tx-facility__content > p {
  max-width: 520px;
  color: #A0A0A0;
  line-height: 1.75;
  margin: 18px 0 32px;
  font-size: 15px;
}
.tx-facility .tx-eyebrow {
  color: var(--accent);
}
.tx-facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.tx-facility-grid div {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 10px;
}
.tx-facility-grid i {
  grid-row: span 2;
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
}
.tx-facility-grid b {
  font-size: 14px;
  font-weight: 700;
}
.tx-facility-grid span {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}

/* ==================== OVERVIEW ==================== */
.tx-overview {
  max-width: 1240px;
  margin: auto;
  padding: 110px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.tx-overview__content > p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.8;
  margin: 20px 0 28px;
  font-size: 15px;
}
.tx-overview__visual {
  position: relative;
}
.tx-overview__visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}
.tx-overview__badge {
  position: absolute;
  left: -24px;
  bottom: 28px;
  background: var(--accent);
  padding: 20px 26px;
  color: #fff;
  min-width: 170px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(255, 77, 49, 0.35);
}
.tx-overview__badge strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
}
.tx-overview__badge span {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.95;
}

/* ==================== FEATURES ==================== */
.tx-features {
  background: var(--soft);
  padding: 90px 24px;
}
.tx-feature-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #E0E0E0;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  overflow: hidden;
}
.tx-feature {
  background: var(--soft);
  padding: 32px 28px;
  min-height: 200px;
  transition: background 0.25s;
}
.tx-feature:hover {
  background: #fff;
}
.tx-feature i {
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 20px;
}
.tx-feature h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}
.tx-feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ==================== NUMBERS ==================== */
.tx-numbers {
  background: var(--accent);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px max(24px, calc((100% - 1240px) / 2));
  gap: 24px;
}
.tx-numbers div {
  text-align: center;
  color: #fff;
}
.tx-numbers strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
}
.tx-numbers span {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
}

/* ==================== EVENTS ==================== */
.tx-event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tx-event {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tx-event:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.tx-event > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.tx-event > div {
  padding: 22px;
}
.tx-event h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  margin: 6px 0 8px;
  font-weight: 700;
}
.tx-event p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  min-height: 65px;
}
.tx-event strong {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
}
.tx-event a {
  float: right;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.2s;
}
.tx-event a:hover {
  color: var(--accent);
}
.tx-event a i {
  color: var(--accent);
  margin-left: 4px;
}

/* ==================== CTA ==================== */
.tx-cta {
  max-width: 1180px;
  margin: 20px auto 100px;
  padding: 60px 65px;
  background: var(--dark);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  border-radius: 12px;
}
.tx-cta h2 {
  max-width: 600px;
}
.tx-cta p {
  color: #A0A0A0;
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.7;
  font-size: 15px;
}
.tx-cta .tx-eyebrow {
  color: var(--accent);
}

/* ==================== FOOTER ==================== */
.tx-footer {
  background: #0A0A0A;
  color: #fff;
}
.tx-footer__grid {
  max-width: 1240px;
  margin: auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
}
.tx-brand--footer img {
  width: 180px;
  max-height: 62px;
}
.tx-footer p,
.tx-footer a,
.tx-footer span {
  display: block;
  color: #888;
  font-size: 14px;
  line-height: 1.7;
}
.tx-footer p {
  max-width: 300px;
  margin-top: 18px;
}
.tx-footer h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
}
.tx-footer__grid > div:not(:first-child) a {
  margin-bottom: 8px;
  transition: color 0.2s;
}
.tx-footer__grid > div:not(:first-child) a:hover {
  color: var(--accent);
}
.tx-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.tx-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #2A2A2A;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.tx-socials a:hover {
  border-color: var(--accent);
  background: rgba(255, 77, 49, 0.1);
}
.tx-socials i {
  color: var(--accent);
}
.tx-footer__bar {
  border-top: 1px solid #1A1A1A;
  padding: 18px 24px;
  text-align: center;
  color: #666;
  font-size: 12px;
}

/* ==================== BOTTOM NAV MOBILE ==================== */
.tx-bottom-nav {
  display: none;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 1100px) {
  .tx-nav__links { gap: 16px; }
  .tx-hero__stat { width: 170px; height: 170px; }
  .tx-hero__stat strong { font-size: 34px; }
  .tx-space-grid,
  .tx-event-grid { grid-template-columns: repeat(2, 1fr); }
  .tx-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tx-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 900px) {
  .tx-nav {
    padding: max(8px, env(safe-area-inset-top)) 14px 8px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: visible !important;
  }
  .tx-nav.tx-nav--inner,
  .tx-nav.is-scrolled {
    padding: max(8px, env(safe-area-inset-top)) 14px 8px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  }

  .tx-brand img {
    width: 130px;
    max-height: 40px;
  }

  .tx-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    color: #1a1a1a;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .tx-menu:hover,
  .tx-menu:focus {
    background: #f5f5f5;
  }

  .tx-nav__links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(58px + env(safe-area-inset-top));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0,0,0,0.06);
    z-index: 30;
  }
  .tx-nav__links.is-open {
    display: flex;
    animation: menuSlide 0.25s ease;
  }
  @keyframes menuSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .tx-nav__links a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .tx-nav__links a:last-child {
    border-bottom: none;
  }
  .tx-nav__links a:hover {
    background: #f8f8f8;
    color: var(--accent);
  }
  .tx-nav__links a:after {
    display: none;
  }

  .tx-nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    overflow: visible !important;
  }
  .tx-login {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    padding: 8px 14px;
    border: 1.5px solid #1a1a1a;
    border-radius: 6px;
    background: transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  .tx-login:hover {
    background: #1a1a1a;
    color: #fff;
  }
  .tx-register {
    padding: 8px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .tx-user {
    padding: 4px 10px 4px 4px;
  }
  .tx-user span {
    display: none;
  }
  .tx-user img {
    width: 36px;
    height: 36px;
  }

  .tx-user-menu {
    min-width: 240px;
    padding: 10px;
    margin-top: 8px !important;
  }
  .tx-user-menu .dropdown-item {
    padding: 13px 14px;
    font-size: 15px;
  }

  .tx-hero__content {
    padding: 120px 20px 110px;
    min-height: 90vh;
  }
  .tx-hero__stat {
    display: none;
  }
  .tx-booking {
    grid-template-columns: 1fr 1fr;
  }
  .tx-booking > .tx-btn {
    grid-column: 1 / -1;
  }
  .tx-booking__field:nth-child(2) {
    border-right: 0;
  }
  .tx-facility {
    grid-template-columns: 1fr;
  }
  .tx-facility__image {
    min-height: 380px;
  }
  .tx-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tx-overview__visual {
    max-width: 100%;
  }
  .tx-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .tx-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 72px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
    z-index: 100;
    padding: 10px 8px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-around;
  }
  .tx-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
    height: 100%;
    color: #888;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    border-radius: 12px;
    padding: 6px 4px;
  }
  .tx-bottom-nav__item i {
    font-size: 22px;
    transition: transform 0.2s ease;
  }
  .tx-bottom-nav__item span {
    line-height: 1;
  }
  .tx-bottom-nav__item:hover,
  .tx-bottom-nav__item.active {
    color: var(--accent);
  }
  .tx-bottom-nav__item.active i {
    transform: scale(1.12);
  }

  body {
    padding-bottom: 95px;
  }
  .tx-footer {
    margin-bottom: 20px;
  }
}

@media (max-width: 650px) {
  .tx-brand img {
    width: 118px;
    max-height: 36px;
  }
  .tx-login {
    padding: 7px 12px;
    font-size: 12.5px;
  }
  .tx-register {
    padding: 7px 12px;
    font-size: 12.5px;
  }
  .tx-nav {
    padding: max(6px, env(safe-area-inset-top)) 12px 6px;
  }
  .tx-nav.tx-nav--inner,
  .tx-nav.is-scrolled {
    padding: max(6px, env(safe-area-inset-top)) 12px 6px;
  }
  .tx-hero {
    min-height: 85vh;
  }
  .tx-hero__content {
    padding: 105px 16px 90px;
  }
  .tx-hero h1 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }
  .tx-hero__copy p {
    font-size: 15px;
  }
  .tx-hero__bottom {
    padding: 12px 16px;
    gap: 10px;
  }
  .tx-hero__bottom span {
    font-size: 11px;
  }
  .tx-booking-wrap {
    margin-top: -30px;
  }
  .tx-booking {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }
  .tx-booking__field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
  }
  .tx-booking__field:last-of-type {
    border-bottom: 0;
  }
  .tx-section {
    padding: 70px 18px;
  }
  .tx-section__head {
    display: block;
  }
  .tx-section__head > p {
    margin-top: 16px;
  }
  .tx-space-grid,
  .tx-event-grid,
  .tx-feature-grid {
    grid-template-columns: 1fr;
  }
  .tx-space-card__image {
    height: 200px;
  }
  .tx-facility__content {
    padding: 50px 22px;
  }
  .tx-facility-grid {
    grid-template-columns: 1fr;
  }
  .tx-overview {
    padding: 70px 18px;
  }
  .tx-overview__visual img {
    height: 320px;
  }
  .tx-overview__badge {
    left: 12px;
    bottom: 12px;
    padding: 16px 20px;
  }
  .tx-numbers {
    grid-template-columns: 1fr 1fr;
    padding: 40px 18px;
  }
  .tx-numbers strong {
    font-size: 32px;
  }
  .tx-cta {
    margin: 0 16px 70px;
    padding: 40px 22px;
    display: block;
    border-radius: 10px;
  }
  .tx-cta .tx-btn {
    margin-top: 22px;
    width: 100%;
  }
  .tx-footer__grid {
    grid-template-columns: 1fr;
    padding: 50px 18px;
    gap: 32px;
  }
  .tx-brand--footer img {
    width: 140px;
  }
  .tx-nav__actions {
    margin-left: auto;
  }
}

@media (max-width: 400px) {
  .tx-hero h1 {
    font-size: 30px;
  }
  .tx-hero__buttons .tx-btn {
    width: 100%;
  }
  .tx-brand img {
    width: 108px;
    max-height: 34px;
  }
  .tx-login {
    padding: 6px 10px;
    font-size: 12px;
  }
  .tx-register {
    padding: 6px 10px;
    font-size: 12px;
  }
  .tx-nav {
    padding: max(5px, env(safe-area-inset-top)) 10px 5px;
  }
}