/*----------------------------------------------Video-----------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

.animated-video-section {
  position: relative;
  padding: 4rem 0;
  margin: 3rem 0;
  overflow: hidden;
  background: #ffffff; /* Fondo blanco */
}

/* Diseño del banner */
.video-title-container {
  position: relative;
  padding: 4rem 1rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #E23E4C 0%, #8A1A1A 100%);
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.video-title-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, 
    transparent 44%,
    rgba(0,0,0,0.1) 45%,
    rgba(0,0,0,0.1) 46%,
    transparent 47%,
    transparent 54%,
    rgba(0,0,0,0.1) 55%,
    rgba(0,0,0,0.1) 56%,
    transparent 57%
  );
  opacity: 0.15;
  background-size: 100% 60px;
}

.vinyl-video {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #2d2d2d 0%, #000 100%);
  animation: spin 15s linear infinite;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-video::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #E23E4C;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
}

.vinyl-video.left { left: 10%; top: 50%; transform: translateY(-50%); }
.vinyl-video.right { right: 10%; top: 50%; transform: translateY(-50%); }

.note-icon-video {
  position: absolute;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  animation: noteFloat 3.5s ease-in-out infinite;
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

.video-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, rgba(226,62,76,0.9) 0%, rgba(138,26,26,0.9) 100%);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transform: skewX(-3deg);
  position: relative;
  z-index: 4;
}

@keyframes noteFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { transform: translateY(-15px) rotate(8deg); opacity: 1; }
}

@keyframes spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Contenido del video */
.video-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.video-container {
  max-width: 900px;
  width: 65%;
  margin-right: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Sombra más suave */
  transition: box-shadow 0.3s ease;
  background: #fff;
  border: 3px solid rgba(226, 62, 76, 0.1);
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1;
}

.featured-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-container:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Botón de YouTube ajustado */
.tooltip-container {
  --color: #FF3D00;
  --border: rgba(255, 61, 0, 0.25);
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}

.tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  width: 220px;
  border: 1px solid rgba(0,0,0,0.05);
}

.profile {
  background: rgba(255, 61, 0, 0.05);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--border);
}

.tooltip-container:hover .tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}

.layer {
  width: 70px;
  height: 70px;
  transition: transform 0.3s;
  position: relative;
}

.layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 2px solid var(--color);
  border-radius: 50%;
  transition: all 0.3s;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 12px;
  z-index: 10;
}

.svg svg {
  width: 100%;
  height: 100%;
}

.svg path:first-child {
  fill: var(--color);
  transition: fill 0.3s;
}

.svg path:last-child {
  fill: #fff;
  transition: fill 0.3s;
}

.tooltip-container:hover .svg path:first-child {
  fill: #fff;
}

.tooltip-container:hover .svg path:last-child {
  fill: var(--color);
}

.icon:hover .layer {
  transform: rotate(-35deg) skew(20deg);
}

.tooltip-container:hover .layer span {
  border-radius: 10px;
  background: var(--color);
}

.icon:hover .layer span:nth-child(1) { opacity: 0.2; }
.icon:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
.icon:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
.icon:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}

.icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 700;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
  color: var(--color);
  z-index: 20;
}

.icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

.user {
  display: flex;
  gap: 10px;
  align-items: center;
}

.img {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color);
}

