.elementor-261 .elementor-element.elementor-element-60c23d6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--overflow:hidden;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-62e8214 *//* === FOOTER EDHUCO === */
footer.edh-footer {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  color: #ccc;
  border-top: 1px solid #1a1a1a;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

/* Gradiente dinámico de fondo */
footer.edh-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(20, 20, 20, 0.9) 50%,
    rgba(10, 10, 10, 1) 100%
  );
  opacity: 0.95;
  z-index: 1;
  animation: edhGradient 12s ease-in-out infinite alternate;
}

@keyframes edhGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Contenedor principal */
.edh-footer__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .edh-footer__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Títulos */
.edh-footer h2,
.edh-footer h3 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Descripción del logo */
.edh-footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #aaa;
}

/* Listas */
.edh-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.edh-footer li {
  margin-bottom: 0.6rem;
}

.edh-footer a {
  color: #bfbfbf;
  text-decoration: none;
  transition: all 0.3s ease;
}

.edh-footer a:hover {
  color: #fff;
  letter-spacing: 0.2px;
}

/* Sección newsletter */
.edh-footer__newsletter p {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 0.8rem;
}

.edh-footer__newsletter form {
  display: flex;
  gap: 0.5rem;
}

.edh-footer__newsletter input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 0.85rem;
  transition: box-shadow 0.3s ease;
}

.edh-footer__newsletter input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #0ef3c5;
}

.edh-footer__newsletter button {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(90deg, #0ef3c5, #2affcb);
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.edh-footer__newsletter button:hover {
  transform: translateY(-1px);
  background: linear-gradient(90deg, #2affcb, #0ef3c5);
}

/* Créditos finales */
.edh-footer__bottom {
  border-top: 1px solid #1a1a1a;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: #666;
  position: relative;
  z-index: 2;
}

.edh-footer__bottom a {
  color: #aaa;
}

.edh-footer__bottom a:hover {
  color: #fff;
}

/* Sutil animación de aparición */
.edh-footer {
  opacity: 0;
  transform: translateY(20px);
  animation: edhFooterFadeIn 1.5s ease forwards;
}

@keyframes edhFooterFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e6f2a50 *//* === BOTÓN FIJO PAUSA/PLAY === */
.edh-music-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: var(--edh-text-color);
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ANTES OCULTO */
  opacity: 0;
  pointer-events: none;

  /* ALTO NIVEL PARA QUE NADA LO TAPE */
  z-index: 99999;

  transition: opacity 0.6s ease, transform 0.25s ease;
}

.edh-music-toggle:hover {
  transform: scale(1.07);
  border-color: rgba(0,240,255,0.6);
  box-shadow: 0 0 18px rgba(0,240,255,0.25);
  background-color: #313130;
}

/* Visible cuando se activa */
.edh-music-toggle.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- Animación LATIDO + ONDAS SOLO CUANDO MÚSICA ACTIVA --- */
.edh-music-toggle.sound-playing {
  animation: edhPulse 2.4s infinite ease-in-out;
  box-shadow: 0 0 14px rgba(0,240,255,0.25);
}

@keyframes edhPulse {
  0%,100% {
    transform: scale(1);
    box-shadow: 
      0 0 12px rgba(0,240,255,0.25),
      0 0 0 0 rgba(0,240,255,0.12);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 
      0 0 22px rgba(0,240,255,0.35),
      0 0 0 14px rgba(0,240,255,0.05);
  }
}

/* Estado PAUSADO */
.edh-music-toggle.paused {
  animation: none;
  background: rgba(255,0,80,0.12);
  color: #ff2f6f;
  box-shadow: none;
}

/* ============================
   BOTÓN PRO DE MÚSICA (SVG)
   ============================ */
.edh-music-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;

  z-index: 999999;
  transition: opacity 0.5s ease, transform 0.25s ease;
}

.edh-music-toggle.active {
  opacity: 1;
  pointer-events: auto;
}

.edh-music-toggle:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px rgba(0,255,204,0.4);
}

/* ICONOS */
.icon-sound {
  position: absolute;
  fill: none;
  stroke: #00ffd0;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.icon-play.active,
.icon-pause.active {
  opacity: 1;
  transform: scale(1);
}

/* Ondas */
.sound-waves {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sound-waves span {
  width: 6px;
  height: 6px;
  background: #00ffd0;
  border-radius: 50%;
  margin: 0 2px;
  opacity: 0;
  transform: translateY(0px);
}

/* Animación de ondas cuando suena */
.edh-music-toggle.sound-playing .sound-waves span:nth-child(1) {
  animation: waveBounce 0.8s infinite ease-in-out;
}
.edh-music-toggle.sound-playing .sound-waves span:nth-child(2) {
  animation: waveBounce 0.8s infinite ease-in-out 0.15s;
}
.edh-music-toggle.sound-playing .sound-waves span:nth-child(3) {
  animation: waveBounce 0.8s infinite ease-in-out 0.3s;
}

@keyframes waveBounce {
  0%,100% { opacity: 0.4; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-6px) scale(1.2); }
}

/* Estado pausado */
.edh-music-toggle.paused {
  animation: none;
}
.edh-music-toggle.paused .sound-waves span {
  opacity: 0;
}/* End custom CSS */