.elementor-25 .elementor-element.elementor-element-b83630c{--display:flex;--min-height:0px;--align-items:stretch;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.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-56ec889 */:root {
  --bg-white: #f7f7f7;
  --brand-green: #237823;
  --brand-green-hover: #1a5c1a;
  --brand-orange: #F57D0F;
  --text-black: #121212;
  --border-light: #e5e7eb;
  --radius: 8px;
}

.navbar {
  background-color: var(--bg-white);
  position: fixed;
  width: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  font-family: 'Roboto', sans-serif;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.nav-logo img {
  height: 2.75rem;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── BOTÓN "Contáctanos" — blindado contra estilos externos ──
   Se definen explícitamente TODOS los estados (normal, visited,
   hover, focus, focus-visible, active) para que ningún CSS del
   tema/plugin de WordPress pueda "colarse" en una race condition
   de carga y hacer que el botón se vea rosado momentáneamente. */
.btn-contact,
.btn-contact:visited {
  background-color: var(--brand-green) !important;
  color: #ffffff !important;
  border: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none !important;
  outline: none;
}
.btn-contact:hover,
.btn-contact:focus,
.btn-contact:focus-visible {
  background-color: var(--brand-green-hover) !important;
  color: #ffffff !important;
}
.btn-contact:active {
  background-color: var(--brand-green-hover) !important;
  color: #ffffff !important;
  transform: translateY(1px);
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--text-black);
  background: transparent;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.3s;
}
.mobile-toggle:hover {
  background-color: #e5e5e5;
}
.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}
.mobile-toggle.is-active svg {
  transform: rotate(90deg);
}
.mobile-toggle.is-active path {
  transition: d 0.3s ease;
}

/* Panel del menú (mobile) */
.nav-menu {
  order: 3;
  width: 100%;
  flex-basis: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}
.nav-menu.is-open {
  max-height: 50vh;
  opacity: 1;
  overflow-y: auto;
  transform: translateY(0);
}
.nav-list {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 500;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background-color: #ffffff;
  list-style: none;
  gap: 0.5rem;
}
.nav-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem 0.75rem;
  color: var(--text-black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0rem;
  height: 2px;
  background-color: var(--brand-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-link:hover {
  color: var(--brand-green);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--brand-green);
}
.nav-link.active::after {
  transform: scaleX(1);
}

@media (min-width: 768px) {
  .nav-actions {
    order: 2;
  }
  .nav-menu {
    order: 1;
    display: flex;
    width: auto;
    flex-basis: auto;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
  }
  .mobile-toggle {
    display: none;
  }
  .nav-list {
    flex-direction: row;
    padding: 0;
    margin-top: 0;
    border: none;
    background-color: transparent;
    gap: 2rem;
  }
  .nav-link {
    padding: 0;
  }
  .nav-link::after {
    left: 0;
    right: 0;
  }
}/* End custom CSS */