:root { --color-blanco: #ffffff; --color-negro: #050505; --color-azul: #1180ff; --color-sombra-logo: rgba(255, 255, 255, 0.3); --color-sombra-play: rgba(255, 255, 255, 0.4); --color-azul-brillo: rgba(17, 128, 255, 0.6); --color-texto-footer: rgba(255, 255, 255, 0.6); --color-modal-fondo-pantalla: rgba(5, 7, 15, 0.95); --color-modal-tarjeta-fondo: rgba(10, 15, 30, 0.75); --color-modal-tarjeta-borde: rgba(17, 128, 255, 0.2); --color-modal-tarjeta-sombra: rgba(0, 0, 0, 0.55); --color-modal-cerrar-hover: rgba(255, 255, 255, 0.1); --color-enlace-caja-fondo: rgba(255, 255, 255, 0.03); --color-enlace-caja-hover: rgba(255, 255, 255, 0.08); --color-enlace-caja-borde-hover: rgba(255, 255, 255, 0.3); --color-icono-plataforma-fondo: rgba(255, 255, 255, 0.05); --color-youtube: #ff0000; --color-youtube-sombra: rgba(255, 0, 0, 0.5); --color-spotify: #1db954; --color-spotify-sombra: rgba(29, 185, 84, 0.5); --color-reproductor-sombra: rgba(0, 0, 0, 0.4); --color-reproductor-control-fondo: rgba(5, 7, 15, 0.85); --color-reproductor-control-borde: rgba(255, 255, 255, 0.1); --color-reproductor-control-sombra: rgba(0, 0, 0, 0.5); --color-menu-hamburguesa-hover: rgba(17, 128, 255, 0.1); --color-transparente: transparent; --fuente-principal: 'Outfit', 'Helvetica Neue', Arial, sans-serif; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: var(--fuente-principal); background-color: var(--color-negro); color: var(--color-blanco); overflow: hidden; } .grande { font-size: 3rem; font-weight: 800; letter-spacing: 2px; } .mediana { font-size: 1.5rem; font-weight: 600; letter-spacing: 1px; } .chica { font-size: 0.9rem; font-weight: 400; letter-spacing: 1px; } .padding20 { padding: 20px; } .margen20 { margin-top: 20px; } .grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .tarjeta-caja { background: var(--color-modal-tarjeta-fondo); border: 1px solid var(--color-modal-tarjeta-borde); border-radius: 12px; padding: 20px; margin-bottom: 20px; } .etiqueta-badge { display: inline-block; padding: 4px 10px; background: rgba(17, 128, 255, 0.15); border: 1px solid var(--color-azul); color: var(--color-azul); border-radius: 20px; font-weight: 800; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 10px; } .item-informacion { font-size: 0.95rem; color: var(--color-texto-footer); margin-bottom: 12px; line-height: 1.4; } .item-informacion:last-child { margin-bottom: 0; } .texto-destacado { color: var(--color-azul); font-weight: 800; } .lista-limpia { list-style: none; padding: 0; margin: 0; } .flex-centro { display: flex; justify-content: center; align-items: center; } .pantalla-completa { width: 100vw; height: 100vh; position: relative; } .fondo-fijo { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: url('bg.jpg?1'); background-position: center bottom 10%; background-size: cover; background-repeat: no-repeat; z-index: -2; } .logo-contenedor { position: absolute; top: 30px; left: 40px; width: 100px; z-index: 10; } .logo-imagen { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 10px var(--color-sombra-logo)); } .pie-pagina { position: absolute; bottom: 25px; width: 100%; text-align: center; color: var(--color-texto-footer); text-transform: uppercase; pointer-events: none; } .menu-hamburguesa { position: absolute; top: 30px; right: 40px; width: 50px; height: 50px; background: var(--color-modal-tarjeta-fondo); border: 1px solid var(--color-modal-tarjeta-borde); border-radius: 50%; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1000; transition: all 0.3s ease; } .menu-hamburguesa:hover { border-color: var(--color-azul); background: var(--color-menu-hamburguesa-hover); } .menu-hamburguesa span { display: block; width: 22px; height: 2px; background-color: var(--color-blanco); border-radius: 2px; transition: all 0.3s ease; } .menu-hamburguesa.activa span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .menu-hamburguesa.activa span:nth-child(2) { opacity: 0; } .menu-hamburguesa.activa span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .menu-navegacion { position: fixed; top: 0; right: -320px; width: 320px; height: 100vh; background: var(--color-modal-fondo-pantalla); backdrop-filter: blur(20px); border-left: 1px solid var(--color-modal-tarjeta-borde); z-index: 999; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .menu-navegacion.abierto { right: 0; } .menu-lista { list-style: none; display: flex; flex-direction: column; gap: 30px; width: 100%; padding: 0 40px; } .menu-enlace { background: none; border: none; color: var(--color-blanco); font-family: var(--fuente-principal); font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; cursor: pointer; text-transform: uppercase; transition: color 0.3s ease, transform 0.3s ease; text-align: left; outline: none; } .menu-enlace:hover { color: var(--color-azul); transform: translateX(10px); } .reproductor-contenedor-completo { position: absolute; top: 20%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 20px; z-index: 5; width: 320px; } .reproductor-radial { position: relative; width: 75px; height: 75px; border-radius: 50%; background: var(--color-modal-tarjeta-fondo); border: 2px solid var(--color-modal-tarjeta-borde); cursor: pointer; outline: none; box-shadow: 0 0 30px var(--color-reproductor-sombra); display: flex; justify-content: center; align-items: center; backdrop-filter: blur(15px); } .icono-reproductor { width: 32px; height: 32px; color: var(--color-blanco); filter: drop-shadow(0 0 8px var(--color-azul-brillo)); } .icono-reproductor.oculta { display: none; } @keyframes rotar-loader { to { transform: rotate(360deg); } } .icono-loader { animation: rotar-loader 1.5s linear infinite; } .ondas-contenedor { display: flex; justify-content: center; align-items: flex-end; gap: 5px; height: 35px; } .onda-barra { display: block; width: 4px; height: 6px; background-color: var(--color-azul); border-radius: 2px; } @keyframes animacion-onda-audio { 0%, 100% { height: 6px; } 50% { height: 32px; } } .ondas-contenedor .onda-barra:nth-child(1) { animation: animacion-onda-audio 0.8s ease-in-out infinite; } .ondas-contenedor .onda-barra:nth-child(2) { animation: animacion-onda-audio 1.1s ease-in-out infinite 0.1s; } .ondas-contenedor .onda-barra:nth-child(3) { animation: animacion-onda-audio 0.7s ease-in-out infinite 0.25s; } .ondas-contenedor .onda-barra:nth-child(4) { animation: animacion-onda-audio 1.2s ease-in-out infinite 0.05s; } .ondas-contenedor .onda-barra:nth-child(5) { animation: animacion-onda-audio 0.9s ease-in-out infinite 0.2s; } .ondas-contenedor .onda-barra:nth-child(6) { animation: animacion-onda-audio 1.3s ease-in-out infinite 0.15s; } .ondas-contenedor .onda-barra:nth-child(7) { animation: animacion-onda-audio 0.75s ease-in-out infinite 0.3s; } .ondas-contenedor .onda-barra:nth-child(8) { animation: animacion-onda-audio 1.0s ease-in-out infinite 0.08s; } .ondas-contenedor .onda-barra:nth-child(9) { animation: animacion-onda-audio 0.85s ease-in-out infinite 0.18s; } .reproductor-info { display: flex; flex-direction: column; gap: 8px; width: 280px; align-items: center; } .leyenda-play { display: block; color: var(--color-texto-footer); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; user-select: none; } .progreso-contenedor { width: 100%; display: flex; justify-content: center; align-items: center; gap: 12px; } .tiempo-texto { color: var(--color-texto-footer); font-size: 0.8rem; font-variant-numeric: tabular-nums; min-width: 32px; text-align: center; user-select: none; } .progreso-barra-fondo { flex: 1; height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 2px; position: relative; } .progreso-barra-llenado { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--color-azul); border-radius: 2px; box-shadow: 0 0 8px var(--color-azul-brillo); } .modal-contenedor { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: var(--color-modal-fondo-pantalla); backdrop-filter: blur(15px); z-index: 100; opacity: 0; pointer-events: none; display: none; transition: opacity 0.4s ease; } .modal-contenedor.activa { opacity: 1; pointer-events: all; display: flex; } .modal-tarjeta { width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh; border-radius: 0; border: none; background: var(--transparente); box-shadow: none; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden; } .modal-cerrar { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); background: var(--color-transparente); border: none; color: var(--color-blanco); cursor: pointer; width: 50px; height: 50px; border-radius: 50%; transition: background-color 0.3s ease; z-index: 110; } .modal-cerrar:hover { background-color: var(--color-modal-cerrar-hover); } .modal-cerrar svg { width: 24px; height: 24px; } .titulo-modal { text-align: center; color: var(--color-blanco); margin-bottom: 25px; margin-top: 10px; font-weight: 800; } .enlace-caja { display: flex; align-items: center; justify-content: center; width: 100%; padding: 16px 20px; border-radius: 30px; color: var(--color-blanco); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; transition: all 0.3s ease; border: none; } .enlace-caja:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.15); } .enlace-spotify { background: #1db954; box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4); } .enlace-applemusic { background: #fc3c44; box-shadow: 0 4px 15px rgba(252, 60, 68, 0.4); } .enlace-amazonmusic { background: #00a8e1; box-shadow: 0 4px 15px rgba(0, 168, 225, 0.4); } .enlace-deezer { background: #a238ff; box-shadow: 0 4px 15px rgba(162, 56, 255, 0.4); } .enlace-youtube { background: #ff0000; box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); } .enlace-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4); } .enlace-facebook { background: #1877f2; box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4); } .enlace-caja:nth-child(odd):last-child { grid-column: span 2; } .modal-pantalla { width: 100vw; height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; padding: 120px 40px 40px; } .modal-texto-contenido { width: 100%; max-width: 700px; height: calc(100vh - 220px); overflow-y: auto; text-align: left; line-height: 1.2; color: var(--color-blanco); padding-right: 10px; font-size: 17px; font-weight: normal; } .modal-texto-contenido b { color: var(--color-azul); font-weight: normal; } .txt-imagen { display: block; max-width: 100%; height: auto; max-height: 40vh; object-fit: contain; border-radius: 12px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); margin: 0 auto; } .modal-texto-contenido::-webkit-scrollbar { width: 6px; } .modal-texto-contenido::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 3px; } .modal-texto-contenido::-webkit-scrollbar-thumb { background: var(--color-azul); border-radius: 3px; } .carrusel-contenedor { position: relative; display: flex; align-items: center; width: 100%; max-width: 1100px; height: 75vh; gap: 20px; } .carrusel-contador { margin-top: 15px; font-weight: 600; color: var(--color-texto-footer); letter-spacing: 2px; user-select: none; text-transform: uppercase; } .carrusel-ventana { overflow: hidden; width: 100%; height: 100%; } .carrusel-pista { display: flex; height: 100%; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); } .musico-slide, .album-slide { width: 100%; flex-shrink: 0; height: 100%; display: flex; justify-content: center; align-items: center; padding: 0 20px; } .musico-slide img { max-height: 70vh; max-width: 100%; object-fit: contain; border-radius: 12px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); } .album-slide-layout { display: flex; flex-direction: row; gap: 50px; align-items: center; justify-content: center; width: 100%; max-width: 800px; } .album-slide-imagen-wrap { flex: 1; display: flex; justify-content: center; align-items: center; max-width: 380px; } .album-slide-cover { width: 100%; height: auto; max-height: 50vh; object-fit: contain; border-radius: 12px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); } .album-slide-detalles { flex: 1; display: flex; flex-direction: column; gap: 15px; align-items: center; text-align: center; } .album-tipo-etiqueta { display: inline-block; padding: 4px 10px; background: rgba(17, 128, 255, 0.15); border: 1px solid var(--color-azul); color: var(--color-azul); border-radius: 20px; font-weight: 800; } .album-titulo { font-size: 2.2rem; font-weight: 800; line-height: 1.2; color: var(--color-blanco); text-shadow: 0 2px 10px rgba(0,0,0,0.5); text-align: center; } .album-detalle-item { font-size: 1rem; color: var(--color-texto-footer); } .detalle-lbl { font-weight: 800; color: var(--color-azul); } .grid-enlaces { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; width: 100%; max-width: 550px; margin-top: 30px; } .grid-enlaces.tipo-columna { display: flex; flex-direction: column; max-width: 400px; } .enlace-video-btn { background: var(--color-azul); box-shadow: 0 4px 15px var(--color-azul-brillo); flex-direction: column; gap: 4px; padding: 18px 20px; border-radius: 20px; } .video-titulo { font-size: 1rem; font-weight: 800; } .video-subtitulo { font-size: 0.75rem; font-weight: 400; opacity: 0.85; text-transform: none; letter-spacing: 1px; } .carrusel-boton { position: absolute; top: 50%; transform: translateY(-50%); background: var(--color-modal-tarjeta-fondo); border: 1px solid var(--color-modal-tarjeta-borde); color: var(--color-blanco); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; font-weight: 800; z-index: 10; transition: all 0.3s ease; user-select: none; flex-shrink: 0; } .carrusel-boton.prev { left: -15px; visibility: hidden; pointer-events: none; } .carrusel-boton.next { right: -15px; } .carrusel-boton:hover { background: var(--color-azul); border-color: var(--color-azul); } @media (max-width: 768px) { .grande { font-size: 2rem; } .mediana { font-size: 1.2rem; } .logo-contenedor { top: 20px; left: 20px; width: 60px; } .logo-imagen { width: 100%; max-width: none; } .reproductor-contenedor-completo { top: 32%; gap: 15px; } .reproductor-radial { width: 80px; height: 80px; } .icono-reproductor { width: 28px; height: 28px; } .menu-hamburguesa { top: 20px; right: 20px; width: 45px; height: 45px; } .menu-navegacion { width: 100%; right: -100%; } .menu-enlace { font-size: 1.3rem; } .modal-cerrar { top: 20px; right: auto; left: 50%; transform: translateX(-50%); } .modal-pantalla { justify-content: flex-start; padding: 95px 20px 20px; } .carrusel-contenedor { height: 70vh; gap: 5px; } .carrusel-boton { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; z-index: 10; } .carrusel-boton.prev { left: 10px; visibility: hidden; pointer-events: none; } .carrusel-boton.next { right: 10px; } .musico-slide img { max-height: 60vh; } .album-slide-layout { flex-direction: column; gap: 15px; text-align: center; width: 100%; max-height: 60vh; overflow-y: visible; padding-right: 0; display: flex; align-items: center; justify-content: center; } .album-slide-imagen-wrap { max-width: 180px; width: 100%; } .album-slide-cover { max-height: 25vh; width: 100%; height: auto; } .album-slide-detalles { align-items: center; gap: 8px; width: 100%; } .album-titulo { font-size: 1.25rem; } .album-detalle-item { font-size: 0.85rem; } .grid-enlaces { grid-template-columns: repeat(2, 1fr); gap: 8px; max-width: 100%; padding: 0 15px; margin-top: 15px; } .grid-enlaces .enlace-caja { padding: 10px 8px; font-size: 0.75rem; letter-spacing: 1px; } .grid-enlaces .enlace-caja:nth-child(odd):last-child { grid-column: span 2; } .enlace-video-btn { border-radius: 12px; } .video-titulo { font-size: 0.8rem; } .video-subtitulo { font-size: 0.65rem; } .modal-texto-contenido { height: calc(100vh - 180px); font-size: 0.85rem; } .grid2 { grid-template-columns: 1fr; } }