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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #0f1115;
    color: #ffffff;
}

/* Header fijo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(15,17,21,0.9);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.logo {
    height: 45px;
}

.menu-btn {
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Menú lateral */
.menu-lateral {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    background-color: #1a1d24;
    padding-top: 100px;
    transition: 0.3s ease;
    box-shadow: 5px 0 20px rgba(0,0,0,0.5);
    z-index: 1100;
}

.menu-lateral ul {
    list-style: none;
}

.menu-lateral ul li {
    padding: 15px 25px;
}

.menu-lateral ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.menu-lateral ul li a:hover {
    color: #00c2ff;
}

/* Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1050;
}

.menu-lateral.activo {
    left: 0;
}

.overlay.activo {
    opacity: 1;
    visibility: visible;
}

/* Hero */
.hero {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 70px;
}


.contenido-hero h1 {
    font-size: 50px;
    letter-spacing: 3px;
}

.contenido-hero p {
    font-size: 20px;
    color: #aaaaaa;
}
/* ================= CINTA REMERAS ================= */

.cinta-section {
    padding: 40px 0;
    background: #0f1115;
}

.cinta-wrapper {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
}


.cinta {
    display: flex;
    gap: 40px;
	width: max-content;
    animation: scrollCinta 400s linear infinite;
}


.cinta img {
    height: 200px;
    flex-shrink: 0;
}

/* Animación infinita */
@keyframes scrollCinta {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }

}

/* Degradado lateral elegante */
.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #0f1115 0%, transparent 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #0f1115 0%, transparent 100%);
}
/* ================= ZOOM ELEGANTE ================= */

.cinta img {
    height: 200px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}


/* Pausar animación cuando se hace hover en la cinta */
.cinta:hover {
    animation-play-state: paused;
}

/* Imagen activa */
.cinta img.zoom-activo {
    position: relative;
    z-index: 999;
    transform: scale(1.6);
}
.cinta-section {
    position: relative;
    min-height: 420px;
}
.remera-item {
    position: relative;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.remera-item img {
    height: 200px;
    display: block;
}

.remera-item.zoom-activo {
    transform: scale(1.6);
    z-index: 999;
}
/* ================= VISOR FLOTANTE ================= */

.visor-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2000;
}

.visor-overlay.activo {
    opacity: 1;
}

#visorImg {
    max-height: 75vh;
    transform: scale(0.8);
    transition: transform 0.4s ease;
    filter: drop-shadow(0 25px 60px rgba(0,0,0,0.7));
}

.visor-overlay.activo #visorImg {
    transform: scale(1);
}