.name {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.username {
  color: var(--color);
}

.about {
  color: rgba(0, 0, 0, 0.7);
  padding-top: 5px;
}

/*----------------------------------------------Responsive-----------------------------------------------*/

@media (max-width: 1200px) {
  .video-container {
    max-width: 800px;
    width: 85%;
    margin: 0 auto 2rem;
  }
  
  .video-title {
    font-size: 2.2rem;
    padding: 1.5rem 3rem;
    transform: skewX(0);
  }
  
  .video-content-wrapper {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .video-content-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
  }
  
  .video-container {
    width: 85%;
    margin: 0 auto 3rem;
  }
  
  .tooltip-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .video-title {
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
    text-align: center;
  }
  
  .video-container {
    width: 90%;
    margin-bottom: 2.5rem;
  }
  
  .vinyl-video {
    width: 30px;
    height: 30px;
    top: 40% !important;
  }
  
  .note-icon-video {
    display: none;
  }
  
  .tooltip {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .video-container {
    width: 95%;
    aspect-ratio: 16/9;
    margin: 0 auto 2rem;
  }
  
  .video-title {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    letter-spacing: 1px;
  }
  
  .tooltip-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .tooltip {
    position: relative;
    width: 90%;
    max-width: 280px;
    margin: 1rem auto 0;
    left: 0;
    transform: none;
    padding: 1rem;
  }
  
  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .user {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .icon .text {
    position: static;
    margin-top: 0.5rem;
  }
}

@media (max-width: 400px) {
  .video-title {
    font-size: 1.3rem;
    padding: 0.8rem 1rem;
  }
  
  .video-container {
    width: 98%;
    border-radius: 12px;
  }
  
  .tooltip {
    width: 100%;
    padding: 0.8rem;
  }
}

/* ==================== Banner Musical de PROYECTOS ==================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

.proyectos-banner {
    position: relative;
    padding: 3rem 1rem;
    margin: 2rem 0;
    background: linear-gradient(45deg, #E23E4C 0%, #8A1A1A 100%);
    overflow: hidden;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    height: 190px; /* 5cm aprox */
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-staff {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, 
        transparent 44%,
        rgba(0,0,0,0.1) 45%,
        rgba(0,0,0,0.1) 46%,
        transparent 47%,
        transparent 54%,
        rgba(0,0,0,0.1) 55%,
        rgba(0,0,0,0.1) 56%,
        transparent 57%
    );
    opacity: 0.15;
    background-size: 100% 60px;
}

.proyectos-title-container {
    position: relative;
    padding: 1.5rem 3rem;
    z-index: 4;
    background: linear-gradient(135deg, rgba(226,62,76,0.9) 0%, rgba(138,26,26,0.9) 100%);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transform: skewX(-3deg);
}

.proyectos-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transform: skewX(3deg);
}

.music-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.note-icon {
    position: absolute;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    animation: noteFloat 3.5s ease-in-out infinite;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

/* Vinilos animados */
.vinyl {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2d2d2d 0%, #000 100%);
    animation: spin 15s linear infinite;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #E23E4C;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
}

.vinyl.left {
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.vinyl.right {
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-15px) rotate(8deg); opacity: 1; }
}

/* Versión móvil */
@media (max-width: 768px) {
    .proyectos-banner {
        height: 160px;
        padding: 2rem 1rem;
    }
    
    .proyectos-title {
        font-size: 2rem;
    }
    
    .proyectos-title-container {
        padding: 1rem 2rem;
        transform: skewX(-2deg);
    }
    
    .note-icon {
        font-size: 1rem;
    }
    
    .vinyl {
        width: 30px;
        height: 30px;
    }
    
    .vinyl::after {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 576px) {
    .proyectos-banner {
        height: 140px;
    }
    
    .proyectos-title {
        font-size: 1.6rem;
        transform: skewX(0);
    }
    
    .proyectos-title-container {
        transform: skewX(0);
        padding: 0.8rem 1.5rem;
    }
    
    .music-notes,
    .vinyl {
        display: none;
    }
}

/*-------------------------------------------Titulo-----------------------------------------------*/

/* Estilos del encabezado */
.section-header {
  text-align: center;
  padding: 20px 20px 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.3rem;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-family: 'Arial', sans-serif;
}

.section-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: #ff4444;
  margin: 8px auto 0;
}

/*------------------------------------------- Iconos Redes Sociales -----------------------------------------------*/

.wrapper {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 15px 0; /* Se bajaron los iconos 0.5 cm (5px) */
}

.wrapper .icon {
  position: relative;
  background: #ffffff;
  border-radius: 50%;
  margin: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Icono en estado normal */
.wrapper .icon svg {
  fill: #000; /* Icono negro */
  transition: all 0.3s ease-in-out;
  width: 24px;
  height: 24px;
}

/* Tooltip eliminado */
.wrapper .tooltip {
  display: none;
}

/* Facebook */
.wrapper .facebook:hover {
  background: #1877f2;
}

.wrapper .facebook:hover svg {
  fill: #ffffff;
}

/* Instagram */
.wrapper .instagram:hover {
  background: #e4405f;
}

.wrapper .instagram:hover svg {
  fill: #ffffff;
}

/*-----------------------------------------------------------Carrusel-------------------------------------------------------------*/
.custom-carousel {
  padding: 0px 0 0px; /* 60px arriba - 0 lados - 40px abajo (2cm menos) */
  background: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 80px;
}

.carousel {
  display: flex;
  gap: 15px;
  padding: 30px 0;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 calc(25% - 12px);
  min-width: calc(25% - 12px);
  height: 400px;
  background: #f5f5f5;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  scroll-snap-align: start;
  position: relative;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 5px;
}

.close-modal {
  position: absolute;
  top: 25px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 24px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.nav-button:hover {
  background: #000;
  transform: translateY(-50%) scale(1.1);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Responsive */
@media (max-width: 1200px) {
  .card {
    flex: 0 0 calc(33.333% - 12px);
    min-width: calc(33.333% - 12px);
    height: 350px;
  }
  .carousel-container { padding: 0 60px; }
}

@media (max-width: 768px) {
  .card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
    height: 300px;
  }
  .carousel-container { padding: 0 40px; }
  .nav-button { 
    width: 40px; 
    height: 40px; 
    font-size: 20px; 
  }
}

@media (max-width: 480px) {
  .card {
    flex: 0 0 100%;
    min-width: 100%;
    height: 250px;
  }
  .carousel-container { padding: 0 20px; }
  .nav-button { 
    width: 35px; 
    height: 35px; 
    font-size: 18px; 
  }
}


/*-----------------------------------------------------------Video Camp----------------------------------------------------------*/
.vc-section {
  padding: 40px 0; /* Padding normalizado */
  background: white;
  position: relative;
  z-index: 1;
  margin-top: 0; /* Eliminamos el margen negativo */
}

.vc-header {
  text-align: center;
  padding: 20px 20px 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.vc-title {
  font-size: 2.3rem;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-family: 'Arial', sans-serif;
}

.vc-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: #ff4444;
  margin: 8px auto 0;
}

.vc-container {
  max-width: 1400px;
  margin: 20px auto 0; /* Margen superior agregado */
  padding: 0 20px;
  transform: none; /* Eliminamos transformación anterior */
}

.vc-video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .vc-title { font-size: 1.8rem; }
  .vc-container { padding: 0 15px; }
}

@media (max-width: 480px) {
  .vc-title { font-size: 1.5rem; }
  .vc-video { border-radius: 8px; }
}

/*--------------------Sorteos----------------*/
.ella-suena-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 25px;
  padding: 30px 20px;
  margin: 0 auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  scroll-padding: 20px; /* Espacio para el snap */
}

.ella-suena-card {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 8px;
  scroll-snap-align: center;
  display: inline-flex; /* Cambiado a inline-flex */
  transition: transform 0.3s ease;
  overflow: hidden;
  width: 800px; /* Ancho basado en la imagen */
  height: 800px; /* Alto basado en la imagen */
  max-width: 90vw; /* Límite máximo */
}

.ella-suena-img {
  width: auto;
  height: auto;
  max-width: 600px;
  max-height: 70vh;
  min-width: 250px;
  min-height: 150px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* Efecto hover mejorado */
.ella-suena-card:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Scrollbar personalizada */
.ella-suena-container::-webkit-scrollbar {
  height: 6px;
}

.ella-suena-container::-webkit-scrollbar-thumb {
  background: #E23E4C;
  border-radius: 4px;
}

.ella-suena-container::-webkit-scrollbar-track {
  background: rgba(226, 62, 76, 0.08);
}

/* Responsividad - Versión Mejorada */
@media (max-width: 1440px) {
  .ella-suena-card {
    width: 600px;
    height: 600px;
    max-width: 85vw;
  }
  
  .ella-suena-img {
    max-width: 550px;
    max-height: 60vh;
  }
}

@media (max-width: 1200px) {
  .ella-suena-container {
    gap: 20px;
    padding: 25px 15px;
  }
  
  .ella-suena-card {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 992px) {
  .ella-suena-card {
    width: 400px;
    height: 400px;
    max-width: 80vw;
  }
  
  .ella-suena-img {
    max-width: 380px;
    max-height: 55vh;
  }
}

@media (max-width: 768px) {
  .ella-suena-container {
    padding: 20px 12px;
    gap: 18px;
    scroll-padding: 15px;
  }
  
  .ella-suena-card {
    width: 320px;
    height: 320px;
    padding: 6px;
    border-radius: 10px;
  }
  
  .ella-suena-img {
    max-width: 300px;
    max-height: 50vh;
    min-width: 220px;
    min-height: 120px;
    border-radius: 6px;
  }
}

@media (max-width: 576px) {
  .ella-suena-container {
    padding: 15px 10px;
    gap: 15px;
  }
  
  .ella-suena-card {
    width: 280px;
    height: 280px;
    max-width: 90vw;
  }
  
  .ella-suena-img {
    max-width: 260px;
    max-height: 45vh;
  }
}

@media (max-width: 480px) {
  .ella-suena-card {
    width: 240px;
    height: 240px;
    padding: 4px;
    border-radius: 8px;
  }
  
  .ella-suena-img {
    max-width: 220px;
    max-height: 40vh;
    min-width: 180px;
    min-height: 100px;
  }
  
  .ella-suena-container {
    padding: 12px 8px;
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .ella-suena-card {
    width: 200px;
    height: 200px;
  }
  
  .ella-suena-img {
    max-width: 180px;
    max-height: 35vh;
  }
}
  
/*----------boton-----------*/
  /* Botón personalizado para la sección de aviso */
.btn-aviso-shure {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 16px;
    font-weight: 700;
    color: #84B9D3(0, 0, 0);
    border: 3px solid rgb(252, 70, 100);
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
  }
  
  .btn-aviso-shure::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(252, 70, 100);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
  }
  
  .btn-aviso-shure:hover::before {
    transform: translateX(0);
  }
  

/* Contenedor del video, botón e imagen */
#aviso-shure-video {
    max-width: 100%;
    padding: 20px 0;
    overflow: hidden; /* Evita scroll horizontal */
}

/* Distribución correcta con más proximidad al botón */
#aviso-shure-video .row {
    display: flex;
    justify-content: center; /* Asegura alineación */
    align-items: center;
    flex-wrap: nowrap; /* Mantiene los elementos en una sola fila */
    gap: 0px; /* Se elimina el espacio innecesario */
}

/* Video e imagen con márgenes negativos para acercarse al botón */
.video-aviso {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-right: -60px; /* Acerca el video al botón */
}

#aviso-shure-video .col-md-4 img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-left: -60px; /* Acerca la imagen al botón */
}

