/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 20 2026 | 22:31:00 */
/* ==========================================================
   Header
   Todo acotado a .lmg para no chocar con el tema / Elementor.
   Colores en variables: cámbialos aquí si hace falta.
   ========================================================== */

.lmg {
  --lmg-navy: #232f47;
  --lmg-navy-2: #2d3b57;
  --lmg-ink: #1f2a44;
  --lmg-muted: #66727f;
  --lmg-blue: #3f6e9a;
  --lmg-gold: #eabb5b;
  --lmg-gold-hover: #f1c96f;
  --lmg-border: #dfe5eb;
  --lmg-soft: #f4f7fa;
  --lmg-bp: 1180px; /* solo referencia: por debajo de este ancho se activa el menú móvil */

  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: inherit;
  line-height: 1.5;
}

.lmg *,
.lmg *::before,
.lmg *::after {
  box-sizing: border-box;
}

/* Iconos: los SVG del HTML no llevan tamaño ni estilo propio */
.lmg svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Barra principal ---------- */
.lmg .lmg-header {
  position: relative;
  z-index: 100;
  background: var(--lmg-navy);
  color: #ffffff;
}

.lmg .lmg-wrap {
  max-width: 1320px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ---------- Logo ---------- */
.lmg a.lmg-logo {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.lmg a.lmg-logo span {
  font-weight: 400;
}

.lmg a.lmg-logo strong {
  margin-top: 2px;
  font-weight: 800;
}

.lmg a.lmg-logo:hover {
  color: #ffffff;
}

/* ---------- Buscador ---------- */
.lmg .lmg-search {
  flex: 1 1 320px;
  max-width: 460px;
  min-width: 0;
  margin: 0 0 0 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
}

.lmg .lmg-field {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lmg-muted);
  border-radius: 6px;
  transition: background-color 0.18s ease;
}

.lmg .lmg-field + .lmg-field {
  border-left: 1px solid var(--lmg-border);
  border-radius: 0 6px 6px 0;
}

.lmg .lmg-field:focus-within {
  background: var(--lmg-soft);
}

.lmg .lmg-field svg {
  width: 18px;
  height: 18px;
}

.lmg .lmg-field input[type="text"] {
  display: block;
  width: 100%;
  min-width: 0;
  height: 40px;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--lmg-ink);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.2;
}

