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

:root {
    --primary: #a855f7;
    --primary-light: #c084fc;
    --primary-dark: #7c3aed;
    --primary-darker: #5b21b6;
    --accent: #e879f9;
    --accent-dark: #d946ef;
    --neon: #c084fc;
    --dark: #0a0a12;
    --dark-secondary: #0f0f1a;
    --dark-card: #16162a;
    --dark-card-hover: #1e1e3a;
    --light: #f5f0ff;
    --light-secondary: #ede5ff;
    --white: #ffffff;
    --gray: #9999aa;
    --gray-light: #bbbbcc;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
    --gradient-glow: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(232, 121, 249, 0.4));
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(168, 85, 247, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
}

body {
    font-family: 'Inter', 'Rajdhani', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

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

button {
    cursor: none;
}

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

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===== CURSOR PERSONALIZADO ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    background: rgba(168, 85, 247, 0.1);
}

/* Pantallas táctiles: cursor nativo */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }

    a,
    button {
        cursor: pointer;
    }
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    margin-bottom: 2rem;
}

.loader-img {
    width: 180px;
    height: 130px;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 auto;
    border: 3px solid rgba(168, 85, 247, 0.3);
    animation: loaderPulse 1.5s ease infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); border-color: rgba(168, 85, 247, 0.3); }
    50% { transform: scale(1.05); border-color: rgba(168, 85, 247, 0.8); }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 3px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.loader-text {
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ===== PARTÍCULAS ===== */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

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

.navbar.scrolled {
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.nav-logo-img {
    width: 96px;
    height: 58px;
    border-radius: 8px;
    object-fit: contain;
    border: 2px solid rgba(168, 85, 247, 0.4);
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.nav-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
}

.nav-logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 5px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

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

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

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(232, 121, 249, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 0%, rgba(91, 33, 182, 0.2) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 0.7rem;
    color: var(--accent);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: min(9rem, calc((100vw - 64px) / 8.7));
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    line-height: 1;
}

.hero-title-line {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.4));
}

.hero-typing-wrapper {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 300;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    min-height: 2rem;
}

.hero-typing-prefix {
    color: var(--gray);
}

.hero-typing {
    color: var(--primary-light);
    font-weight: 600;
}

.hero-cursor {
    color: var(--primary);
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--gray);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: none;
    transition: var(--transition);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 25px rgba(168, 85, 247, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--whatsapp);
    border: 2px solid var(--whatsapp);
}

.hero-btn-secondary:hover {
    background: var(--whatsapp);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

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

.hero-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-plus {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.2rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 3px;
    animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
}

.section-tag i {
    font-size: 0.7rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== PRODUCTOS ===== */
.productos {
    padding: 7rem 0;
    background: var(--dark);
    position: relative;
}

.productos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.productos-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 50px;
    cursor: none;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.producto-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.08);
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}

.producto-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.producto-card.hidden {
    display: none;
}

.producto-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 1;
}

.producto-card:hover .producto-glow {
    opacity: 1;
}

.producto-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(168, 85, 247, 0.15);
}

.producto-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 25%, rgba(232, 121, 249, 0.13), transparent 28%),
        linear-gradient(135deg, #12101f, #21143a 55%, #110f1d);
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-image::before,
.producto-image::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.producto-image::before {
    inset: 18px;
    border: 1px solid rgba(192, 132, 252, 0.14);
    border-radius: 14px;
    transform: skewX(-4deg);
}

.producto-image::after {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(232, 121, 249, 0.12);
    border-radius: 50%;
    right: -35px;
    top: -45px;
}

.producto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.producto-card:hover .producto-image img {
    transform: scale(1.1);
}

.product-mark {
    position: relative;
    z-index: 2;
    width: 116px;
    height: 116px;
    border: 1px solid rgba(232, 121, 249, 0.55);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    background: rgba(10, 10, 18, 0.42);
    box-shadow: inset 0 0 24px rgba(168, 85, 247, 0.12), 0 0 25px rgba(168, 85, 247, 0.1);
    transition: var(--transition);
    display: none;
}

.producto-image.placeholder .product-mark {
    display: flex;
}

.product-mark::before,
.product-mark::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(192, 132, 252, 0.3);
    transform: rotate(45deg);
}

.product-mark::before { inset: 10px; }
.product-mark::after { inset: 22px; border-color: rgba(232, 121, 249, 0.22); }

.product-mark span {
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-mark small {
    position: relative;
    z-index: 1;
    margin-top: 0.3rem;
    font-size: 0.5rem;
    letter-spacing: 0.16em;
    color: var(--gray-light);
}

.mark-print span { font-size: 1.35rem; }
.mark-custom { border-color: rgba(232, 121, 249, 0.85); }

.producto-card:hover .product-mark {
    transform: rotate(-4deg) scale(1.06);
    border-color: var(--accent);
    box-shadow: inset 0 0 30px rgba(168, 85, 247, 0.18), 0 0 35px rgba(168, 85, 247, 0.25);
}

.producto-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(168, 85, 247, 0.16);
    border: 1px solid rgba(232, 121, 249, 0.38);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-new {
    background: rgba(192, 132, 252, 0.16);
    border-color: rgba(192, 132, 252, 0.45);
}

.badge-hot {
    background: rgba(232, 121, 249, 0.16);
    border-color: rgba(232, 121, 249, 0.45);
}

.producto-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.producto-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.producto-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.producto-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.producto-features span {
    font-size: 0.78rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.producto-features i {
    color: var(--primary-light);
    font-size: 0.65rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.2rem;
    background: transparent;
    color: var(--primary-light);
    border: 1px solid rgba(168, 85, 247, 0.38);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.btn-whatsapp:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}

/* ===== GALERIA ===== */
.galeria {
    padding: 7rem 0;
    background: var(--dark-secondary);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
}

.galeria-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-card);
    cursor: none;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-slow);
    border: 1px solid rgba(168, 85, 247, 0.08);
}

