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

@font-face {
  font-family: 'LTAmber';
  src: url('../fonts/LTAmber.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'HeadingNow';
  src: url('../fonts/HeadingNow.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'LTAmber', sans-serif;
  color: #fff;
  background-color: #000;
  text-transform: uppercase;
}

#logo-toggle {
  width: 90px;
  height: auto;
  cursor: pointer;
  display: block;
  object-fit: contain;
}


/* HERO BANNER */
.hero-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  z-index: 10000;
  padding: 5px 0;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.hero-banner-track {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 30s linear infinite;
}

.hero-banner-track span {
  display: inline-block;
  margin-right: 80px;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* HEADER */
.site-header.overlay-header {
  position: fixed;
  top: 28px;
  left: 0;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 1),rgba(0, 0, 0, 0));
  z-index: 9999;
  padding: 20px 30px;
  transition: top 0.4s ease, opacity 0.4s ease;
}

.site-header2.overlay-header2 {
  position: fixed;
  top: 28px;
  left: 0;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 1),rgba(0, 0, 0, 0));
  z-index: 9999;
  padding: 20px 30px;
  transition: top 0.4s ease, opacity 0.4s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

.menu-button {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

/* Ajuste responsive SOLO en móvil */
@media (min-width: 769px) {
  .menu-button {
    display: none !important;
  }
}

/* BOTÓN DE MENÚ */
.menu-button img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .menu-button img {
    width: 50px;
    height: 50px;
  }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

/* MENÚ OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  text-align: center;
  transition: height 4s ease, padding 0.3s ease;
}

.menu-overlay ul {
  list-style: none;
  padding: 0;
}

.menu-overlay ul li {
  margin: 15px 0;
}

.menu-overlay ul li a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-overlay ul li a:hover {
  color: #ffffff;
}

.menu-close {
font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  position: relative;
}



/* ESTRUCTURA */
.desktop-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.desktop-menu ul {
  display: flex;
  gap: 65px;
  list-style: none;
}

.desktop-menu ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}



.menu-logo img {
  height: 60px;
  cursor: pointer;
}

/* RESPONSIVE: OCULTAR MENU DESKTOP EN MÓVIL */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
}

/* CLASES DINÁMICAS PARA OCULTAR MENÚ */
.menu-left.hidden,
.menu-right.hidden {
  display: none !important;
}


/* HERO SLIDER */
.hero-slider {
  position: relative;
  margin-top: 0;
  height: 100vh;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.0);
  border-radius: 50%;
  color: #000;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10; /* 👈 más alto que el video */
  position: absolute;
}

/* Ajustar ícono dentro si usa pseudo-elemento o SVG */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
}


.slide-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  text-shadow: 0 0 5px #000;
  z-index: 2;
}

.slide-caption h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

.slide-caption p {
  font-size: 1.25rem;
}

.slide-caption img{
  width: 20%;
}

.slide-video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 100%;
}

.slide-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* SHOWS SECTION */
.shows-section {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}

.shows-section h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
}

