/* ===================================
   ENMARCART — Styles
   Neon Pink + Gold decorative theme
   Marquetería & Arte Decorativo
   =================================== */

:root {
    --pink: #ff2d95;
    --pink-light: #ff6bb5;
    --pink-dark: #cc1a75;
    --pink-glow: rgba(255, 45, 149, 0.15);
    --pink-glow-strong: rgba(255, 45, 149, 0.35);
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --neon-purple: #b44dff;
    --neon-purple-glow: rgba(180, 77, 255, 0.12);
    --neon-blue: #4d7cff;
    --magenta: #e91e8c;
    --dark-950: #0a0508;
    --dark-900: #120a10;
    --dark-800: #1a0f18;
    --dark-700: #2a1a28;
    --dark-600: #3a2438;
    --dark-500: #4f3550;
    --white: #ffffff;
    --gray-100: #f0e8ed;
    --gray-200: #d5c8d2;
    --gray-300: #b0a0ad;
    --gray-400: #8a7585;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--dark-950);
    color: var(--gray-200);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* === Subtle Scanline Overlay === */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 4px; }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 5, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 45, 149, 0.12);
    box-shadow: 0 2px 30px rgba(255, 45, 149, 0.06), 0 1px 0 rgba(212, 175, 55, 0.05);
    padding: 10px 0;
}

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

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

.logo-svg-wrap {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(255, 45, 149, 0.3));
    transition: var(--transition);
}

.logo-svg-wrap.small {
    width: 44px;
    height: 44px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

/* Image logo */
.logo-img-wrap {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    filter: drop-shadow(0 0 12px rgba(255, 45, 149, 0.3));
    transition: var(--transition);
}

.logo-img-wrap.small {
    width: 44px;
    height: 44px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-logo:hover .logo-img-wrap {
    filter: drop-shadow(0 0 20px rgba(255, 45, 149, 0.5)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.2));
    transform: scale(1.05);
}

.nav-logo:hover .logo-svg-wrap {
    filter: drop-shadow(0 0 20px rgba(255, 45, 149, 0.5)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.2));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 45, 149, 0.2), 0 0 40px rgba(255, 45, 149, 0.08);
}

.logo-accent {
    color: var(--pink);
    text-shadow: 0 0 12px rgba(255, 45, 149, 0.5), 0 0 30px rgba(255, 45, 149, 0.2), 0 0 60px rgba(255, 45, 149, 0.1);
}

.navbar.scrolled .logo-svg-wrap {
    width: 44px;
    height: 44px;
}

.navbar.scrolled .logo-img-wrap {
    width: 44px;
    height: 44px;
}

.navbar.scrolled .logo-text {
    font-size: 1.35rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    padding: 8px 16px;
    border-radius: var(--radius);
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 45, 149, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--pink), 0 0 16px rgba(255, 45, 149, 0.3);
}

.nav-cta {
    background: var(--pink);
    color: var(--white) !important;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    box-shadow: 0 0 12px rgba(255, 45, 149, 0.3), 0 0 30px rgba(255, 45, 149, 0.1);
}

.nav-cta:hover {
    background: var(--pink-light);
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.5), 0 0 50px rgba(255, 45, 149, 0.15);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 45, 149, 0.35), 0 0 40px rgba(255, 45, 149, 0.1);
}

.btn-primary:hover {
    background: var(--pink-light);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 45, 149, 0.5), 0 0 60px rgba(255, 45, 149, 0.2), 0 8px 30px rgba(255, 45, 149, 0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--dark-600);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), inset 0 0 15px rgba(212, 175, 55, 0.05);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.15);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 5, 8, 0.7) 0%,
        rgba(10, 5, 8, 0.5) 40%,
        rgba(10, 5, 8, 0.6) 70%,
        rgba(10, 5, 8, 0.9) 100%
    );
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 45, 149, 0.12) 0%, rgba(255, 45, 149, 0.04) 40%, transparent 70%);
    pointer-events: none;
    animation: neonPulse 4s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(180, 77, 255, 0.03) 40%, transparent 70%);
    pointer-events: none;
    animation: neonPulse 5s ease-in-out 1s infinite alternate;
}

