.elementor-1486 .elementor-element.elementor-element-c57d0eb{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-29aa287 *//* Hero section - versión con temática de audio */
.hero-section {
  position: relative;
  padding: 120px 0 100px;
  text-align: center;
  background-color: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  
}



body.page-id-1486 .e-con-inner {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.page-id-1486 .elementor-element-c57d0eb{
    padding: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.9)
    ),
    url("https://images.unsplash.com/photo-1478737270239-2f02b77fc618?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) contrast(1.2);
  opacity: 0.6;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent, #121212 90%);
  z-index: 1;
}

/* Elementos de fondo decorativos */
.audio-element {
  position: absolute;
  
  z-index: 2;
}

.audio-element.microphone-bg-1 {
  top: 15%;
  left: 10%;
  font-size: 5rem;
  transform: rotate(-15deg);
}

.audio-element.microphone-bg-2 {
  bottom: 20%;
  right: 15%;
  font-size: 4rem;
  transform: rotate(25deg);
}

.audio-element.headphones {
  top: 25%;
  right: 10%;
  font-size: 4rem;
}

.audio-element.music {
  bottom: 15%;
  left: 15%;
  font-size: 3.5rem;
}

.audio-element.soundwave {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  opacity: 0.03;
}

/* Animación de ondas de audio */
.audio-wave-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}

.audio-wave-animation span {
  display: block;
  width: 4px;
  height: 40px;
  margin: 0 6px;
  border-radius: 4px;
  animation: wave 1.5s infinite ease-in-out;
}

.audio-wave-animation span:nth-child(1) {
  background-color: var(--color-primary); /* Naranja */
}

.audio-wave-animation span:nth-child(2) {
  animation-delay: 0.2s;
  height: 25px;
  background-color: var(--color-text-primary); /* Blanco */
}

.audio-wave-animation span:nth-child(3) {
  animation-delay: 0.4s;
  height: 50px;
  background-color: var(--color-primary); /* Naranja */
}

.audio-wave-animation span:nth-child(4) {
  animation-delay: 0.6s;
  height: 35px;
  background-color: var(--color-text-primary); /* Blanco */
}

.audio-wave-animation span:nth-child(5) {
  animation-delay: 0.8s;
  height: 20px;
  background-color: var(--color-primary); /* Naranja */
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

/* Ícono de micrófono flotante */
.microphone-icon {
  position: relative;
  z-index: 5;
  margin-bottom: 20px;
  display: inline-block;
  animation: subtle-float 4s ease-in-out infinite;
}

@keyframes subtle-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

.microphone-icon i {
  font-size: 4.5rem;
  color: var(--color-neutral);
}

.microphone-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: -1;
}

.microphone-circle::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(229, 60, 8, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 0.5;
  }
  80%,
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Contenido principal del hero */
.hero-content {
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(229, 60, 8, 0.3);
}

.hero-title span {
  color: #e53c08;
  position: relative;
  display: inline-block;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  font-weight: 300;
}



/* Contenedor principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/* Media queries responsivas */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .audio-wave-animation {
    height: 50px;
  }

  .audio-wave-animation span {
    height: 30px;
    width: 4px;
  }
  
  .audio-element.microphone-bg-2 , .audio-element.music{
      bottom: 6%;
  }
  
  
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .audio-wave-animation {
    height: 40px;
  }

  .audio-wave-animation span {
    height: 25px;
    width: 3px;
    margin: 0 4px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .filter-container {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    max-width: 250px;
  }

  .audio-wave-animation span {
    height: 20px;
    width: 3px;
    margin: 0 3px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-c57d0eb */body{
    background-color: #212121 !important;
    background-image: url("https://3krgroup.es/wp-content/uploads/2024/08/fondo-3krgroup.es_.png")
}

:root {
        --color-primary: #e53c08; /* Naranja original para resto del sitio */
        --color-text-primary: #ffffff;
        --color-text-secondary: rgba(255, 255, 255, 0.6);
        --color-bg-card: #1a1a1a;
        --color-bg-card-hover: #222222;
        --color-accent-gray: #333333;
        --color-accent-light: rgba(255, 255, 255, 0.05);
        --color-youtube-badge: rgba(
          255,
          0,
          0,
          0.15
        ); /* Color rojo más visible para YouTube */
        --color-podcast-badge: rgba(
          29,
          185,
          84,
          0.15
        ); /* Color verde más visible para Podcast */
        --color-border: rgba(255, 255, 255, 0.05);
        --card-radius: 4px;
        --transition-speed: 0.25s;
        --color-neutral: #ecf0f1; /* Gris muy claro */
        --color-dark: #0a0a0a; /* Negro más profundo */
        --color-dark-secondary: #151515; /* Negro secundario *//* End custom CSS */