:root {
  --pmlc-navy: #002d72;
  --pmlc-navy-dark: #001845;
  --pmlc-blue: #003d8f;
  --pmlc-gold: #e1a914;
  --pmlc-gold-hover: #c89410;
  --pmlc-white: #fff;
  --pmlc-surface: #f4f6f9;
  --pmlc-text: #1a2a3a;
  --pmlc-muted: #5a6578;
  --pmlc-border: #dde3ec;
  --pmlc-font: "Montserrat", system-ui, sans-serif;
  --pmlc-header-height: 90px;
  --pmlc-transition: .35s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--pmlc-header-height); }
body { margin: 0; overflow-x: hidden; color: var(--pmlc-text); background: var(--pmlc-white); font-family: var(--pmlc-font); line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.pmlc-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
.pmlc-container { width: min(1170px, calc(100% - 30px)); margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.screen-reader-text:focus { z-index: 10000; top: 0; left: 16px; width: auto; height: auto; margin: 0; padding: 12px 24px; clip: auto; background: var(--pmlc-navy); color: #fff; }

.pmlc-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--pmlc-header-height); transition: background var(--pmlc-transition), box-shadow var(--pmlc-transition); }
.pmlc-header.is-transparent { background: transparent; }
.pmlc-header.is-scrolled { background: rgba(255,255,255,.97); box-shadow: 0 1px 0 var(--pmlc-border); backdrop-filter: blur(12px); }
.pmlc-header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.pmlc-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.pmlc-logo__image { display: block; width: auto; height: 58px; object-fit: contain; }
.pmlc-logo--dark { display: none; }
.pmlc-header.is-scrolled .pmlc-logo--light { display: none; }
.pmlc-header.is-scrolled .pmlc-logo--dark { display: block; }
.pmlc-nav--desktop .pmlc-menu { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.pmlc-nav--desktop a { position: relative; color: rgba(255,255,255,.92); font-size: .875rem; font-weight: 600; text-decoration: none; transition: color var(--pmlc-transition); }
.pmlc-nav--desktop a::after { position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--pmlc-gold); content: ""; transition: width var(--pmlc-transition); }
.pmlc-nav--desktop a:hover::after, .pmlc-nav--desktop .current-menu-item > a::after { width: 100%; }
.pmlc-header.is-scrolled .pmlc-nav--desktop a { color: var(--pmlc-text); }
.pmlc-header__actions { display: flex; align-items: center; gap: 16px; }
.pmlc-header__phone { color: rgba(255,255,255,.92); font-size: .875rem; font-weight: 600; text-decoration: none; }
.pmlc-header.is-scrolled .pmlc-header__phone { color: var(--pmlc-navy); }
.pmlc-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 30px; border-radius: 50px; font-size: .8125rem; font-weight: 700; letter-spacing: .06em; line-height: 1; text-decoration: none; text-transform: uppercase; transition: transform var(--pmlc-transition), background var(--pmlc-transition), box-shadow var(--pmlc-transition); }
.pmlc-button--accent { background: var(--pmlc-gold); color: var(--pmlc-navy-dark); }
.pmlc-button--accent:hover { background: var(--pmlc-gold-hover); box-shadow: 0 8px 24px rgba(225,169,20,.35); transform: translateY(-2px); }
.pmlc-menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.pmlc-menu-toggle span { width: 23px; height: 2px; background: #fff; transition: var(--pmlc-transition); }
.pmlc-header.is-scrolled .pmlc-menu-toggle span { background: var(--pmlc-navy); }
.pmlc-menu-toggle.is-active span:first-child { transform: translateY(7px) rotate(45deg); }
.pmlc-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.pmlc-menu-toggle.is-active span:last-child { transform: translateY(-7px) rotate(-45deg); }
.pmlc-mobile-menu { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; padding: 100px 24px 40px; visibility: hidden; opacity: 0; background: var(--pmlc-navy-dark); transition: opacity .4s ease, visibility .4s ease; }
.pmlc-mobile-menu.is-open { visibility: visible; opacity: 1; }
.pmlc-mobile-menu ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; text-align: center; }
.pmlc-mobile-menu a { display: block; padding: 9px 24px; color: rgba(255,255,255,.78); font-size: 1.35rem; font-weight: 700; text-decoration: none; }
.pmlc-mobile-menu a:hover { color: var(--pmlc-gold); }

.pmlc-main:not(.pmlc-main--front):not(.pmlc-main--full-width) { min-height: 55vh; padding-top: calc(var(--pmlc-header-height) + 70px); padding-bottom: 90px; }
.pmlc-main--front, .pmlc-main--full-width { min-height: 50vh; }
.pmlc-page-header { margin-bottom: 32px; }
.pmlc-page-header h1, .pmlc-entry__header h1 { color: var(--pmlc-navy); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.2; }
.pmlc-page-content:not(.elementor) { width: min(1170px, calc(100% - 30px)); margin-inline: auto; }
.pmlc-entry { margin-bottom: 50px; }
.pmlc-entry__header a { color: inherit; text-decoration: none; }
.pmlc-entry__image { margin: 28px 0; }
.pmlc-not-found { text-align: center; }
.pmlc-not-found__code { margin: 0; color: var(--pmlc-gold); font-size: clamp(5rem, 15vw, 10rem); font-weight: 800; line-height: 1; }

.pmlc-footer { padding-top: 70px; background: var(--pmlc-navy-dark); color: rgba(255,255,255,.7); }
.pmlc-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.pmlc-logo--footer .pmlc-logo__image { height: 68px; }
.pmlc-footer__brand p { max-width: 340px; margin: 22px 0; font-size: .9375rem; }
.pmlc-footer__column h2 { margin: 0 0 24px; color: #fff; font-size: .875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.pmlc-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.pmlc-footer a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .25s ease; }
.pmlc-footer a:hover { color: var(--pmlc-gold); }
.pmlc-footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.pmlc-footer__contact h2 { margin-bottom: 12px; }
.pmlc-social { display: flex; gap: 12px; }
.pmlc-social a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; font-size: .75rem; font-weight: 700; }
.pmlc-social a:hover { border-color: var(--pmlc-gold); background: var(--pmlc-gold); color: var(--pmlc-navy-dark); }
.pmlc-footer__bottom { padding: 24px 0; font-size: .8125rem; }
.pmlc-footer__bottom p { margin: 0; }
.pmlc-whatsapp { position: fixed; right: 28px; bottom: 28px; z-index: 900; display: grid; width: 56px; height: 56px; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 4px 20px rgba(37,211,102,.4); color: #fff; transition: transform var(--pmlc-transition); }
.pmlc-whatsapp:hover { transform: scale(1.08); }

@media (max-width: 1050px) {
  .pmlc-nav--desktop .pmlc-menu { gap: 20px; }
  .pmlc-header__phone { display: none; }
}

@media (max-width: 820px) {
  .pmlc-nav--desktop, .pmlc-header__actions .pmlc-button { display: none; }
  .pmlc-menu-toggle { display: flex; }
  .pmlc-logo__image { height: 52px; }
  .pmlc-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --pmlc-header-height: 78px; }
  .pmlc-logo__image { height: 46px; }
  .pmlc-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .pmlc-whatsapp { right: 18px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