@keyframes neonPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Gallery wall silhouette */
.gallery-wall {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    pointer-events: none;
    opacity: 1;
    filter: drop-shadow(0 -2px 12px rgba(255, 45, 149, 0.06));
}

/* Floating decorative frames */
.floating-frames {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-frame {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.04) 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.04), 0 4px 30px rgba(212, 175, 55, 0.03);
}

.frame-inner {
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 45, 149, 0.1);
    border-radius: 2px;
}

/* Corner ornaments on floating frames */
.float-frame::before,
.float-frame::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(212, 175, 55, 0.25);
    border-style: solid;
}

.float-frame::before {
    top: 4px;
    left: 4px;
    border-width: 2px 0 0 2px;
}

.float-frame::after {
    bottom: 4px;
    right: 4px;
    border-width: 0 2px 2px 0;
}

.frame-1 {
    width: 180px;
    height: 240px;
    top: 8%;
    right: 8%;
    transform: rotate(-5deg);
    animation: frameFloat1 12s ease-in-out infinite;
}

.frame-2 {
    width: 120px;
    height: 160px;
    top: 25%;
    left: 5%;
    transform: rotate(4deg);
    animation: frameFloat2 10s ease-in-out infinite;
    border-color: rgba(255, 45, 149, 0.1);
}

.frame-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    right: 15%;
    transform: rotate(-2deg);
    animation: frameFloat3 14s ease-in-out infinite;
    border-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.frame-3 .frame-inner {
    border-radius: 50%;
}

.frame-3::before,
.frame-3::after {
    display: none;
}

.frame-4 {
    width: 140px;
    height: 90px;
    bottom: 15%;
    left: 8%;
    transform: rotate(2deg);
    animation: frameFloat2 11s ease-in-out 1s infinite;
    border-color: rgba(255, 45, 149, 0.08);
}

@keyframes frameFloat1 {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-15px); }
}

@keyframes frameFloat2 {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-12px); }
}

@keyframes frameFloat3 {
    0%, 100% { transform: rotate(-2deg) translateY(0) scale(1); }
    50% { transform: rotate(-2deg) translateY(-18px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink);
    background: var(--pink-glow);
    border: 1px solid rgba(255, 45, 149, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
    box-shadow: 0 0 15px rgba(255, 45, 149, 0.1), inset 0 0 15px rgba(255, 45, 149, 0.05);
    text-shadow: 0 0 8px rgba(255, 45, 149, 0.4);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.15s both;
    text-shadow: 0 0 30px rgba(255, 45, 149, 0.06);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--pink), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 45, 149, 0.3));
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--pink);
    text-shadow: 0 0 10px rgba(255, 45, 149, 0.4);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), var(--gold), transparent);
    box-shadow: 0 0 6px rgba(255, 45, 149, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
    box-shadow: 0 0 6px rgba(255, 45, 149, 0.3);
}

/* === Sections === */
.section {
    padding: 100px 0;
    position: relative;
}

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

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

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(255, 45, 149, 0.4), 0 0 25px rgba(255, 45, 149, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--pink);
    text-shadow: 0 0 10px rgba(255, 45, 149, 0.3), 0 0 30px rgba(255, 45, 149, 0.1);
}

.section-desc {
    color: var(--gray-400);
    max-width: 540px;
    margin: 16px auto 0;
    font-size: 1.05rem;
}

/* === About === */
.about {
    background: var(--dark-900);
    position: relative;
    overflow: hidden;
}

.ornament-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 1;
}

.ornament-pattern {
    width: 100%;
    height: 100%;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--gray-100);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray-300);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-glow);
    border: 1px solid rgba(255, 45, 149, 0.18);
    border-radius: var(--radius);
    color: var(--pink);
    box-shadow: 0 0 12px rgba(255, 45, 149, 0.1);
}

.feature h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 0;
}

.about-visual {
    position: relative;
    min-height: 420px;
}

/* Neon garden background */
.about-neon-bg {
    position: absolute;
    inset: -40px;
    z-index: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.about-neon-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: saturate(1.8) hue-rotate(-10deg) blur(2px);
    mix-blend-mode: screen;
}

.about-neon-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 45, 149, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-900) 0%, transparent 15%, transparent 85%, var(--dark-900) 100%);
}

