/* =====================================================
   DESCONTUR TURISMO – styles.css
   Paleta: Azul #1a5fa8, Azul Escuro #0d3d6e, Laranja #F5A623
   Tipografia: Playfair Display + Plus Jakarta Sans
   Manutenção: Edite variáveis no :root para novos clientes
   ===================================================== */

/* ─── CSS VARIABLES (edit for new clients) ─────────── */
:root {
  --brand-blue: #1a5fa8;
  --brand-blue-dark: #0d3d6e;
  --brand-blue-mid: #1e6fc0;
  --brand-orange: #f5a623;
  --brand-orange-dk: #d48c0f;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #eef1f7;
  --gray-200: #dde3ee;
  --gray-400: #9aa5be;
  --gray-600: #5a6882;
  --gray-800: #2c3550;
  --text-main: #1c2540;
  --text-muted: #5a6882;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(26, 95, 168, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 95, 168, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 95, 168, 0.18);

  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Monteserrat", system-ui, sans-serif;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 900px;
}

/* ─── RESET & BASE ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--gray-50);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
svg {
  display: block;
}
address {
  font-style: normal;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ─── UTILITY ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── SECTION HEADER ────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(245, 166, 35, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 900;
  color: var(--brand-blue-dark);
  line-height: 1.15;
  margin-bottom: 10px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0 auto;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 95, 168, 0.3);
}
.btn--primary:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 95, 168, 0.4);
}
.btn--outline {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}
.btn--outline:hover {
  background: var(--brand-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--brand-blue-dark) 0%,
    var(--brand-blue) 60%,
    #1e6fc0 100%
  );
  padding: 70px 20px 90px;
  overflow: hidden;
  text-align: center;
}

/* Watermark "S" */
.hero__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.hero__watermark svg {
  width: 80%;
  max-width: 600px;
}

/* Dotted flight paths */
.flight-path {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.flight-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.dotted-route {
  animation: dash-flow 12s linear infinite;
  stroke-dashoffset: 0;
}
.dotted-route-2 {
  animation: dash-flow 18s linear infinite reverse;
}
@keyframes dash-flow {
  to {
    stroke-dashoffset: -200;
  }
}
.plane {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.35;
  animation: plane-fly 14s linear infinite;
  color: white;
}
.plane--1 {
  top: 22%;
  animation-duration: 14s;
}
.plane--2 {
  top: 55%;
  animation-duration: 20s;
  animation-delay: -7s;
  font-size: 0.9rem;
}
@keyframes plane-fly {
  from {
    left: -5%;
  }
  to {
    left: 105%;
  }
}

/* Hero inner */
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__avatar-wrap {
  position: relative;
  display: inline-block;
}
.hero__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 3px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.hero__status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 3px solid var(--brand-blue);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(245, 166, 35, 0.15);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero__tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.9rem, 3vw, 1.05rem);
  max-width: 500px;
  padding-top: 5px;
  padding-bottom: 10px;
}
.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}
.stars {
  color: var(--brand-orange);
  font-size: 1rem;
  letter-spacing: 1px;
}
.rating__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-cue span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  position: relative;
}
.hero__scroll-cue span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scroll-bounce 0.1s ease-in-out infinite alternate;
}
@keyframes scroll-bounce {
  from {
    top: 6px;
    opacity: 1;
  }
  to {
    top: 18px;
    opacity: 0.3;
  }
}

/* ─── TAB NAV ───────────────────────────────────────── */
.tab-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26, 95, 168, 0.1);
  border-bottom: 1px solid var(--gray-200);
}
.tab-nav__inner {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--container-max);
  margin: 0 auto;
}
.tab-nav__inner::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  flex: 0 0 auto;
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-blue);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--brand-blue);
}
.tab-btn.active::after {
  transform: scaleX(1);
}

