.elementor-3135 .elementor-element.elementor-element-5a0cf30{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:20;}.elementor-3135 .elementor-element.elementor-element-4dc269d > .elementor-widget-container{padding:28px 28px 28px 28px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-4dc269d */@import url("https://fonts.cdnfonts.com/css/thegoodmonolith");

@font-face {
  font-family: "PPNeueMontreal";
  src: url("https://assets.codepen.io/7558/PPNeueMontreal-Variable.woff2") format("woff2");
}

:root {
  --spacing-base: 1rem;
  --color-text: #fff;
  --font-size-base: 14px;
}

/* RESET */
.custom-header * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GENERAL */
.custom-header {
  width: 100%;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--spacing-base);
  color: white;
  font-family: "PPNeueMontreal", sans-serif;
  position: relative;
  z-index: 5;
}

/* DESKTOP GRID POSITIONS */
.nav-section { grid-column: 1 / span 3; }
.values-section { grid-column: 5 / span 2; }
.location-section { grid-column: 7 / span 2; }
.contact-section { grid-column: 9 / span 2; }
.social-section { grid-column: 11 / span 2; text-align: right; }

/* LOGO (RESPETO TU TAMAÑO EXACTO) */
.site-logo {
  width: auto !important;
  max-width: 108px !important;
  height: auto;
  transition: .3s ease;
}

/* HEADINGS EN DESKTOP */
.custom-header h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: white !important;
}

/* LINKS */
.custom-header a {
  font-weight: 700;
  font-size: var(--font-size-base);
  color: white;
  text-decoration: none;
  position: relative;
}

.custom-header a::after {
  content:"";
  position:absolute;
  top:0; left:0;
  width:0; height:100%;
  background:white;
  z-index:-1;
  transition: width .3s cubic-bezier(.34,1.56,.64,1);
}

.custom-header a:hover::after { width:100%; }
.custom-header a:hover { color:black; }

/* DESKTOP ONLY */
.desktop-only { display: block; }

/* MOBILE INIT — ocultar menú móvil en escritorio */
.mobile-bar { display: none; }
.mobile-menu { display: none; }

/*--------------------------------------------------*/
/* MOBILE */
/*--------------------------------------------------*/
@media (max-width: 767px) {

  /* ❗ OCULTAR SIEMPRE EL MENÚ DESKTOP EN MÓVIL */
  .desktop-only { display: none !important; }

  /* TOP BAR MÓVIL */
  .mobile-bar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }

  /* HAMBURGUESA */
  .hamburger {
    width: 32px;
    height: 22px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background:none;
    border:none;
    cursor:pointer;
    z-index:10000;
  }

  .hamburger span {
    height:2px;
    background:white;
    display:block;
    transition:0.35s ease;
  }

  /* X ANIMADA CORRECTA */
  .hamburger.open span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
      opacity:0;
  }
  .hamburger.open span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  /* FULLSCREEN MENU */
  .mobile-menu {
    display: block !important;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:black;
    padding:2rem;
    transform:translateY(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    z-index: 9999;
  }

  .mobile-menu.open {
    transform:translateY(0);
  }

  .mobile-block {
    margin-bottom: 2rem;
  }

  .mobile-block ul {
    margin-top: .6rem;
    padding-left: 0;
  }
}/* End custom CSS */