.about-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 45, 149, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(255, 255, 255, 0.02) 42%,
        rgba(255, 255, 255, 0.04) 44%,
        transparent 46%
    );
    pointer-events: none;
    z-index: 2;
}

/* About showcase with image */
.about-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-showcase-img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 45, 149, 0.15));
    transition: var(--transition-slow);
}

.about-card:hover .about-showcase-img {
    filter: drop-shadow(0 0 30px rgba(255, 45, 149, 0.25)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.1));
    transform: scale(1.02);
}

.about-showcase-caption {
    padding: 16px 24px;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(10, 5, 8, 0.9));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.about-showcase-caption span {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    display: block;
    margin-bottom: 4px;
}

.about-showcase-caption p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.about-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    color: var(--gray-400);
    gap: 16px;
}

.about-placeholder svg {
    color: var(--pink);
    opacity: 0.5;
}

.about-placeholder span {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.about-placeholder p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(18, 10, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 45, 149, 0.2);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 45, 149, 0.08), 0 8px 30px rgba(0, 0, 0, 0.4);
}

.float-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-glow);
    border-radius: 50%;
    color: var(--pink);
}

.float-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.float-text {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* === Services === */
.services {
    background: var(--dark-950);
    position: relative;
    overflow: hidden;
}

.artdeco-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.artdeco-pattern {
    width: 100%;
    height: 100%;
    opacity: 1.4;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 36px 28px;
    background: var(--dark-900);
    border: 1px solid var(--dark-700);
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.06), rgba(212, 175, 55, 0.03) 50%, transparent 80%);
    opacity: 0;
    transition: var(--transition-slow);
}

.service-card:hover {
    border-color: rgba(255, 45, 149, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.08), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--gold), transparent);
    box-shadow: 0 0 8px rgba(255, 45, 149, 0.3);
    transition: var(--transition-slow);
}

.service-card:hover .service-line {
    width: 100%;
}

/* Neon card top border accent */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 149, 0.3), transparent);
    opacity: 0;
    transition: var(--transition-slow);
}

.service-card:hover::after {
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 45, 149, 0.2);
}

/* === Tienda Virtual === */
.tienda {
    background: var(--dark-950);
    position: relative;
    overflow: hidden;
}

/* --- Tienda Hero Banner --- */
.tienda-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.tienda-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tienda-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: saturate(1.4) brightness(0.6);
}

.tienda-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, var(--dark-950) 0%, rgba(10,5,8,0.2) 30%, rgba(10,5,8,0.2) 70%, var(--dark-950) 100%),
        radial-gradient(ellipse at center, rgba(255,45,149,0.08) 0%, transparent 60%);
}

.tienda-hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    max-width: 700px;
}

.tienda-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(255,45,149,0.25), 0 0 60px rgba(255,45,149,0.1);
    letter-spacing: 0.02em;
}

.tienda-hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-300);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    gap: 10px;
}

/* --- Tienda Sections --- */
.tienda-section {
    padding: 64px 0;
    position: relative;
}

.tienda-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.04em;
}

.tienda-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    margin: 12px auto 0;
    border-radius: 2px;
}

/* --- Category Filter Buttons --- */
.tienda-cats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tienda-cat {
    display: flex;
    flex-direction: column;
    background: var(--dark-900);
    border: 1px solid var(--dark-700);
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-slow);
    position: relative;
    padding: 0;
    font-family: inherit;
    color: inherit;
    outline: none;
}

.tienda-cat::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(255,45,149,0.4), transparent, rgba(212,175,55,0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.tienda-cat:hover,
.tienda-cat.active {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255,45,149,0.12), 0 15px 40px rgba(0,0,0,0.4);
    border-color: transparent;
}

.tienda-cat:hover::before,
.tienda-cat.active::before {
    opacity: 1;
}

.tienda-cat.active {
    border-color: var(--pink);
}

.tienda-cat-visual {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.tienda-cat-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(0.7) saturate(0.9);
}

.tienda-cat:hover .tienda-cat-visual img,
.tienda-cat.active .tienda-cat-visual img {
    filter: brightness(0.85) saturate(1.1);
    transform: scale(1.06);
}