/* Botón centrado */
.btn-aviso-shure {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 16px;
    font-weight: 700;
    color: rgb(71, 153, 221);
    border: 3px solid rgb(252, 70, 100);
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
    margin: 0 auto; /* Mantiene el botón centrado */
}

.btn-aviso-shure::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(252, 70, 100);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.btn-aviso-shure:hover::before {
    transform: translateX(0);
}

/* Ajuste responsivo para móviles */
@media (max-width: 992px) {
    #aviso-shure-video .row {
        flex-wrap: wrap; /* Permite que los elementos se acomoden en varias líneas */
        justify-content: center; /* Centra los elementos */
    }

    .video-aviso,
    #aviso-shure-video .col-md-4 img {
        max-width: 100%; /* Permite que ocupen todo el ancho en móviles */
        margin: 0; /* Se eliminan los márgenes negativos en móviles */
    }
}



/*--------------------------------------- Slider---------------------------------------------------*/

/* Contenedor general del slider y botones */
.slider-container-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
}

/* ========== Contenedor del Slider ========== */
.slider-container {
  overflow: hidden;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========== Wrapper para las imágenes (se mueve al cambiar de slide) ========== */
.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: calc(100% * 3); /* Asegura que las imágenes no se desborden */
}

/* ========== Cada imagen en el slider ========== */
.slider-item {
  flex: 0 0 50%; /* Muestra dos imágenes a la vez */
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Asegurar que las imágenes mantengan su tamaño original */
.slider-item img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 10px;
}

