/* Compensar altura del navbar fijo */
body {
	  padding-top: 90px;
  }

  /* Estilos del header opcionales */
  .navbar-brand div {
	    line-height: 1.2;
    }

    .navbar-nav .nav-link {
	      font-weight: 500;
      }


#repertorio .card-title {
	  font-weight: bold;
	    font-size: 1.2rem;
    }

    #repertorio .card {
	      transition: transform 0.3s ease;
      }

      #repertorio .card:hover {
	        transform: translateY(-5px);
}

#galeria img.gallery-img {
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
	    cursor: zoom-in;
}

    #galeria img.gallery-img:hover {
	      transform: scale(1.05);
	        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}


#galeria img.gallery-img {
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
	    cursor: pointer;
    }

    #galeria img.gallery-img:hover {
	      transform: scale(1.05);
	        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	}

	.modal-body img {
		  max-height: 80vh;
		    object-fit: contain;
   }

.video-card {
	  cursor: pointer;
	    transition: transform 0.2s ease;
    }

    .video-card:hover {
	      transform: scale(1.02);
 }

.navbar-brand small {
    display: block;
    white-space: normal;
    font-size: 0.75rem;
    line-height: 1.1;
}

 .whatsapp-float {
	   position: fixed;
	     bottom: 20px;
	       right: 20px;
	         background-color: #25d366;
		   color: white;
		     font-size: 20px;
		       padding: 10px 15px;
		         border-radius: 30px;
			   display: flex;
			     align-items: center;
			       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
			         z-index: 999;
				   text-decoration: none;
				     transition: transform 0.3s ease, background-color 0.3s ease;
			     }

			     .whatsapp-float:hover {
				       transform: scale(1.05);
				         background-color: #1ebe5d;
				 }

				 .whatsapp-float i {
					   font-size: 26px;
					     margin-left: 10px;
				     }

				     .whatsapp-text {
					       font-weight: bold;
				       }

/*              
@keyframes typing {
         0% { width: 0; }
   50% { width: 11ch; } 
  100% { width: 0; }
}

@keyframes blink {
	  0%, 100% { border-color: transparent; }
	    50% { border-color: white; }
    }

    .typewriter {
	      display: inline-block;
	        overflow: hidden;
		  white-space: nowrap;
		    border-right: 2px solid white;
		      animation: typing 3s steps(11) infinite, blink 0.75s step-end infinite;
	      }
*/
.footer {
	  background: #111;
	    color: #fff;
	      font-size: 14px;
	        border-top: 4px solid #25d366;
		  margin-top: 50px;
	  }

	  .footer a {
		    text-decoration: none;
		      color: #fff;
		        transition: color 0.3s ease;
		}

		.footer a:hover {
			  color: #25d366;
		  }

		  .footer .social-icons a {
			    color: #fff;
			      transition: color 0.3s ease;
		      }

		      .footer .social-icons a:hover {
			        color: #25d366;
	}

.fade-in {
	  opacity: 0;
	    transform: translateY(20px);
	      transition: all 0.8s ease-in-out;
      }

      .fade-in.visible {
	        opacity: 1;
		  transform: translateY(0);
	  }



.video-card {
  border: 3px solid #e2c044;
  border-radius: 10px;
  background: linear-gradient(to bottom, #1f1f1f, #2d2d2d);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
  font-family: 'Courier New', Courier, monospace;
}

.video-card:hover {
  transform: scale(1.03);
}

.video-thumb {
  filter: grayscale(30%) contrast(1.2) brightness(0.9);
  border-bottom: 2px dashed #e2c044;
}

.card-title {
  color: #e2c044;
  text-shadow: 1px 1px 2px black;
  font-weight: bold;
  font-size: 1.1rem;
}

/* VHS Effect on modal */
#videoModal .modal-content {
  border: 5px solid #e2c044;
  box-shadow: 0 0 20px #e2c044, 0 0 40px #111 inset;
  font-family: 'Courier New', Courier, monospace;
}

#videoFrame {
  filter: sepia(0.2) saturate(1.2) contrast(1.1);
}



.carousel-item img {
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  animation: movieGrain 0.7s infinite alternate;
  object-fit: cover;
  width: 100%;
  height: auto;
  filter: contrast(1.1) brightness(0.95) sepia(5%);
}


@keyframes movieGrain {
  0% {
    filter: brightness(0.93) contrast(1.2) sepia(8%) grayscale(5%);
  }
  100% {
    filter: brightness(1.03) contrast(1.15) sepia(10%) grayscale(10%);
  }
}


.carousel-item::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg width="2" height="2" viewBox="0 0 2 2" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  opacity: 0.3;
  animation: flicker 0.4s infinite alternate;
  z-index: 2;
}

@keyframes flicker {
  0% { opacity: 0.25; }
  100% { opacity: 0.35; }
}



/* Opcional: fondo tipo sala de cine */
#sliderImpactos {
  background: radial-gradient(ellipse at center, #111 0%, #000 100%);
  padding: 20px;
  border-radius: 20px;
}