.tienda-cat-info {
    padding: 16px 12px 18px;
    text-align: center;
    border-top: 1px solid var(--dark-700);
}

.tienda-cat-info h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}

.tienda-cat-cta {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
}

.tienda-cat:hover .tienda-cat-cta,
.tienda-cat.active .tienda-cat-cta {
    color: var(--gold);
}

/* --- Product Cards Grid --- */
.tienda-productos {
    background: linear-gradient(180deg, var(--dark-950) 0%, var(--dark-900) 50%, var(--dark-950) 100%);
}

.tienda-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tienda-product {
    display: flex;
    flex-direction: column;
    background: var(--dark-800);
    border: 1px solid var(--dark-700);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-slow);
    opacity: 1;
    animation: fadeInUp 0.4s ease both;
}

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

.tienda-product:hover {
    transform: translateY(-6px);
    border-color: rgba(255,45,149,0.25);
    box-shadow: 0 0 25px rgba(255,45,149,0.1), 0 12px 35px rgba(0,0,0,0.4);
}

.tienda-product-img {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--dark-900);
}

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

.tienda-product:hover .tienda-product-img img {
    transform: scale(1.08);
}

.tienda-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 1;
}

.tienda-product-badge.sale {
    background: var(--pink);
    color: var(--white);
}

.tienda-product-badge.cat-tag {
    background: rgba(10,5,8,0.75);
    backdrop-filter: blur(8px);
    color: var(--gray-300);
    border: 1px solid var(--dark-600);
}

.tienda-product-info {
    padding: 16px 18px 20px;
    text-align: center;
    border-top: 1px solid var(--dark-700);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.tienda-product-info h4 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
}

.tienda-product-cta {
    font-size: 0.75rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.tienda-product:hover .tienda-product-cta {
    color: var(--pink);
}

/* --- Product Detail Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10,5,8,0.85);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--dark-900);
    border: 1px solid var(--dark-700);
    border-radius: var(--radius-xl);
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s ease;
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,5,8,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--dark-600);
    border-radius: 50%;
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    background: var(--pink);
    color: var(--white);
    display: none;
}

.modal-badge.visible {
    display: inline-block;
}

.modal-details {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-cat {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink);
}

.modal-details h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.modal-details p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-artist {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--gray-300);
}

.artist-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.artist-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.artist-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.artist-text strong {
    color: var(--gold);
    font-size: 0.85rem;
}

.artist-text span {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.artist-text em {
    color: var(--gold);
    font-size: 0.72rem;
    margin-top: 2px;
    font-style: normal;
}

.tienda-product-artist {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    margin-top: -2px;
    margin-bottom: 2px;
}

.modal-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.modal-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    padding: 8px 16px;
    background: var(--dark-800);
    border: 1px solid var(--dark-600);
    border-radius: var(--radius);
    color: var(--gray-300);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover {
    border-color: var(--pink);
    color: var(--white);
}

.size-btn.active {
    background: rgba(255,45,149,0.12);
    border-color: var(--pink);
    color: var(--pink);
}

.finish-btn-wrap {
    position: relative;
}

.finish-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-800);
    border: 1px solid var(--dark-600);
    color: var(--gray-300);
    font-size: 0.7rem;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: var(--radius);
    width: 220px;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.finish-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark-600);
}

.finish-btn-wrap:hover .finish-tooltip {
    display: block;
}

.modal-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}

.btn-add-cart {
    margin-top: auto;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* --- Cart Sidebar --- */
.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 2500;
    background: rgba(10,5,8,0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2600;
    width: 400px;
    max-width: 90vw;
    background: var(--dark-900);
    border-left: 1px solid var(--dark-700);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--dark-700);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 svg {
    color: var(--pink);
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--dark-600);
    border-radius: 50%;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-empty {
    text-align: center;
    padding: 48px 16px;
    color: var(--gray-500);
}

.cart-empty svg {
    margin-bottom: 12px;
    opacity: 0.4;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: var(--dark-800);
    border: 1px solid var(--dark-700);
    border-radius: var(--radius-lg);
    margin-bottom: 10px;
    transition: var(--transition);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-meta {
    font-size: 0.72rem;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.cart-item-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
}

.cart-item-remove {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--dark-600);
    border-radius: 50%;
    color: var(--gray-500);
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
    align-self: flex-start;
}

.cart-item-remove:hover {
    background: rgba(255,45,149,0.15);
    border-color: var(--pink);
    color: var(--pink);
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--dark-700);
    display: none;
}