.lmg .lmg-field input[type="text"]:focus {
  outline: none;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.lmg .lmg-field input[type="text"]::placeholder {
  color: #8a95a3;
  opacity: 1;
}

.lmg button.lmg-search-btn {
  flex: 0 0 auto;
  height: 40px;
  margin: 0 0 0 4px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lmg-gold);
  color: var(--lmg-ink);
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.lmg button.lmg-search-btn:hover {
  background: var(--lmg-gold-hover);
  color: var(--lmg-ink);
}

.lmg button.lmg-search-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Navegación ---------- */
.lmg .lmg-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lmg a.lmg-nav-link,
.lmg button.lmg-nav-link {
  margin: 0;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.lmg a.lmg-nav-link:hover,
.lmg button.lmg-nav-link:hover,
.lmg .lmg-dd.is-open button.lmg-nav-link {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lmg-gold);
}

.lmg button.lmg-nav-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

.lmg .lmg-dd.is-open button.lmg-nav-link svg {
  transform: rotate(180deg);
}

/* ---------- Botones ---------- */
.lmg .lmg-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lmg a.lmg-btn {
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.lmg a.lmg-btn-yellow {
  background: var(--lmg-gold);
  border-color: var(--lmg-gold);
  color: var(--lmg-ink);
  box-shadow: 0 6px 16px rgba(234, 187, 91, 0.3);
}

.lmg a.lmg-btn-yellow:hover {
  background: var(--lmg-gold-hover);
  border-color: var(--lmg-gold-hover);
  color: var(--lmg-ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(234, 187, 91, 0.4);
}

.lmg a.lmg-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.lmg a.lmg-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
}

.lmg a.lmg-btn-navy {
  background: var(--lmg-navy);
  border-color: var(--lmg-navy);
  color: #ffffff;
}

.lmg a.lmg-btn-navy:hover {
  background: var(--lmg-navy-2);
  border-color: var(--lmg-navy-2);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ---------- Desplegable "Explorar" ---------- */
.lmg .lmg-dd {
  position: static;
}

.lmg .lmg-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  color: var(--lmg-ink);
  border-top: 3px solid var(--lmg-gold);
  box-shadow: 0 24px 40px rgba(31, 42, 68, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.lmg .lmg-dd.is-open .lmg-mega {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.lmg .lmg-mega-in {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px 28px;
}

.lmg .lmg-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 24px 72px;
}

.lmg .lmg-mega h4 {
  margin: 0 0 12px;
  padding: 0;
  color: var(--lmg-blue);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lmg .lmg-mega ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.lmg .lmg-mega li {
  margin: 0;
  padding: 0;
}

.lmg .lmg-mega li a {
  display: inline-block;
  padding: 6px 0;
  color: var(--lmg-ink);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-decoration-color: var(--lmg-gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.lmg .lmg-mega li a:hover {
  color: var(--lmg-ink);
  text-decoration-line: underline;
}

.lmg .lmg-mega-foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--lmg-border);
}

/* ---------- Botón hamburguesa ---------- */
.lmg button.lmg-burger {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0 0 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.lmg button.lmg-burger:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.lmg button.lmg-burger svg {
  width: 26px;
  height: 26px;
}

.lmg .lmg-ico-close {
  display: none;
}

.lmg.lmg-open .lmg-ico-open {
  display: none;
}

.lmg.lmg-open .lmg-ico-close {
  display: block;
}

/* ---------- Panel móvil y barra inferior (ocultos en escritorio) ---------- */
.lmg .lmg-mobile,
.lmg .lmg-bar {
  display: none;
}

.lmg .lmg-m-ctas {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}

.lmg a.lmg-m-link {
  display: block;
  padding: 16px 4px;
  color: var(--lmg-ink);
  border-bottom: 1px solid var(--lmg-border);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.lmg a.lmg-m-link:hover {
  color: var(--lmg-blue);
}

.lmg .lmg-m-title {
  margin: 22px 0 12px;
  color: var(--lmg-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lmg .lmg-m-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lmg .lmg-m-cities a {
  padding: 8px 16px;
  background: var(--lmg-soft);
  color: var(--lmg-ink);
  border: 1px solid var(--lmg-border);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.lmg .lmg-m-cities a:hover {
  background: var(--lmg-ink);
  border-color: var(--lmg-ink);
  color: #ffffff;
}

/* ---------- Foco visible ---------- */
.lmg .lmg-header a:focus-visible,
.lmg .lmg-header button:focus-visible {
  outline: 3px solid var(--lmg-gold);
  outline-offset: 2px;
}

.lmg .lmg-mega a:focus-visible,
.lmg .lmg-mobile a:focus-visible,
.lmg .lmg-bar a:focus-visible {
  outline: 3px solid var(--lmg-ink);
  outline-offset: 2px;
}

/* ---------- Responsive: menú móvil ---------- */
@media (max-width: 1180px) {
  .lmg .lmg-wrap {
    min-height: 64px;
    padding: 0 16px;
  }

  .lmg .lmg-search,
  .lmg .lmg-nav,
  .lmg .lmg-actions,
  .lmg .lmg-mega {
    display: none;
  }

  .lmg button.lmg-burger {
    display: inline-flex;
  }

  .lmg.lmg-open .lmg-mobile {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 20px 16px 28px;
    background: #ffffff;
    box-shadow: 0 24px 40px rgba(31, 42, 68, 0.18);
  }

  .lmg .lmg-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: #ffffff;
    box-shadow: 0 -6px 20px rgba(31, 42, 68, 0.14);
  }

  .lmg .lmg-bar a.lmg-btn {
    flex: 1 1 0;
    padding: 13px 10px;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmg .lmg-mega,
  .lmg button.lmg-nav-link svg,
  .lmg a.lmg-btn,
  .lmg .lmg-field {
    transition: none;
  }
}

/* ==========================================================
   OPCIONAL: en móvil la barra fija inferior tapa el final de la página.
   Descomenta esto para dejar hueco debajo del contenido:

@media (max-width: 1180px) {
  body { padding-bottom: 72px; }
}
   ========================================================== */