
        /* [Keeping your original CSS styles unchanged] */
        :root {
            --negro-cine: #0a0a0a;
            --negro-claro: #151515;
            --dorado: #c5a059;
            --gris-texto: #b0b0b0;
			--black: #0a0a0a;
            --dark-gray: #1a1a1a;
            --gold: #d1a347;
            --amber: #ffb347;
            --light-gray: #f5f5f5;
            --white: #ffffff;			
            --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
			--fuente-texto: 'Inter', sans-serif;
			--fuente-titulos: 'Crimson Text', serif;
        }

        body {
			 font-family: 'Inter', sans-serif;
            background-color: var(--negro-cine);
            color: white;
            scroll-behavior: smooth;
        }
		
		.bg-cine-3 { background-color: #000000; }

		h1, h2, h3, .navbar-brand {
		font-family: var(--fuente-titulos);
		font-weight: 600;
		letter-spacing: 1px;
		}

        .navbar { 
            background: rgba(0, 0, 0, 0.95) !important; 
            border-bottom: 1px solid rgba(197, 160, 89, 0.2);
        }
        .nav-link { color: white !important; font-weight: 300; letter-spacing: 1px; }
        .nav-link:hover { color: var(--dorado) !important; }
		
		.nav-custom {
			background: rgba(0, 0, 0, 1);
			padding: 14px 0;
			transition: all 0.5s ease-in-out;
			border-bottom: 1px solid rgba(197, 160, 89, 0.1);
		}

		.nav-custom.scrolled {
			padding: 8px 0;
			background: rgba(0, 0, 0, 0.75) !important;
			backdrop-filter: blur(10px);
		}

		.nav-link {
			color: white !important;
			font-weight: 300;
			letter-spacing: 2px;
			font-size: 0.9rem;
		}

        section { padding: 100px 0; overflow: hidden; }
        .bg-cine-1 { background-color: var(--negro-cine); }
        .bg-cine-2 { background-color: var(--negro-claro); }

        .section-title { 
            font-size: 2.8rem; 
            margin-bottom: 40px; 
            color: var(--dorado);
            font-style: italic;
        }

		.section-title::after {
		content: '';
		display: block;
		width: 60px;
		height: 2px;
		background: var(--gold);
		margin: 16px auto 0;
		}
		
		@media (max-width: 992px) { .section-title { font-size: 2.5rem; } }
		@media (max-width: 768px) { .section-title { font-size: 2.2rem; } }
		@media (max-width: 576px) { .section-title { font-size: 1.8rem; } }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/gerardo.jpg'); 
            background-size: cover;
            background-position: center;
            text-align: center;
        }
		.text-shadow{ text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); }
		
			@media (max-width: 768px) {
			  .hero {
				background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/gerardo-hero-mobile.jpg');
				background-position: center;
			  }
			  .hero h1 { font-size: 28px; }
			  .hero .lead { font-size: 15px !important; }
			}
			
        .bio-header { margin-bottom: 80px; }
        .bio-text { 
		line-height: 1.7; 
		color: var(--white); 
		font-weight: 400; 
		margin: 0 auto;
		text-align: left;
		}

        .musician-img {
            width: 100%;
            filter: grayscale(20%) contrast(105%);
            border: 1px solid rgba(197, 160, 89, 0.3);
            box-shadow: -6px 5px 7px var(--negro-cine);
        }

        .list-custom { list-style: none; padding-left: 0; }
        .list-custom li { 
            margin-bottom: 18px; 
            padding-left: 20px; 
            border-left: 2px solid var(--dorado);
            color: #dadada;
            font-size: 0.96rem;
        }
		
		.small-text{
			color: var(--gris-texto);
            font-size: 0.96rem;
		}

        .habilidades-box {
            background:rgb(255 255 255 / 5%);
            padding: 25px;
            border-radius: 20px;
            margin-top: 35px;
            border-right: 4px solid #c48a1b;
        }

        .btn-dorado {
            background: transparent;
            color: var(--dorado);
            border: 1px solid var(--dorado);
            border-radius: 7px;
            padding: 15px 40px;
            letter-spacing: 2px;
            transition: 0.4s;
        }
        .btn-dorado:hover { background: var(--dorado); color: black; }
		
		.custom-toggler.navbar-toggler {
			border-color: rgba(197, 160, 89, 0.5);
			padding: 0.25rem 0.5rem;
		}

		.custom-toggler .navbar-toggler-icon {
			background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(197, 160, 89, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
		}

		@media (max-width: 991px) {
			.navbar-collapse {
				text-align: center;
				background: rgba(0, 0, 0, 0.9);
				padding-bottom: 20px;
			}
		}
		
		.text-muted { color: rgb(158 158 158 / 75%) !important; }
		
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            background-color: #1a1a1a;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            opacity: 1;
            transition: opacity 0.8s, transform 0.8s;
			border-radius:10px;
        }

        .project-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .project-image {
            height: 200px;
            background-size: cover;
            background-position: center;
			transition: transform 0.6s ease;
        }
		
		.project-card:hover .project-image { transform: scale(1.04); }

        .project-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .project-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #d1a347;
        }
		
		.container-custom {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2rem;
		}
		
        .audio-section {
            position: relative;
            overflow: hidden;
		 background-image: url('../img/57f69.jpg');
		 background-size: cover;
		 background-position: center;
		 background-repeat: no-repeat;
		 background-attachment: fixed;
		 margin: 0 auto;
		 max-width: 95%;
		 border-radius: 10px;
        }
		
		.audio-section:after {
		content: '';
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.40);
		z-index: 0;
        }

        .audio-container {
        max-width: 800px;
		margin: 0 auto;
		position: relative;
		z-index: 1;
        }

        .audio-intro {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: rgba(245, 245, 245, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .audio-player-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .audio-player {
            background-color: rgba(26, 26, 26, 0.85);
            border: 1px solid rgba(200, 169, 126, 0.2);
            padding: 1.2rem;
            border-radius: 15px;
            transition: var(--transition);
            opacity: 1;
        }

        .audio-player.visible { opacity: 1; transform: translateY(0); }

        .audio-player:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .audio-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .audio-title {
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 0.3rem;
        }

        .audio-album {
            font-size: 0.85rem;
            color: rgba(245, 245, 245, 0.7);
            font-style: italic;
        }

        .audio-year {
            background-color: #d1a347;
            color: var(--black);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .audio-controls-compact {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.8rem;
        }

        .play-btn-compact {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color:  #d1a347;
            color: var(--black);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .play-btn-compact:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(200, 169, 126, 0.5);
        }

        .play-btn-compact.playing { background-color:  #d1a347; }

        .progress-container-compact {
            flex-grow: 1;
            position: relative;
            height: 5px;
            background-color: rgba(245, 245, 245, 0.1);
            border-radius: 3px;
            cursor: pointer;
        }

        .progress-bar-compact {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background-color:  #d1a347;
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s linear;
        }

        .volume-control-compact {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            width: 120px;
            flex-shrink: 0;
        }

        .volume-icon-compact {
            color:  #d1a347;
            font-size: 1rem;
            min-width: 20px;
        }

        .volume-slider-compact {
            flex-grow: 1;
            height: 4px;
            background-color: rgba(245, 245, 245, 0.1);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }

        .volume-level-compact {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background-color:  #d1a347;
            border-radius: 2px;
            width: 80%;
        }

        .time-display-compact {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: rgba(245, 245, 245, 0.7);
        }
		
		.audio-section .container { position: relative; z-index: 1; }

        .gallery-container { margin-top: 3rem; }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            opacity: 1;
            transition: opacity 0.8s, transform 0.8s;
			border-radius: 14px;
        }

        .gallery-item.visible { opacity: 1; transform: scale(1); }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img { transform: scale(1.1); }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(200, 169, 126, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay { background-color: rgba(200, 169, 126, 0.2); }

        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 10, 10, 0.95);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
           transition: opacity 0.5s ease;
        }

        .lightbox.active { opacity: 1; visibility: visible; }
        .lightbox-content { max-width: 90%; max-height: 90%; z-index: 10000; }
        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            border: 3px solid var(--gold);
        }

        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            color: var(--white);
            font-size: 2.5rem;
            cursor: pointer;
            transition: var(--transition);
			 z-index: 10001;
        }

        .lightbox-close:hover { color: var(--gold); }
		
		.video-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
			gap: 2rem;
		}

		.video-container-yt {
			position: relative;
			padding-bottom: 56.25%;
			height: 0;
			overflow: hidden;
			border-radius: 10px;
			border: 1px solid rgba(200, 169, 126, 0.3);
			transition: var(--transition);
		}

		.video-container-yt:hover {
			border-color: var(--gold);
			transform: translateY(-5px);
			box-shadow: 0 10px 20px rgba(0,0,0,0.4);
		}

		.video-container-yt iframe {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

.agenda-container { max-width: 800px; margin: 3rem auto 0; }
.agenda-item {
    display: flex;
    background-color: var(--dark-gray);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    opacity: 1;
    border-radius: 16px;
}

.agenda-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }

