@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --panel: rgba(12, 12, 12, 0.86);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f1ea;
  --muted: rgba(245, 241, 234, 0.76);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --safe-top: max(1.25rem, env(safe-area-inset-top));
}

* {
  box-sizing: border-box;
}

a,
button,
input,
label,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(211, 177, 122, 0.16), transparent 26%),
    linear-gradient(180deg, #131313 0%, #080808 42%, #050505 100%);
  color: var(--text);
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", sans-serif;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.page-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  height: calc(var(--safe-top) + 3.2rem);
  padding: var(--safe-top) 1rem 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.32));
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.brand-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  font-size: clamp(0.64rem, 2.45vw, 0.76rem);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.top-links-right {
  margin-left: auto;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  flex: 0 0 auto;
  height: 1.65rem;
  padding: 0 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.language-flag {
  width: 1.05rem;
  height: 0.7rem;
  display: block;
  border-radius: 0.12rem;
  object-fit: cover;
}

.language-code {
  font-size: 0.72em;
  font-weight: 700;
}

.info-shell {
  padding: 0 0 2rem;
}

.info-frame {
  width: 100%;
  min-height: calc(100vh - 4rem);
  padding: 1.2rem 1rem 2rem;
}

.info-frame-compact {
  display: grid;
  align-content: start;
}

.info-header {
  min-height: 8.5rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3.2rem 0 1rem;
}

.info-header h1 {
  margin: 0;
  font-size: clamp(1.9rem, 8vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  opacity: 0.92;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.44);
}

.info-copy {
  width: min(100%, 42rem);
  margin: 0 auto;
  padding: 1.3rem 1.15rem 1.45rem;
  border-radius: 1.5rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.info-copy-centered {
  text-align: center;
}

.info-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 5.2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  opacity: 0.9;
}

.info-copy p {
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.info-copy p:last-child {
  margin-bottom: 0;
}

.phone-card {
  display: grid;
  gap: 0.5rem;
  width: min(100%, 21rem);
  margin: 0.4rem auto 0;
  padding: 1.2rem 1rem 1.25rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.phone-card-label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone-card-number {
  font-size: clamp(1.35rem, 6vw, 1.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-social {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.contact-social-instagram {
  background: transparent;
}

.contact-social-tiktok {
  position: relative;
  background: #121212;
}

.contact-social-tiktok::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 32% 34%, rgba(37, 244, 238, 0.22), transparent 36%),
    radial-gradient(circle at 68% 68%, rgba(254, 44, 85, 0.24), transparent 34%);
}

.contact-social-icon {
  position: relative;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.contact-social-instagram .contact-social-icon {
  width: 100%;
  height: 100%;
}

.contact-social-tiktok .contact-social-icon {
  filter: invert(1);
}

.contact-meta {
  width: min(100%, 30rem);
  margin: 1.2rem auto 0;
}

.map-block {
  margin-top: 1.35rem;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.map-frame {
  width: 100%;
  height: 20rem;
  border: 0;
  display: block;
  background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
  .topbar {
    top: 1.25rem;
    left: 50%;
    right: auto;
    width: min(100%, 28rem);
    transform: translateX(-50%);
    gap: 0.95rem;
    height: 5.1rem;
    padding: 1.25rem 1.35rem 0;
    border-radius: 2rem 2rem 0 0;
    overflow: visible;
  }

  .brand-center {
    position: absolute;
    top: 3.35rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .brand-logo {
    width: 4.35rem;
    height: 4.35rem;
  }

  .top-links {
    gap: 0.7rem;
    font-size: 0.66rem;
    letter-spacing: 0.075em;
    white-space: nowrap;
    transform: translateY(0.28rem);
  }

  .language-toggle {
    height: 1.8rem;
    padding: 0 0.55rem;
    transform: translateY(0.28rem);
  }

  .info-shell {
    padding: 1.25rem 0;
  }

  .info-frame {
    width: min(100%, 28rem);
    min-height: calc(100vh - 2.5rem);
    margin: 0 auto 1.25rem;
    padding: 1rem 1.35rem 2rem;
    border-top: 0;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(0, 0, 0, 0.18);
  }

  .info-header {
    min-height: 8rem;
    padding: 1.25rem 0 0.9rem;
  }
}

@media (max-width: 480px) {
  .topbar {
    display: flex;
    justify-content: center;
    gap: 0;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .brand-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .top-links-left {
    position: absolute;
    top: 50%;
    left: 0.7rem;
    right: calc(50% + 1.9rem);
    display: flex;
    justify-content: center;
    transform: translateY(-50%);
    gap: 0.52rem;
    font-size: clamp(0.56rem, 2.45vw, 0.68rem);
    font-weight: 700;
    letter-spacing: 0.045em;
  }

  .top-links-right {
    position: absolute;
    top: 50%;
    left: calc(50% + 1.9rem);
    right: 4.35rem;
    display: flex;
    justify-content: center;
    transform: translateY(-50%);
    font-size: clamp(0.58rem, 2.5vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 0.045em;
  }

  .home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 4.6rem;
    line-height: 1.05;
    text-align: center;
  }

  .language-toggle {
    position: absolute;
    top: 50%;
    right: 0.7rem;
    width: 3.35rem;
    height: 1.55rem;
    padding: 0 0.32rem;
    transform: translateY(-50%);
    justify-content: center;
  }

  .info-copy {
    padding: 1.15rem 1rem 1.25rem;
  }

  .info-copy p {
    font-size: 0.94rem;
    line-height: 1.62;
  }
}
