:root {
    --bg-color: #0c0e12;
    --text-main: #ffffff;
    --text-muted: #a0aab5;
    --accent: #6c5ce7; /* Morado moderno */
    --accent-glow: rgba(108, 92, 231, 0.5);
    --gradiente: linear-gradient(135deg, #6c5ce7 0%, #ff4757 100%);
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden; /* Mantiene el diseño fijo */
}

/* Diseño de dos columnas */
.main-wrapper {
    display: flex;
    height: 100%;
}

/* --- SECCIÓN IZQUIERDA: INFO --- */
.info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    background-color: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.logo span {color: var(--accent);}

.info-content {
    max-width: 500px;
}

.tag {
    background: var(--gradiente);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.info-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

/* Botón Descargar Estilo Moderno */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid var(--accent);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-download:hover {
    background-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

footer p {
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

/* --- SECCIÓN DERECHA: CARRUSEL FLOTANTE --- */
.carousel-section {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.carousel-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.2;
    z-index: 0;
}

.carousel-container {
    width: 100%;
    max-width: 600px;
    height: 80%;
    position: relative;
    z-index: 1;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7);
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.1);
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.photo-info p {color: var(--text-muted); font-size: 0.9rem;}

/* Controles Flotantes */
.carousel-controls {
    position: absolute;
    bottom: -30px;
    right: 30px;
    display: flex;
    gap: 10px;
}

.control-btn {
    background: var(--gradiente);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.control-btn:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .main-wrapper {flex-direction: column; overflow-y: auto;}
    .info-section {padding: 40px; height: auto;}
    .carousel-section {height: 80vh; padding: 20px;}
    .carousel-container {height: 90%;}
    body {overflow: auto;}
    .info-content h1 {font-size: 2.5rem;}
}