.cart-footer.has-items {
    display: block;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cart-total span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-300);
}

.cart-total strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
}

.btn-checkout {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #25d366;
    border-color: #25d366;
}

.btn-checkout:hover {
    background: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(37,211,102,0.3);
}

.btn-mercadopago {
    background: #009ee3;
    border-color: #009ee3;
    margin-top: 8px;
}

.btn-mercadopago:hover {
    background: #007eb5;
    border-color: #007eb5;
    box-shadow: 0 0 20px rgba(0, 158, 227, 0.3);
}

.btn-mercadopago:disabled {
    opacity: 0.6;
    cursor: wait;
}

/* --- Floating Cart Button --- */
.cart-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 1500;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-800);
    border: 1px solid var(--dark-600);
    border-radius: 50%;
    color: var(--pink);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.cart-float:hover {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255,45,149,0.3);
}

.cart-float-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--dark-950);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50%;
    padding: 0 4px;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.cart-float-count.visible {
    opacity: 1;
    transform: scale(1);
}

/* === Gallery === */
.gallery {
    background: var(--dark-900);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    background: var(--dark-800);
    border: 1px solid var(--dark-700);
}

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

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 32px;
    min-height: 260px;
    color: var(--gray-400);
    gap: 12px;
    transition: var(--transition);
}

.gallery-placeholder svg {
    color: var(--pink);
    opacity: 0.5;
    transition: var(--transition);
}

.gallery-placeholder span {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gray-200);
    font-size: 1rem;
}

.gallery-placeholder p {
    font-size: 0.85rem;
    max-width: 280px;
}

.gallery-item:hover {
    border-color: rgba(255, 45, 149, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.06), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-placeholder svg {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--gray-400);
    font-style: italic;
}

/* === Contact === */
.contact {
    background: var(--dark-950);
    position: relative;
    overflow: hidden;
}

.mosaic-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mosaic-pattern {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    color: var(--gray-400);
    margin: 20px 0 36px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--dark-900);
    border: 1px solid var(--dark-700);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(255, 45, 149, 0.25);
    background: var(--dark-800);
    box-shadow: 0 0 15px rgba(255, 45, 149, 0.06);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-glow);
    border-radius: var(--radius);
    color: var(--pink);
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.contact-icon.instagram {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* === Form === */
.contact-form {
    padding: 36px;
    border-radius: var(--radius-xl);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-900);
    border: 1px solid var(--dark-600);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px var(--pink-glow), 0 0 15px rgba(255, 45, 149, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a7585' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* === Footer === */
.footer {
    background: var(--dark-900);
    border-top: 1px solid rgba(255, 45, 149, 0.1);
    padding: 60px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), var(--gold), transparent);
    box-shadow: 0 0 10px rgba(255, 45, 149, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--pink) !important;
    font-size: 0.85rem !important;
    text-shadow: 0 0 8px rgba(255, 45, 149, 0.3);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-links li {
    font-size: 0.88rem;
    color: var(--gray-400);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--dark-700);
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.footer-partners strong {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.15);
    z-index: 999;
    transition: var(--transition);
    animation: bounceIn 1s ease 1.5s both;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.2);
}

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

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.4;
        transform: scaleY(0.6);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === Cyberpunk Neon Effects === */

/* Glitch effect for hero title */
.cyber-glitch {
    position: relative;
    display: inline-block;
}

.cyber-glitch::before,
.cyber-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cyber-glitch::before {
    color: var(--gold);
    animation: glitch-1 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    -webkit-text-fill-color: var(--gold);
    background: none;
    opacity: 0.6;
}

.cyber-glitch::after {
    color: var(--pink);
    animation: glitch-2 2.5s infinite linear alternate-reverse;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    -webkit-text-fill-color: var(--pink);
    background: none;
    opacity: 0.6;
}

