/* ================= VARIABLES ================= */
:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #121217;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent: #5e6ad2;
    --accent-hover: #4a54a8;
    --neon: #8b5cf6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section.bg-dark {
    background-color: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(94, 106, 210, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 106, 210, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--text-primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--neon);
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 10px;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--neon);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--neon);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--neon);
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-btn {
    display: none;
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.3) 0%, rgba(10, 10, 12, 0.9) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.glitch {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: white;
    letter-spacing: -2px;
}

.subtitle {
    font-size: clamp(2rem, 5vw, 4rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ================= BENTO GRID (21st.dev style) ================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.bento-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bento-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.bento-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #1f1f2e 0%, #0a0a0c 100%);
}

.bento-item.wide .bento-content {
    background: none;
    justify-content: center;
}

.bento-item.wide .row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bento-item.dark-glass {
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
}

.bento-item.light-glass {
    background: rgba(255, 255, 255, 0.05);
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.tag.alert {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.bento-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.bento-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.countdown {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

.hover-scale {
    transition: transform 0.5s ease;
}

.bento-item:hover .hover-scale {
    transform: scale(1.05);
}

/* ================= CATALOGO ================= */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #1a1a20;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    background: #fff;
    color: #000;
}

.quick-add {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 15px;
    transition: var(--transition);
    z-index: 2;
}

.quick-add button {
    width: 100%;
    padding: 12px;
    background: var(--neon);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quick-add button:hover {
    background: #7c3aed;
}

.product-card:hover .quick-add {
    bottom: 0;
}

.product-info {
    padding: 20px 0;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
}

.product-price .current {
    color: var(--text-primary);
}

/* ================= INFO & HORARIOS ================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}

.glass-card.dark {
    background: rgba(0, 0, 0, 0.4);
}

.glass-card.accent {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(10, 10, 12, 0.5));
    border-color: rgba(139, 92, 246, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    color: var(--neon);
}

.glass-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.glass-card p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.glass-card p.strong {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.schedule-list li:last-child {
    border-bottom: none;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--neon);
    color: #fff;
    transform: translateY(-3px);
}

/* ================= FOOTER ================= */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    background: var(--bg-primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h2 {
    font-size: 2rem;
    letter-spacing: 2px;
}

.footer-brand span {
    color: var(--neon);
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-item.large {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item.large, .bento-item.wide {
        grid-column: span 1;
    }
    
    .bento-item.wide .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Animaciones */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= PRELOADER ================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: var(--glass-border);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--neon);
    animation: load 2s ease forwards;
}

@keyframes load {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ================= CUSTOM CURSOR ================= */
body {
    cursor: none; /* Hide default cursor */
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.custom-cursor.hovering {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.2);
    border-color: transparent;
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .custom-cursor, .custom-cursor-dot { display: none; }
}

/* ================= MARQUEE ================= */
.marquee-container {
    background: var(--neon);
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.marquee-content span {
    padding: 0 20px;
}

.marquee-content .dot {
    color: rgba(255,255,255,0.5);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Forcing 3D context on tilt elements */
.bento-item, .product-card {
    transform-style: preserve-3d;
}

/* ================= LOOKBOOK ================= */
.lookbook-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #1a1a20;
    aspect-ratio: 4/5;
}

.lookbook-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--neon);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hotspot-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.hotspot-tooltip {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 12px;
    width: 200px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.hotspot-tooltip h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.hotspot-tooltip p {
    color: var(--neon);
    font-weight: 800;
    margin-bottom: 10px;
}

/* ================= COMUNIDAD (FEED) ================= */
.social-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.feed-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

.feed-item:hover img {
    transform: scale(1.1);
}

.feed-item:hover .feed-overlay {
    opacity: 1;
}

/* ================= VIP SUSCRIPCION ================= */
.vip-card {
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-content {
    max-width: 600px;
    text-align: center;
}

.vip-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.vip-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.vip-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.vip-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.vip-form input:focus {
    border-color: var(--neon);
    background: rgba(255,255,255,0.1);
}

.vip-small {
    font-size: 0.8rem !important;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .vip-form {
        flex-direction: column;
    }
}
