/* ============================================================
   MoviPlaya — home.css — Portada v2.0
   Fuentes: Syne (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ---- Variables ---- */
:root {
  --teal:      #008CA0;
  --teal-dk:   #005068;
  --teal-lt:   #E0F5F7;
  --marino:    #003C50;
  --naranja:   #F07800;
  --verde:     #2ECC71;
  --verde-dk:  #27AE60;
  --blanco:    #FFFFFF;
  --gris-50:   #F8FAFB;
  --gris-100:  #F0F4F5;
  --gris-200:  #DDE6E8;
  --gris-400:  #8AACB5;
  --gris-600:  #4A6572;
  --gris-800:  #1A2F36;
  --shadow:    0 4px 24px rgba(0,60,80,.10);
  --shadow-lg: 0 8px 40px rgba(0,60,80,.16);
  --r:         14px;
  --r-sm:      8px;
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   all .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gris-800);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   BANNER PUBLICITARIO ROTATIVO
   ============================================================ */
.ad-banner-strip {
  background: #000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  position: relative;
  z-index: 200;
  min-height: 102px;
}
.ad-rotator {
  position: relative;
  width: 728px;
  height: 90px;
  overflow: hidden;
  border-radius: 4px;
}
.ad-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}
.ad-rotator img.active { opacity: 1; }
.ad-placeholder-strip {
  width: 728px;
  height: 90px;
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  font-family: var(--font-body);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  gap: 8px;
  transition: background .3s ease, box-shadow .3s ease;
  background: transparent;
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 1120px;
}
.navbar.scrolled {
  background: rgba(0,28,38,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.navbar.at-top {
  background: transparent;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.nav-logo img { height: 50px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--blanco);
  letter-spacing: -.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blanco); background: rgba(255,255,255,.1); }
.nav-links a.active { color: var(--blanco); background: rgba(0,140,160,.4); }

/* Lang dropdown */
.lang-dropdown {
  position: relative;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  white-space: nowrap;
}
.lang-trigger:hover { background: rgba(255,255,255,.1); color: var(--blanco); }
.lang-trigger svg { width: 14px; height: 14px; transition: transform .2s; }
.lang-dropdown.open .lang-trigger svg { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--marino);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  overflow: hidden;
  min-width: 130px;
  box-shadow: var(--shadow-lg);
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.lang-menu button:hover { background: rgba(255,255,255,.08); color: var(--blanco); }
.lang-menu button.active { color: var(--teal); font-weight: 600; }
.lang-flag { font-size: 16px; }

/* Hamburger móvil */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--blanco);
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,28,38,.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a, .nav-mobile-menu button.lang-opt {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: 14px 24px;
  border-radius: var(--r);
  transition: var(--transition);
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  display: block;
}
.nav-mobile-menu a:hover, .nav-mobile-menu button.lang-opt:hover { color: var(--blanco); background: rgba(255,255,255,.05); }
.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--blanco);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
}
.lang-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 8px auto;
}
.lang-label-mobile {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-body);
  padding: 4px 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero-playa.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,28,38,.72) 0%,
    rgba(0,60,80,.55) 50%,
    rgba(0,140,160,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 70px;
  max-width: 760px;
  animation: heroIn .9s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroIn {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--blanco);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-subtitle {
  font-size: clamp(.85rem, 1.8vw, 1rem);
  color: rgba(255,255,255,.72);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Buscador */
.hero-search {
  background: rgba(255,255,255,.97);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.hero-search-icon {
  color: var(--gris-400);
  flex-shrink: 0;
  margin-right: 10px;
}
.hero-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gris-800);
  outline: none;
  min-width: 0;
}
.hero-search input::placeholder { color: var(--gris-400); }
.hero-search-btn {
  background: var(--verde);
  color: var(--blanco);
  border: none;
  border-radius: 40px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-search-btn:hover { background: var(--verde-dk); transform: scale(1.03); }

/* Autocomplete */
.autocomplete-box {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--blanco);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
}
.autocomplete-box.open { display: block; }
.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--gris-100);
  font-size: 14px;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: var(--teal-lt); }
.autocomplete-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.autocomplete-name { font-weight: 600; color: var(--gris-800); }
.autocomplete-sub { font-size: 12px; color: var(--gris-400); }
.autocomplete-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--teal-lt);
  color: var(--teal-dk);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */
.section {
  padding: 80px 20px;
}
.section-sm { padding: 48px 20px; }
.container {
  max-width: 1120px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--marino);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gris-600);
  margin-top: 10px;
  line-height: 1.6;
  max-width: 520px;
}

/* ============================================================
   SECCIÓN RUTAS
   ============================================================ */
.routes-section { background: var(--gris-50); }

.route-group-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--marino);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.route-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gris-200);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.route-card {
  background: var(--blanco);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--color, var(--teal));
  border-radius: 4px 0 0 4px;
  transition: width .2s;
}
.route-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gris-200);
}
.route-card:hover::before { width: 6px; }

