/* ═══════════════════════════════════════════════════════
   PULSECOSTA.ES — Sistema de diseño completo
   Fuentes: Syne (display) + DM Sans (body) + JetBrains Mono (datos)
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500;700&family=JetBrains+Mono:wght@400;700&display=swap');

/* ── Variables ─────────────────────────────────────── */
:root {
  --navy:        #0A192F;
  --navy-2:      #112240;
  --navy-3:      #1A3A5C;
  --card:        #0D2137;

  --orange:      #FF8C00;
  --orange-2:    #FF6B00;
  --orange-dim:  rgba(255,140,0,.12);
  --orange-glow: 0 0 40px rgba(255,140,0,.35);

  --green:       #43E97B;
  --teal:        #38BDF8;
  --purple:      #A78BFA;
  --gold:        #C9A227;
  --red:         #FF4757;

  --white:       #E8F0FE;
  --gray:        #8892B0;
  --gray-2:      #CCD6F6;

  --f-display: 'Syne', sans-serif;
  --f-body:    'DM Sans', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --transition: 0.2s ease;
  --shadow-card: 0 8px 40px rgba(0,0,0,.3);
  --shadow-glow: 0 0 40px rgba(255,140,0,.25);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--f-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--f-body); }

/* ── Animaciones ────────────────────────────────────── */
@keyframes soundwave {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.4); opacity: .5; }
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,140,0,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,140,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,140,0,0); }
}
@keyframes livepulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(67,233,123,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(67,233,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,233,123,0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Logo ───────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}
.logo-bars span {
  width: 4px;
  background: var(--orange);
  border-radius: 3px;
  animation: soundwave 1.4s ease-in-out infinite;
}
.logo-text {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
}
.logo-text em  { color: var(--orange); font-style: normal; }
.logo-text sup { font-size: .45em; color: var(--gray); vertical-align: super; }

/* ── Live dot ───────────────────────────────────────── */
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: livepulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
.live-dot.green { background: var(--green); animation: livepulse-green 1.8s ease-out infinite; }

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,25,47,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 clamp(16px, 4vw, 60px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar.scrolled { border-bottom-color: rgba(255,140,0,.12); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 7px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-2);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff !important;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .82rem !important;
  letter-spacing: .05em;
  padding: 9px 18px !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 50px rgba(255,140,0,.45) !important; background: rgba(255,255,255,0) !important; }

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(10,25,47,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px clamp(16px,4vw,60px) 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  animation: fadeUp .2s ease;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-2);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-mobile .nav-cta {
  margin-top: 8px;
  text-align: center;
  font-size: .9rem !important;
  padding: 12px 20px !important;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Botones ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  padding: 14px 28px;
  font-size: .92rem;
  box-shadow: 0 0 28px rgba(255,140,0,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid rgba(255,140,0,.5);
  padding: 13px 26px;
  font-size: .9rem;
}
.btn-secondary:hover { background: var(--orange-dim); border-color: var(--orange); }

.btn-ghost {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--gray-2);
  padding: 12px 22px;
  font-size: .88rem;
}
.btn-ghost:hover { background: rgba(255,255,255,.09); color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 18px; font-size: .8rem; border-radius: var(--radius-sm); }
.btn-full { width: 100%; }

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: rgba(255,140,0,.2); transform: translateY(-3px); }
.card-glow:hover { box-shadow: var(--shadow-glow); }

/* ── Badges / Pills ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge-free     { background: rgba(255,255,255,.07); color: var(--gray); border: 1px solid rgba(255,255,255,.1); }
.badge-explorer { background: rgba(56,189,248,.12);  color: var(--teal); border: 1px solid rgba(56,189,248,.2); }
.badge-vip      { background: rgba(201,162,39,.15);  color: var(--gold); border: 1px solid rgba(201,162,39,.25); }
.badge-pro      { background: rgba(67,233,123,.1);   color: var(--green); border: 1px solid rgba(67,233,123,.2); }
.badge-hotel    { background: rgba(167,139,250,.12); color: var(--purple); border: 1px solid rgba(167,139,250,.2); }
.badge-popular  { background: var(--orange); color: #fff; }

/* ── Sección genérica ────────────────────────────────── */
.section {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}
.section-title em { color: var(--orange); font-style: normal; }
.section-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}
.section-tag {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--orange);
}