/* ========================== */
/* 🔹 Botones de Navegación 🔹 */
/* ========================== */

/* Ajuste para que los botones estén fuera del slider */
.button-3d {
  -webkit-appearance: none;
  appearance: none;
  border-width: 0;
  padding: 0 8px;
  min-width: 4em;
  min-height: 4em;
  box-sizing: border-box;
  background: transparent;
  font: inherit;
  cursor: pointer;
  margin: 10px;
  border-radius: 20px;
  z-index: 10; /* Asegura que estén sobre el slider */
}

/* Botón izquierdo (fuera del slider) */
.prev-button {
  position: absolute;
  left: -70px;
}

/* Botón derecho (fuera del slider) */
.next-button {
  position: absolute;
  right: -70px;
}

/* Efecto visual de los botones */
.button-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 8px 16px;
  transform: translateY(0);
  color: #fff;
  background-image: linear-gradient(145deg, #E23E4C, #F5635B);
  text-shadow: 0 -1px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  transition: transform 0.3s, border-radius 0.3s, background 10s;
}

.button-3d:active .button-top {
  border-radius: 10px 10px 8px 8px / 8px;
  transform: translateY(2px);
  background-image: linear-gradient(145deg, #F1456C, #A42817);
}

/* ========================== */
/* 🔹 Ajustes Responsivos 🔹 */
/* ========================== */

@media (max-width: 768px) {
  .slider-item {
      flex: 0 0 100%; /* Muestra 1 imagen por slide en móviles */
      max-width: 100%;
  }

  /* Botones más separados en móviles */
  .prev-button {
      left: -40px; /* Antes -30px, ahora más separado */
  }

  .next-button {
      right: -40px; /* Antes -30px, ahora más separado */
  }
}