.agenda-date {
    background-color: var(--gold);
    color: var(--black);
    padding: 1.5rem;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.agenda-day { font-size: 2.5rem; line-height: 1; }
.agenda-month { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.agenda-details { padding: 0.5rem; flex-grow: 1; }
.agenda-title { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--gold); }
.agenda-location { color: var(--amber); font-weight: 500; margin-bottom: 0.3rem; }

@media (max-width: 768px) {
    .agenda-item { flex-direction: column; }
    .agenda-date {
        min-width: 100%;
        padding: 10px;
        flex-direction: row;
        justify-content: space-between;
    }
    .agenda-day { font-size: 2rem; }
}

        footer {
            background-color: #1c1c1c;
            padding: 4rem 0 2rem;
            text-align: center;
            border-top: 1px solid rgba(200, 169, 126, 0.2);
        }

        .footer-content { max-width: 600px; margin: 0 auto; }
        .footer-logo { font-family: 'Crimson Text', serif; font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }
        .footer-contact { margin-bottom: 2rem; }
        .footer-contact p { margin-bottom: 0.5rem; }
        .social-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; }
        .social-link { color: var(--light-gray); font-size: 1.5rem; transition: var(--transition); }
        .social-link:hover { color: var(--gold); transform: translateY(-3px); }

        .copyright {
            font-size: 0.9rem;
            color: rgba(245, 245, 245, 0.6);
            padding-top: 2rem;
            border-top: 1px solid rgba(200, 169, 126, 0.1);
        }	
		
		.bg-transparent { --bs-bg-opacity: 1; background-color: #ffffff !important; }
		@media (max-width: 768px) { .form-width { width: 91%; } }
		.text-white { color: rgb(0 0 0) !important; }
		@media (max-width: 576px) { section { padding: 4rem 0; } }
		
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #c5a059;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i { font-size: 24px; color: #000000; line-height: 0; }
.scroll-top:hover { background-color: #c5a059a8; }
.scroll-top.active { visibility: visible; opacity: 1; bottom: 15px; }