/* ── Grid helpers ────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Divider ─────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  margin: 0 clamp(16px, 5vw, 80px);
}

/* ── Footer ─────────────────────────────────────────── */
footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 5vw, 80px) 32px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: .88rem;
  color: var(--gray);
  margin: 16px 0 20px;
  max-width: 260px;
  line-height: 1.65;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gray);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--orange-dim); color: var(--orange); border-color: rgba(255,140,0,.3); }
.footer-col h4 {
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: .88rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Cookie Banner ───────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100vw - 32px));
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp .4s ease;
}
#cookie-banner p { font-size: .86rem; color: var(--gray); flex: 1; min-width: 220px; }
#cookie-banner p a { color: var(--orange); }
#cookie-banner p a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-banner.hidden { display: none; }

/* ── Hero genérico ───────────────────────────────────── */
.page-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,140,0,.07) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 100%, rgba(56,189,248,.05) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 20px;
}
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero .subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── Formulario genérico ─────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-2);
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--f-body);
  font-size: .92rem;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,146,176,.5); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(255,140,0,.5); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy-2); }

/* ── Tabla de precios ────────────────────────────────── */
.pricing-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 40px;
  padding: 4px;
  margin-bottom: 40px;
}
.pricing-toggle button {
  padding: 9px 22px;
  border: none;
  background: transparent;
  color: var(--gray);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .85rem;
  border-radius: 36px;
  transition: all var(--transition);
  cursor: pointer;
}
.pricing-toggle button.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,140,0,.3);
}

.plan-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured {
  border-color: rgba(255,140,0,.4);
  background: linear-gradient(160deg, rgba(255,140,0,.06), var(--card));
}
.plan-card .plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-price {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.plan-price span { font-size: .9rem; color: var(--gray); font-weight: 500; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li {
  font-size: .88rem;
  color: var(--gray-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-features li.no::before { content: '–'; color: var(--gray); }

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-q .faq-icon {
  width: 24px; height: 24px;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gray);
  transition: transform var(--transition), border-color var(--transition);
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); border-color: var(--orange); color: var(--orange); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ── Scroll reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utils ───────────────────────────────────────────── */
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-gray   { color: var(--gray); }
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.font-mono { font-family: var(--f-mono); }
.hidden { display: none !important; }

/* ══════════════════════════════════════════════════════
   SELECTOR DE IDIOMA
══════════════════════════════════════════════════════ */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  cursor: pointer;
  font-size: .8rem;
  font-family: var(--f-mono);
  font-weight: 700;
  color: var(--gray-2);
  letter-spacing: .06em;
  transition: all .18s;
  white-space: nowrap;
  user-select: none;
}
.lang-current:hover { border-color: rgba(255,140,0,.3); color: var(--orange); }
.lang-current .lang-chevron {
  font-size: .65rem;
  transition: transform .2s;
  opacity: .6;
}
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 6px;
  min-width: 130px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  z-index: 2000;
  display: none;
  animation: fadeUp .15s ease;
}
.lang-switcher.open .lang-dropdown { display: block; }

.lang-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .84rem;
  color: var(--gray);
  transition: background .15s, color .15s;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: var(--f-body);
}
.lang-opt:hover { background: rgba(255,255,255,.06); color: var(--white); }
.lang-opt.active { color: var(--orange); font-weight: 700; }
.lang-opt .lang-flag { font-size: 1rem; }
.lang-opt .lang-name { flex: 1; }
.lang-opt .lang-check { color: var(--orange); font-size: .8rem; margin-left: auto; }

/* Mobile lang row */
.nav-mobile .lang-mobile-row {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  flex-wrap: wrap;
}
.lang-mobile-btn {
  padding: 7px 14px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 8px;
  color: var(--gray);
  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  letter-spacing: .04em;
}
.lang-mobile-btn.active,
.lang-mobile-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}