@keyframes glitch-1 {
    0%, 85% { transform: translate(0); }
    86% { transform: translate(-3px, -1px); }
    88% { transform: translate(3px, 1px); }
    90% { transform: translate(-2px, 0); }
    92%, 100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0%, 80% { transform: translate(0); }
    81% { transform: translate(2px, 1px); }
    83% { transform: translate(-3px, -1px); }
    85% { transform: translate(1px, 0); }
    87%, 100% { transform: translate(0); }
}

/* Neon horizontal rule */
.neon-line {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), var(--gold), var(--neon-purple), transparent);
    box-shadow: 0 0 8px rgba(255, 45, 149, 0.3), 0 0 20px rgba(255, 45, 149, 0.1);
    margin: 0;
}

/* Neon flicker for accents */
.neon-flicker {
    animation: neonFlicker 3s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 10px rgba(255, 45, 149, 0.4), 0 0 20px rgba(255, 45, 149, 0.2), 0 0 40px rgba(255, 45, 149, 0.1);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

/* Neon border animation for sections */
.about::before,
.services::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), var(--gold), transparent);
    box-shadow: 0 0 10px rgba(255, 45, 149, 0.2);
    opacity: 0.5;
    z-index: 2;
}

/* Purple/gold ambient glow in about section */
.about::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Pink ambient glow in services */
.services::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 149, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Contact section glow */
.contact::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(180, 77, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

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

    .gallery-item.large {
        grid-column: span 1;
    }

    .tienda-cats {
        grid-template-columns: repeat(3, 1fr);
    }

    .tienda-products {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .floating-frames {
        display: none;
    }

    .gallery-wall {
        height: 40%;
        opacity: 0.6;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .hero-scroll {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
    }

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

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

    .tienda-cats {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .tienda-products {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .tienda-hero {
        min-height: 380px;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-img-wrap {
        aspect-ratio: 4/3;
    }

    .modal-details {
        padding: 24px 20px;
    }

    .cart-sidebar {
        width: 100%;
        max-width: 100vw;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 24px;
    }

    .tienda-cats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .tienda-products {
        grid-template-columns: 1fr 1fr;
    }

    .tienda-hero {
        min-height: 320px;
    }

    .tienda-hero-content {
        padding: 48px 16px;
    }

    .tienda-cat-info h4 {
        font-size: 0.7rem;
    }

    .tienda-cat-cta {
        font-size: 0.55rem;
    }
}

/* ===================================
   Order Receipt Modal
   =================================== */

.receipt-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.receipt-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.receipt-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 10001;
    max-width: 480px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.receipt-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.receipt-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.receipt-close:hover {
    background: var(--pink);
}

/* Receipt Card (the part that gets captured as image) */
.receipt-card {
    background: linear-gradient(160deg, #1a1015 0%, #0d080b 50%, #1a0f18 100%);
    border: 1.5px solid rgba(255, 45, 149, 0.3);
    border-radius: 16px;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

.receipt-header {
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 45, 149, 0.2);
}

.receipt-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
}

.receipt-header-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.receipt-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 4px 0 0;
}

/* Receipt item rows */
.receipt-items {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.receipt-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.receipt-item-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.receipt-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.receipt-item-info {
    flex: 1;
    min-width: 0;
}

.receipt-item-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.receipt-item-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
}

.receipt-item-price {
    font-weight: 700;
    color: var(--pink);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Total */
.receipt-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    margin: 0 24px 20px;
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.12) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(255, 45, 149, 0.25);
    border-radius: 12px;
}

.receipt-total span {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.12em;
}

.receipt-total strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}

/* Footer */
.receipt-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.receipt-footer p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 2px 0;
}

/* Action buttons below the card */
.receipt-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.receipt-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.receipt-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.receipt-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.receipt-actions .btn-primary {
    background: #25d366;
    color: #fff;
}

.receipt-actions .btn-primary:hover {
    background: #20bd5a;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .receipt-modal {
        width: 95%;
    }

    .receipt-header {
        padding: 18px 16px;
    }

    .receipt-items {
        padding: 14px 16px;
    }

    .receipt-total {
        margin: 0 16px 16px;
        padding: 14px 16px;
    }

    .receipt-actions {
        flex-direction: column;
    }
}
}