.galeria-item.visible {
    opacity: 1;
    transform: scale(1);
}

.galeria-item.tall {
    grid-row: span 2;
}

.galeria-item.wide {
    grid-column: span 2;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
}

.galeria-item:not(.placeholder-gallery) .gallery-placeholder-icon {
    display: none;
}

.galeria-item.placeholder-gallery .gallery-placeholder-icon {
    display: block;
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 18, 0.95), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.galeria-overlay i {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.galeria-overlay span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 18, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: none;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ===== PROCESO ===== */
.proceso {
    padding: 7rem 0;
    background: var(--dark);
    position: relative;
}

.proceso-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.proceso-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
    opacity: 0.3;
    z-index: 0;
}

.proceso-step {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.proceso-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.proceso-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--dark-card);
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.proceso-step:hover .proceso-icon {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.proceso-icon i {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 0.2rem;
}

.proceso-step-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.proceso-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.proceso-content p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== TESTIMONIOS ===== */
.testimonios {
    padding: 7rem 0;
    background: var(--dark-secondary);
}

.testimonios-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonio-card {
    position: absolute;
    width: 100%;
    background: var(--dark-card);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
    pointer-events: none;
}

.testimonio-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonio-card.prev {
    opacity: 0;
    transform: translateX(-50px);
}

.testimonio-stars {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.3rem;
}

.testimonio-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonio-text {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonio-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.testimonio-author h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.testimonio-author span {
    font-size: 0.8rem;
    color: var(--primary-light);
}

.testimonios-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
    border: 2px solid transparent;
    cursor: none;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
    transform: scale(1.2);
}

/* ===== SOBRE MI ===== */
.sobre-mi {
    padding: 7rem 0;
    background: var(--dark);
}

.sobre-mi-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.sobre-mi-image {
    position: relative;
}

.sobre-mi-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: var(--dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(168, 85, 247, 0.2);
    transition: var(--transition);
}

.sobre-mi-img-wrapper:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.sobre-mi-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perfil-placeholder-icon {
    font-size: 5rem;
    opacity: 0.3;
    color: var(--primary);
}

.sobre-mi-img-wrapper:not(.placeholder-perfil) .perfil-placeholder-icon {
    display: none;
}

.sobre-mi-img-wrapper.placeholder-perfil .perfil-placeholder-icon {
    display: block;
}

.sobre-mi-float-card {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--gradient-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.sobre-mi-text .section-tag {
    margin-bottom: 0.75rem;
}

.sobre-mi-text .section-title {
    text-align: left;
}

.sobre-mi-text p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.sobre-mi-text strong {
    color: var(--primary-light);
}

.sobre-mi-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sobre-mi-btn {
    margin-top: 0.5rem;
}

/* ===== CONTACTO ===== */
.contacto {
    padding: 7rem 0;
    background: var(--dark-secondary);
    position: relative;
}

.contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.contacto-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contacto-card {
    background: var(--dark-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.08);
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

.contacto-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.contacto-card:hover {
    border-color: rgba(168, 85, 247, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.contacto-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.contacto-card:hover .contacto-icon-wrap {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1);
}

.contacto-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contacto-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-whatsapp-large:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--primary-light);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-social:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: var(--dark);
    padding-top: 0;
}

.footer-wave {
    color: var(--dark-secondary);
    line-height: 0;
    margin-top: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-content {
    padding: 3rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 105px;
    height: 58px;
    border-radius: 8px;
    object-fit: contain;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.footer-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: var(--gray);
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.82rem;
}

.footer-credit i {
    color: var(--accent);
}

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 6.5rem;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    font-size: 1rem;
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
    display: flex;
    gap: 2px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    padding: 3px;
    z-index: 1001;
}

.lang-btn {
    padding: 0.35rem 0.7rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proceso-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .proceso-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .sobre-mi-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .sobre-mi-img-wrapper {
        margin: 0 auto;
    }

    .sobre-mi-float-card {
        right: calc(50% - 210px);
    }

    .sobre-mi-text .section-title {
        text-align: center;
    }

    .sobre-mi-stats {
        justify-content: center;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===== MENÚ MÓVIL (≤900px) ===== */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        height: 100svh;
        background: rgba(15, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-slow), visibility 0s linear 0.6s;
        border-left: 1px solid rgba(168, 85, 247, 0.15);
        pointer-events: none;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        pointer-events: auto;
        visibility: visible;
        transition: var(--transition-slow);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    body.menu-open {
        overflow: hidden;
    }

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 18, 0.65);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0s linear 0.4s;
        pointer-events: none;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.4s ease;
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    a, button {
        cursor: pointer;
    }

    .cursor-dot, .cursor-outline {
        display: none;
    }

    .productos-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .galeria-item.tall,
    .galeria-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .proceso-timeline {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col a {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .sobre-mi-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }

    .scroll-top {
        right: 5rem;
        bottom: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .sobre-mi-float-card {
        right: 1rem;
        bottom: 1rem;
    }

    .lightbox-img {
        max-width: 92%;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .testimonios-slider {
        min-height: 380px;
    }

    .testimonio-card {
        padding: 1.5rem;
    }

    .testimonio-text {
        font-size: 0.95rem;
    }

    .producto-features {
        flex-direction: column;
        gap: 0.4rem;
    }
}

/* ===== ACCESIBILIDAD ===== */
:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