.swiper.showsSwiper {
  padding: 60px 20px;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto !important;
  flex-shrink: 0;
  width: 100% !important;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* TARJETA DE SHOW */
.show-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  background: linear-gradient(145deg, #1c1c1c, #222);
  border: 2px solid #ffffff;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 250px;
  min-height: 180px;
  max-height: 280px;
  box-shadow: 0 0 10px #fff;
  text-align: center;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #fff;
}

.show-date {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

.show-location {
  font-size: 1rem;
  color: #ccc;
  margin: 0;
}

.btn-ticket {
  margin-top: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 1);
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-ticket:hover {
  background: rgba(255, 255, 255, 0.6);;
  color: #000;
}



/* FLECHAS SWIPER */
.shows-nav {
  color: #ffffff;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev.shows-nav {
  left: -25px;
}

.swiper-button-next.shows-nav {
  right: -25px;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #aaa;
  font-size: 0.9rem;
}

/* Mostrar botón de menú SOLO en móviles */
.menu-button {
  display: block;
}

@media (min-width: 769px) {
  .menu-button {
    display: none !important;
  }
}

.shows-section {
  position: relative;
  padding: 80px 20px 40px;
  height: 600px;
  background-image: url('../assets/img/bg-shows.jpg'); 
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.shows-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shows-section h2,
.shows-section .swiper {
  position: relative;
  z-index: 2;
}


.albums-section {
  padding: 100px 20px;
  background-color: #000;
  text-align: center;
  color: #fff;

}

.albums-section h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
}

.album-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.album-card {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-cover {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.album-cover .cover {
  width: 280px;
  height: 280px;
  border-radius: 8px;
  object-fit: cover;
  z-index: 2;
}

.album-cover .vinyl {
  position: absolute;
  left: 0;
  transform: translateX(0%) scale(0.95);
  width: 200px;
  transition: transform 0.5s ease;
  z-index: 1;
}

.album-cover:hover .vinyl {
  transform: translateX(110%) scale(1); 
}


.album-card:hover .vinyl {
  right: -10px;
}

.album-info {
  margin-top: 20px;
}

.album-info h3 {
  font-size: 1.2rem;
  margin: 5px 0;
}

.album-info p {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.album-links a {
  display: inline-block;
  margin: 0 5px;
}

.album-links img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.album-links img:hover {
  transform: scale(1.2);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
  justify-items: center;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Para móviles: solo 1 por fila */
@media (max-width: 768px) {
  .album-grid {
    grid-template-columns: 1fr;
  }
}

.swiper-wrapper {
  height: auto !important;
  align-items: stretch;
}

#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader-content {
  text-align: center;
}
#loader-logo {
  width: 120px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  animation: spinAndPulse 2.5s linear infinite;
}

@keyframes spinAndPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#loader-percent {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
}



#loader.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease;
}


@media (max-width: 768px) {
  .album-cover {
    width: 200px;
    height: 200px;
  }

  .album-cover .cover {
    width: 200px;
    height: 200px;
  }

  .album-cover .vinyl {
    width: 140px;
    left: 0;
    transform: translateX(0%);
  }

  .album-cover:hover .vinyl {
    transform: translateX(100%);
  }

  .album-info h3 {
    font-size: 1rem;
  }

  .album-info p {
    font-size: 0.9rem;
  }

  .album-links img {
    width: 22px;
    height: 22px;
  }
}


.youtube-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}


.video-background {
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  max-height: 100vh;
}

@media (max-width: 768px) {
  .video-background {
    width: 177.77vh; /* 16:9 aspect based on height */
    height: 100vh;
  }
}

.video-background iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  pointer-events: none !important;
   filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.local-video-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.local-slide-video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  min-width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}


.section-title {
  text-align: center;
  padding: 60px 20px 0px;
}

.section-title h2 {
  font-size: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
}


.gira-section {
  position: relative;
  background: url('../assets/img/bg-shows.jpg') no-repeat center center/cover;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 20px;
  min-height: 70vh; 
}

.gira-section2 {
  position: relative;
  background: url('../assets/img/slide2.jpg') no-repeat center center/cover;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 20px;
  min-height: 70vh; 
  margin-top:6%;
}

@media (max-width: 768px) {
  .gira-section {
  position: relative;
  background: url('../assets/img/bg-shows-mobile.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px;
}
.gira-btn {
  margin-top: 200px;
}
}



.gira-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.gira-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
}

.gira-content2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  gap: 30%;
  margin-top: 10% !important;
  margin: auto;
}

.gira-text {
  flex: 1;
  color: #fff;
}

.gira-text img {
  width: 60%;
  margin-bottom: 10px;
  margin-left: -80px;
}


.gira-figure {
  flex: 1;
  text-align: center;
}

.gira-figure img {
  max-height: 400px;
  width: auto;
}

.gira-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gira-btn {
  padding: 12px 24px;
  font-family: 'HeadingNow', sans-serif;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.8rem;
}

.gira-side-img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 768px) {
  .gira-content {
    flex-direction: column;
    text-align: center;
  }

  .gira-figure img {
    max-height: 300px;
  }

  .gira-side-img {
    max-width: 150px;
  }
}

.animated-scroll {
  transform: translateX(-200px);
  will-change: transform;
  transition: transform 0.1s ease-out;
}


.btn-border-reveal {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  position: relative;
}

.btn-border-reveal::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  transition: width 0.5s ease;
  z-index: -1;
}

.btn-border-reveal:hover::after {
  width: 100%;
}

.btn-border-reveal:hover {
  color: #000000;
}


.dimelo-jara-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.dimelo-jara-video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  pointer-events: none;
  margin-top: 40px;
  min-height: 770px;
}

@media (max-width: 768px) {
  .btn-border-reveal-jara {
  margin-top: -250px !important;
}
}


.btn-border-reveal-jara {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  position: relative;
  margin-top: -20%;
}

.btn-border-reveal-jara::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  transition: width 0.5s ease;
  z-index: -1;
  color: #000000;
}

.btn-border-reveal-jara:hover::after {
  width: 100%;
}

.btn-border-reveal-jara:hover {
  color: #000000;
  z-index: 8;
}


.mobile-video-display {
  display:none;
}
.desktop-video-display {
  display:block;
}

@media (max-width: 768px) {
.desktop-video-display {display:none !important;}
.mobile-video-display {display:block !important;}
}

.shows-list-section {
  background-color: #000000;
  color: #fff;
  padding: 0;
  text-align: center;
}

.shows-banner img {
  width: 100%;
  height: auto;
}