.rc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.rc-code {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color, var(--teal));
  background: color-mix(in srgb, var(--color, var(--teal)) 10%, white);
  padding: 3px 10px;
  border-radius: 20px;
}
.rc-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 10px;
}
.rc-badge.urbana  { background: #E0F5F7; color: #005068; }
.rc-badge.foranea { background: #FFF3E0; color: #7A3600; }

.rc-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--marino);
  margin-bottom: 6px;
  line-height: 1.3;
}
.rc-colonias {
  font-size: 12px;
  color: var(--gris-400);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.rc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rc-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gris-600);
  font-weight: 500;
}
.rc-meta-item svg { width: 13px; height: 13px; color: var(--teal); flex-shrink: 0; }

.rc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.route-card:hover .rc-link { gap: 8px; }

/* ============================================================
   BANNERS CENTRALES
   ============================================================ */
.ad-central-section {
  background: var(--gris-100);
  padding: 40px 20px;
}
.ad-central-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ad-central-box {
  width: 300px;
  height: 250px;
  background: #000;
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.ad-central-box .ad-rotator {
  width: 300px;
  height: 250px;
  border-radius: 0;
}
.ad-central-placeholder {
  width: 300px;
  height: 250px;
  border: 2px dashed var(--gris-200);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gris-400);
  font-size: 13px;
  text-align: center;
}

/* ============================================================
   SECCIÓN CÓMO FUNCIONA
   ============================================================ */
.how-section { background: var(--blanco); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) {
  .how-grid { grid-template-columns: 1fr; gap: 14px; }
}
.how-card {
  background: var(--gris-50);
  border-radius: var(--r);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1.5px solid var(--gris-100);
  text-decoration: none;
  display: block;
  color: inherit;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-lt);
}
.how-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--gris-100);
  position: absolute;
  right: 16px;
  top: 12px;
  line-height: 1;
  transition: var(--transition);
}
.how-card:hover .how-num { color: var(--teal-lt); }
.how-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.how-card:hover .how-icon { background: var(--teal); }
.how-card:hover .how-icon svg { color: var(--blanco); }
.how-icon svg { width: 26px; height: 26px; color: var(--teal); transition: var(--transition); }
.how-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--marino);
  margin-bottom: 8px;
}
.how-desc { font-size: 14px; color: var(--gris-600); line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--marino); color: rgba(255,255,255,.75); }
.footer-main {
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 32px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--blanco);
}
.footer-desc { font-size: 13.5px; line-height: 1.7; max-width: 240px; }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,140,160,.1); }
.footer-social-btn svg { width: 17px; height: 17px; }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blanco); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ============================================================
   EMERGENCIAS FLOTANTE
   ============================================================ */
.emergency-fab {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.emergency-btn {
  background: #E53E3E;
  color: var(--blanco);
  border: none;
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(229,62,62,.4);
  transition: var(--transition);
}
.emergency-btn:hover { background: #C53030; transform: scale(1.04); }
.emergency-panel {
  display: none;
  background: var(--blanco);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  min-width: 240px;
  border: 1px solid var(--gris-200);
}
.emergency-panel.open { display: block; }
.emergency-panel h4 {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--marino);
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.em-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gris-100);
  gap: 12px;
}
.em-item:last-child { border-bottom: none; }
.em-name { font-size: 12px; color: var(--gris-600); font-weight: 500; }
.em-number {
  font-size: 13px;
  font-weight: 700;
  color: #E53E3E;
  font-family: var(--font-display);
  text-decoration: none;
  transition: var(--transition);
}
.em-number:hover { color: #C53030; }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: var(--transition);
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.1); background: #1DA851; }
.wa-fab svg { width: 26px; height: 26px; color: var(--blanco); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 16px; height: 60px; }
  .nav-links { display: none; }
  .lang-dropdown { display: none; }
  .nav-toggle { display: flex; }

  .ad-rotator { width: min(728px, 100vw - 24px); }
  .ad-banner-strip { padding: 6px 12px; min-height: auto; }

  .hero-content { padding: 90px 16px 50px; }
  .hero-search { border-radius: 14px; flex-wrap: wrap; padding: 12px; gap: 8px; }
  .hero-search input { width: 100%; }
  .hero-search-btn { width: 100%; justify-content: center; border-radius: 10px; }
  .hero-badge { font-size: 11px; }

  .routes-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 12px; }
  .how-card { padding: 24px 20px; }

  .ad-central-wrap { gap: 16px; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 24px; }
  .footer-brand .footer-desc { max-width: 100%; }

  .section { padding: 56px 16px; }
  .section-sm { padding: 32px 16px; }

  .emergency-fab { bottom: 80px; left: 16px; }
  .wa-fab { bottom: 80px; right: 16px; }
}

@media (max-width: 480px) {
  .ad-central-box, .ad-central-box .ad-rotator { width: min(300px, 100%); }
}
@media (max-width: 768px) {
  .navbar { height: 70px; }
  .nav-logo img { height: 52px !important; width: auto; }
}

@media (max-width: 480px) {
  .navbar { height: 60px; }
  .nav-logo img { height: 44px !important; width: auto; }
}