/* ─── TAB PANELS ────────────────────────────────────── */
.tab-content {
  min-height: 60vh;
}
.tab-panel {
  display: none;
  padding: 48px 0 64px;
  animation: fade-up 0.35s ease both;
}
.tab-panel.active {
  display: block;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── CONTACT CARDS ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 0 2px 2px 0;
}
.contact-card--whatsapp::before {
  background: #25d366;
}
.contact-card--instagram::before {
  background: linear-gradient(#f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.contact-card--facebook::before {
  background: #1877f2;
}
.contact-card--phone::before {
  background: var(--brand-blue);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card--whatsapp .contact-card__icon {
  background: #e8faf0;
  color: #25d366;
}
.contact-card--instagram .contact-card__icon {
  background: #fdf0f7;
  color: #e1306c;
}
.contact-card--facebook .contact-card__icon {
  background: #eef3ff;
  color: #1877f2;
}
.contact-card--phone .contact-card__icon {
  background: #e8f0fa;
  color: var(--brand-blue);
}

.contact-card__text {
  flex: 1;
}
.contact-card__text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}
.contact-card__text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.contact-card__arrow {
  font-size: 1.2rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.contact-card:hover .contact-card__arrow {
  color: var(--brand-blue);
  transform: translateX(3px);
}

/* vCard block */
.vcard-block {
  background: linear-gradient(
    135deg,
    var(--brand-blue-dark),
    var(--brand-blue)
  );
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.vcard-block::before {
  content: "✈";
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 6rem;
  opacity: 0.06;
  transform: rotate(-20deg);
  pointer-events: none;
}
.vcard-block__info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vcard-block__avatar {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcard-block__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.vcard-block__name {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.vcard-block__role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  display: block;
}

/* ─── SERVICES ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-card__icon--blue {
  background: #e8f0fa;
}
.service-card__icon--orange {
  background: rgba(245, 166, 35, 0.12);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card__tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ─── ABOUT ─────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.about-lead {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}
.value-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-card {
  background: linear-gradient(
    135deg,
    var(--brand-blue-dark),
    var(--brand-blue)
  );
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-card:nth-child(even) .stat-card__number {
  color: var(--brand-orange);
}
.stat-card__label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  font-weight: 500;
}

/* ─── REVIEWS ───────────────────────────────────────── */
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand-blue-dark);
  line-height: 1;
}
.reviews-stars {
  font-size: 1.3rem;
  color: var(--brand-orange);
  letter-spacing: 2px;
}
.reviews-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.google-logo {
  object-fit: contain;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-avatar--orange {
  background: var(--brand-orange);
}
.review-avatar--teal {
  background: #0891b2;
}
.review-avatar--green {
  background: #16a34a;
}
.review-avatar--pink {
  background: #db2777;
}
.review-avatar--purple {
  background: #7c3aed;
}

.review-card__header strong {
  font-size: 0.85rem;
  font-weight: 700;
  flex: 1;
}
.review-stars {
  font-size: 0.8rem;
  color: var(--brand-orange);
}
.review-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: auto;
}
.review-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.reviews-cta {
  text-align: center;
}

/* ─── LOCATION ──────────────────────────────────────── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: start;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.location-icon {
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.location-detail strong {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 4px;
}
.location-detail p,
.location-detail address {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.map-embed {
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-200);
  background: var(--gray-100);
  position: relative;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
}
.map-note {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0 12px;
  pointer-events: none;
}

/* ─── FLOATING WHATSAPP ─────────────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: float-btn 3s ease-in-out infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}
@keyframes float-btn {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--brand-blue-dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.78rem;
  position: relative;
  overflow: hidden;
}
.footer__inner {
  position: relative;
  z-index: 2;
}
.footer__inner strong {
  color: var(--white);
}
.footer__inner p {
  margin-bottom: 4px;
}
.footer__cadastur {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  margin-top: 6px;
}
.footer__watermark {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.2em;
}

/* ─── RESPONSIVE ────────────────────────────────────── */

/* Tablet */
@media (max-width: 768px) {
  .language-switcher {
    top: 16px;
    right: 16px;
    padding: 5px;
  }
  .language-switcher__btn {
    min-width: 34px;
    height: 32px;
    padding: 0 10px;
    font-size: 0.68rem;
  }
  .hero {
    padding: 56px 16px 76px;
  }
  .tab-btn {
    padding: 14px 16px;
    font-size: 0.78rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .location-layout {
    grid-template-columns: 1fr;
  }
  .map-embed {
    height: 280px;
    position: relative;
  }
  .map-embed iframe {
    position: static;
    height: 100%;
    width: 100%;
  }
  .map-note {
    position: static;
    margin-top: 6px;
  }

  .tab-nav__inner {
    justify-content: flex-start;
    max-width: 100%;
    padding: 0 12px;
    gap: 4px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.9rem;
  }
  .hero__avatar {
    width: 80px;
    height: 80px;
  }

  .vcard-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .vcard-block .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-card {
    padding: 14px 14px;
  }
  .contact-card__icon {
    width: 42px;
    height: 42px;
  }

  .section-title {
    font-size: 1.5rem;
  }
  .tab-panel {
    padding: 32px 0 48px;
  }

  .location-actions {
    flex-direction: column;
  }
  .location-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .reviews-aggregate {
    flex-direction: column;
    gap: 6px;
  }
  .stat-card__number {
    font-size: 1.6rem;
  }

  .footer__watermark {
    font-size: 3rem;
  }

  .tab-nav__inner {
    justify-content: flex-start;
    max-width: 100%;
    padding: 0 12px;
    gap: 4px;
  }
}

/* ─── LANGUAGE SWITCHER ─────────────────────────────── */
.language-switcher {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.language-switcher__btn {
  min-width: 38px;
  height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.language-switcher__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.language-switcher__btn.is-active {
  background: var(--white);
  color: var(--brand-blue-dark);
  box-shadow: 0 8px 18px rgba(13, 61, 110, 0.18);
}
.language-switcher__btn:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .language-switcher {
    top: 16px;
    right: 16px;
    padding: 5px;
  }
  .language-switcher__btn {
    min-width: 34px;
    height: 32px;
    padding: 0 10px;
    font-size: 0.68rem;
  }
}