.shows-gif {
  margin-top: -10px;
  padding: 40px 0 10px;
}

.shows-gif img {
  max-width: 300px;
  height: auto;
  margin-top: 3%;
}

.shows-title {
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 20px 0 30px;
  text-transform: uppercase;
  font-weight: 600;
}

.shows-table {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.show-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #555;
  padding: 15px 0;
  flex-wrap: wrap;
}

.show-date {
  flex: 1;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
}

.show-info {
  flex: 2;
  text-align: left;
  font-size: 1rem;
  line-height: 1.3;
}

.show-ticket {
  flex: 1;
  text-align: right;
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .show-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .show-date, .show-info, .show-ticket {
    flex: none;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }

  .show-ticket {
    text-align: left;
  }

  .shows-gif img {
    width: 200px;
    margin-top: 18%;
  }

  .shows-title {
    font-size: 1.8rem;
  }
}


@media (max-width: 768px) {
  .show-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .show-date,
  .show-info,
  .show-ticket {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }

  .show-ticket {
    margin-top: 5px;
  }
}


.banner-img {
  width: 100%;
  height: auto;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

@media (max-width: 768px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }
}

.videos-slider333 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-slide333 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.slider-video333 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.menu-links li {
  opacity: 0;
  transform: translateY(var(--from-top, -40px));
  animation: slideFromButton 0.5s ease forwards;
}

.menu-links li:nth-child(1) { animation-delay: 0.1s; }
.menu-links li:nth-child(2) { animation-delay: 0.2s; }
.menu-links li:nth-child(3) { animation-delay: 0.3s; }
.menu-links li:nth-child(4) { animation-delay: 0.4s; }
.menu-links li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideFromButton {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-links.animate li {
  animation: none;
}


.menu-close-wrapper {
  position: absolute;
  top: var(--menu-button-top, 30px);
  left: var(--menu-button-left, 30px);
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close {
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.menu-close-spinner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: spinSpinner 0.8s linear;
  z-index: 1;
}

@keyframes spinSpinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Solo en desktop, ocultar al inicio */
@media (min-width: 769px) {
  .site-header.overlay-header {
    opacity: 0;
    pointer-events: none;
  }

  .site-header.visible {
    opacity: 1;
    pointer-events: auto;
  }
}

.empresas-section {
  background-color: #000;
  padding: 80px 20px;
  text-align: center;
}

.empresas-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'HeadingNow', sans-serif;
}

.empresas-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.empresas-list li {
  color: #fff;
  font-size: 1.3rem;
  margin: 15px 0;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
  font-family: 'LTAmber', sans-serif;
  margin-bottom: 3%;
}

.empresas-list li a{
  color: #fff;
  font-size: 2.5rem;
  margin: 15px 0;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'LTAmber', sans-serif;
  text-decoration: none;
}

.empresas-list li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.4s ease, left 0.4s ease;
}

.empresas-list li:hover {
  transform: scale(1.05);
  color: #fff;
}

.empresas-list li:hover::after {
  width: 100%;
  left: 0;
}



.empresas-btn {
  padding: 16px 32px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.empresas-btn:hover {
  background-color: #fff;
  color: #000;
}

.empresas-section {
  animation: fadeInUp 1s ease forwards;
}

.empresas-list {
  list-style: none;
  padding: 0;
  margin: 60px auto 0;
  max-width: 800px;
}

.empresas-list li {
  font-size: 1.8rem;
  color: #fff;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(-40px);
  animation: slideDown 0.5s ease forwards;
}

.empresas-list li:nth-child(1) { animation-delay: 0.2s; }
.empresas-list li:nth-child(2) { animation-delay: 0.4s; }
.empresas-list li:nth-child(3) { animation-delay: 0.6s; }
.empresas-list li:nth-child(4) { animation-delay: 0.8s; }
.empresas-list li:nth-child(5) { animation-delay: 1.0s; }
.empresas-list li:nth-child(6) { animation-delay: 1.2s; }
.empresas-list li:nth-child(7) { animation-delay: 1.4s; }
.empresas-list li:nth-child(8) { animation-delay: 1.6s; }

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.empresas-close {
  margin-top: 40px;
  padding: 7px 10px;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'HeadingNow', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.empresas-close:hover {
  background-color: #fff;
  color: #000;
}

.dimelo-jara-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.gira-side2 {
   position: absolute;
  top: 50%;
  z-index: 2;
}

.empresas-section {
 position: absolute;
  top: 25%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  transform: translateX(-50%);
}

.empresas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.empresas-list li {
  margin-bottom: 10px;
}

.empresas-list li a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.empresas-list li a:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.active-link {
  color: #00b3ff !important;
  font-weight: bold !important;
}

@media (min-width: 769px) {
.active-link {
  color: #ffffff !important;
  border-bottom: 2px solid #ffffff !important;
}
}