
/* Version 2026 - Overrides Sobreescritura CSS*/

.dotsmaps-wrapper {
    position: relative;
    width: 100%;
    height: 10vh;
    min-height: 400px;
    overflow: auto;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dotsmaps-wrapper .map-layer{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('../img/bureba-alto.webp') no-repeat center;
      background-size: cover;
      background-attachment: fixed;
      
      z-index: 0;
      box-shadow: 0px 0px 5px inset #333;

      filter: brightness(0.5) blur(2px) saturate(1) hue-rotate(50deg);
      transition: all 0.3s;
      transition: filter 0.3s ease, transform 0.6s ease;
}

.dotsmaps-wrapper:hover .map-layer{
  filter: brightness(0.8) blur(0px) saturate(1.5) hue-rotate(0deg);
  
}


@media (max-width: 768px) {
    .dotsmaps-wrapper {
        height: 40vh;
        min-height: 200px;
    }

}

.bureba-map-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 36px 20px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 20px;
}

.bureba-map-cta__button {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  max-width: 760px;
  min-height: 64px;
  padding: 16px 30px;

  color: #ffffff !important;
  background: #245a34;
  border: 2px solid #245a34;
  border-radius: 6px;

  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;

  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.78);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    scale 0.5s ease,
    box-shadow 0.2s ease;
}

.dotsmaps-wrapper:hover .bureba-map-cta__button{
  scale: 1.5;
  background: rgba(23, 63, 37, 0.8);
  border-color: #c9ad39;
}

.bureba-map-cta__button:hover,
.bureba-map-cta__button:focus {
  color: #ffffff !important;
  background: #173f25;
  border-color: #c9ad39;
  text-decoration: none !important;
  transform: translateY(-2px);
  /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24); */
}

.bureba-map-cta__button:focus {
  outline: 3px solid rgba(201, 173, 57, 0.45);
  outline-offset: 4px;
}

.bureba-map-cta__icon {
  flex: 0 0 auto;
  color: #d2b53f;
  font-size: 30px;
  line-height: 1;
}

/* Ondas */
.bureba-map-cta__button::before {
/*, .bureba-map-cta__button::after { */
  content: "";
  position: absolute;
  inset: 0;

  border: 2px solid rgba(229, 196, 57, 0.75);
  border-radius: inherit;

  pointer-events: none;
  opacity: 0;
  z-index: -1;
}

/* Se activa al pasar por cualquier punto de la sección */
.dotsmaps-wrapper:hover .bureba-map-cta__button::before {
  animation: mapButtonPulse 1.8s ease-out infinite;
}

.dotsmaps-wrapper:hover .bureba-map-cta__button::after {
  animation: mapButtonPulse 1.8s ease-out 0.6s infinite;
}

/* .dotsmaps-wrapper:hover .bureba-map-cta__button {
  transform: translateY(-3px);
  background-color: #1d5530;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(229, 196, 57, 0.18);
} */

@keyframes mapButtonPulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  70% {
    transform: scale(1.25, 1.65);
    opacity: 0;
  }

  100% {
    transform: scale(1.25, 1.65);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .bureba-map-cta {
    padding: 24px 15px;
  }

  .bureba-map-cta__button {
    width: 100%;
    min-height: 60px;
    padding: 15px 18px;
    gap: 9px;
    font-size: 18px;
  }

  .bureba-map-cta__icon {
    font-size: 25px;
  }
}

/* Override Footer */
.section-footer .top-footer .classmedio a{
  font-size: 1rem;
}