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

@font-face {
  font-family: 'Roboto Slab';
  src: url('/fonts/RobotoSlab-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --wm-red: #bd3430;
  --wm-red-dark: #9a2825;
  --wm-navy: #2B2D42;
  --wm-navy-dark: #1a1c2b;
  --wm-steel: #8D99AE;
  --wm-light: #e5e5e5;
  --wm-body: #3a3c52;
  --wm-body-font: 'DM Sans', sans-serif;
  --wm-heading-font: 'Roboto Slab', serif;
}

html {
  scrollbar-gutter: stable;
}

@media (min-width: 1024px) {
  html {
    font-size: 110%;
  }
}

body {
  margin: 0;
  color: var(--wm-body);
  font-family: var(--wm-body-font);
  background: #fff;
}

[style*="opacity:0"] {
  opacity: 1 !important;
}

[style*="transform:translate"] {
  transform: none !important;
}

#root main h1,
#root main h2,
#root main h3,
#root main h4 {
  font-family: var(--wm-heading-font) !important;
  letter-spacing: 0 !important;
  color: var(--wm-navy-dark) !important;
}

#root main {
  font-family: var(--wm-body-font) !important;
  color: var(--wm-body) !important;
}

#root main p,
#root main li,
#root main a,
#root main span,
#root main button {
  font-family: var(--wm-body-font) !important;
}

#root main .bg-black {
  background-color: var(--wm-navy-dark) !important;
}

#root main a.hover\:bg-brand-red:hover,
#root main button.hover\:bg-brand-red:hover {
  background-color: var(--wm-red) !important;
}

.wm-shell-nav {
  position: fixed;
  width: 100%;
  z-index: 150;
  top: 0;
  transition: box-shadow 0.3s, background 0.3s;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--wm-light);
}

.wm-shell-nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--wm-light);
}

.wm-shell-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.wm-shell-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
}

.wm-shell-logo-link {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.wm-logo-full {
  height: 60px;
  width: auto;
  display: block;
}

.wm-shell-nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.wm-shell-whatsapp {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--wm-navy);
  transition: opacity 0.15s;
  font-family: var(--wm-body-font);
}

.wm-shell-whatsapp:hover {
  opacity: 0.7;
}

.wm-shell-whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.wm-wa-number {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--wm-navy);
}

.wm-shell-menu-btn {
  background: #fff;
  border: 1.5px solid var(--wm-light);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  min-width: 80px;
  border-radius: 8px;
  font-family: var(--wm-body-font);
}

.wm-shell-menu-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 26px;
  position: relative;
  height: 16px;
}

.wm-shell-menu-lines span {
  display: block;
  height: 2px;
  background: var(--wm-navy);
  border-radius: 1px;
  width: 100%;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
}

#wm-line-1 { top: 0; }
#wm-line-2 { top: 7px; }
#wm-line-3 { top: 14px; }

.wm-shell-menu-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--wm-navy);
  text-transform: uppercase;
}

#wm-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

#wm-mobile-overlay.wm-overlay-open {
  opacity: 1;
  pointer-events: all;
}

#wm-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(520px, 100vw);
  background: #fff;
  z-index: 300;
  transform: translateX(calc(100% + 120px));
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  overflow: visible;
  pointer-events: none;
  font-family: var(--wm-body-font);
}

#wm-mobile-drawer.open {
  transform: translateX(0);
  pointer-events: all;
}

#wm-curve-svg {
  position: absolute;
  top: 0;
  left: -99px;
  width: 100px;
  height: 100%;
  fill: #fff;
  stroke: none;
  pointer-events: none;
}

.wm-drawer-close {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--wm-navy);
}

.wm-drawer-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 110px;
  overflow-y: auto;
}

.wm-drawer-main {
  padding: 0 48px;
  flex: 1;
}

.wm-drawer-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bbb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 14px;
  margin: 0;
}

.wm-curved-link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid var(--wm-light);
  padding: 20px 0;
  text-decoration: none;
  color: var(--wm-navy);
  text-transform: uppercase;
  transition: color 0.3s;
  width: 100%;
  background: none;
  cursor: pointer;
  text-align: left;
}

.wm-curved-link:hover {
  color: var(--wm-red);
}

.wm-cl-text {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--wm-heading-font);
}

.wm-acc-icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 200;
  color: #aaa;
  line-height: 1;
  transition: color 0.2s;
}

.wm-acc-body {
  padding: 4px 0 12px 0;
}

.wm-sub-link {
  display: block;
  padding: 8px 0 8px 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--wm-steel);
  text-decoration: none;
  border-left: 2px solid var(--wm-light);
  margin-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
}

.wm-sub-link:hover {
  color: var(--wm-red);
  border-left-color: var(--wm-red);
  padding-left: 14px;
}

.wm-drawer-footer {
  padding: 24px 48px 40px;
  border-top: 1px solid var(--wm-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wm-drawer-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wm-navy);
  margin: 0 0 2px;
}

.wm-drawer-sub {
  font-size: 12px;
  color: var(--wm-steel);
  margin: 0;
}

.wm-drawer-chat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
}

.wm-shell-lock {
  overflow: hidden;
}

.wm-shell-footer {
  background: #fff;
  padding: 128px 0 48px;
  border-top: 1px solid var(--wm-light);
  font-family: var(--wm-body-font);
}

.wm-shell-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.wm-shell-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 96px;
}

.wm-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  width: auto;
}

.wm-footer-logo img {
  height: 180px;
  width: auto;
  display: block;
}

.wm-footer-logo span {
  color: var(--wm-red);
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  margin-top: 12px;
  letter-spacing: 0;
  width: 100%;
  text-align: center;
}

.wm-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #f4f4f5;
  border-radius: 12px;
  padding: 6px;
  margin-top: 32px;
}

.wm-social-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  color: #52525b;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.wm-social-icon:hover {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

.wm-social-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

.wm-social-icon:hover .wm-social-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wm-shell-footer h4 {
  font-size: 14px;
  font-weight: 800;
  color: #000;
  margin: 0 0 32px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.wm-shell-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.wm-shell-footer a {
  color: rgba(0, 0, 0, 0.60);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.wm-shell-footer a:hover {
  color: var(--wm-red);
}

.wm-shell-footer-bottom {
  padding-top: 48px;
  border-top: 1px solid var(--wm-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.wm-shell-footer-bottom p {
  margin: 0;
  color: rgba(0, 0, 0, 0.50);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .wm-shell-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .wm-shell-nav-bar {
    height: 80px;
  }

  .wm-logo-full {
    height: 52px;
  }

  .wm-shell-nav-actions {
    gap: 12px;
  }

  .wm-wa-number {
    display: none;
  }

  .wm-shell-whatsapp-icon {
    width: 46px;
    height: 46px;
  }

  .wm-shell-menu-btn {
    min-width: 68px;
    padding: 12px 14px;
  }

  .wm-drawer-main,
  .wm-drawer-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .wm-drawer-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .wm-shell-footer {
    padding-top: 80px;
  }

  .wm-shell-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 64px;
  }

  .wm-shell-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
