:root {
    /* Fondos */
    --bg-primary: #000000;
    --bg-secondary: #09090B;
    --bg-tertiary: #18181B;

    /* Acento Primario (Rojo Púrpura / Magenta Oscuro) */
    --primary-50: #fdf2f8;
    --primary-100: #fce7f3;
    --primary-200: #fbcfe8;
    --primary-300: #f9a8d4;
    --primary-400: #f472b6;
    --primary-500: #db2777; /* Color Base */
    --primary-600: #be185d;
    --primary-700: #9d174d;
    --primary-800: #831843;
    --primary-900: #500724;
    
    --primary-rgb: 219, 39, 119;

    /* Textos */
    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-tertiary: #A1A1AA;
    --text-quaternary: #71717A;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
}

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

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

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

.text-center { text-align: center; }
.section { padding: 100px 0; }
.section-title { font-size: 48px; font-weight: 700; line-height: 1.2; margin-bottom: 48px; }

/* Effects */
.glow-text {
    color: var(--primary-500);
    text-shadow: 
        0 0 10px rgba(var(--primary-rgb), 0.8),
        0 0 20px rgba(var(--primary-rgb), 0.6),
        0 0 40px rgba(var(--primary-rgb), 0.4);
}

.glow-primary {
    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.6))
            drop-shadow(0 0 40px rgba(var(--primary-rgb), 0.4))
            drop-shadow(0 0 60px rgba(var(--primary-rgb), 0.3));
}

/* Glassmorphism */
.glass-card {
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.08) 0%,
        rgba(var(--primary-rgb), 0.04) 50%,
        rgba(var(--primary-rgb), 0.08) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 2px 4px -2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.35);
    transform: translateY(-4px);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-600) 0%,
        var(--primary-500) 30%,
        var(--primary-400) 60%,
        var(--primary-500) 100%
    );
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    box-shadow: 
        0 0 0 1px rgba(var(--primary-rgb), 0.5),
        0 4px 24px rgba(var(--primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 
        0 0 0 2px rgba(var(--primary-rgb), 0.8),
        0 8px 40px rgba(var(--primary-rgb), 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    border: 1px solid var(--text-quaternary);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--primary-500);
    color: var(--primary-400);
}

.btn-primary-outline {
    background: transparent;
    color: var(--primary-400);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid var(--primary-500);
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.btn-large {
    font-size: 20px;
    padding: 20px 48px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background 0.3s ease;
}

.navbar.hidden-nav {
    transform: translate(-50%, -150%);
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.15);
    border-color: rgba(var(--primary-rgb), 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.05em;
}

.logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 16px;
    border-radius: 50px;
    letter-spacing: 0.02em;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-600), var(--primary-400));
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    color: #fff;
    background: rgba(var(--primary-rgb), 0.12);
    box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.2), inset 0 0 12px rgba(var(--primary-rgb), 0.05);
}

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

/* Legacy .nav-link class kept for compatibility */
.nav-link {
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

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

.hero.centered-hero {
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: slow-zoom 20s infinite alternate ease-in-out;
    opacity: 0.6; /* Para que no sea tan brillante */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Degradado oscuro para que la imagen se vea épica pero el texto sea 100% legible */
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, #000000 100%);
    z-index: 1;
}

.hero-container-centered {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-400);
    border-radius: 100px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    margin-bottom: 24px;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.hero-title {
    font-size: 84px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fade-in-left 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    /* Sombra fuerte para legibilidad extrema sobre la imagen */
    text-shadow: 0 4px 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin: 0 auto 48px;
    max-width: 700px;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    animation: fade-in-left 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fade-in-left 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.hero-buttons.justify-center {
    justify-content: center;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-number {
    font-size: 48px;
    color: var(--primary-500);
    display: inline-block;
}

.stats-grid span {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-500);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== Tab Switch Toggle ===== */
.services-tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.tab-switch {
    position: relative;
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 100px;
    padding: 4px;
    gap: 0;
}

.tab-switch-btn {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: var(--text-tertiary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 100px;
    transition: color 0.4s ease;
    white-space: nowrap;
}

.tab-switch-btn.active {
    color: #fff;
}

.tab-switch-btn:hover:not(.active) {
    color: var(--text-secondary);
}

.tab-switch-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(33.333% - 2.66px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    border-radius: 100px;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

/* ===== Package Cards Grid ===== */
.packages-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    animation: fadeInPackages 0.5s ease forwards;
}

.packages-grid.active {
    display: grid;
}

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

/* ===== Individual Package Card ===== */
.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    border-radius: 20px;
    background: linear-gradient(to bottom, #111111 40%, #030303 100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    overflow: visible;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(var(--primary-rgb), 0.15);
}

/* Featured / Popular card */
.package-card.featured {
    border-color: rgba(var(--primary-rgb), 0.5);
    background: linear-gradient(to bottom, #111111 40%, #0a0314 100%) !important;
    box-shadow:
        0 0 0 1px rgba(var(--primary-rgb), 0.3),
        0 8px 30px rgba(var(--primary-rgb), 0.15);
}

.package-card.featured:hover {
    box-shadow:
        0 0 0 1px rgba(var(--primary-rgb), 0.6),
        0 20px 60px rgba(var(--primary-rgb), 0.25);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
    white-space: nowrap;
}

/* Package Header */
.package-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.package-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.5));
}

.package-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-400);
    background: rgba(var(--primary-rgb), 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

/* Package Image */
.package-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 0;
}

.package-image img {
    width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(220, 20, 100, 0.5)) contrast(1.1);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 20px 35px rgba(220, 20, 100, 0.75)) contrast(1.1);
}

/* Package Content */
.package-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.package-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature List */
.package-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.package-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.package-features-list li.disabled {
    color: var(--text-quaternary);
    opacity: 0.5;
}

.package-features-list .check {
    color: var(--primary-400);
    font-weight: 700;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.package-features-list .cross {
    color: var(--text-quaternary);
    font-weight: 700;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* Package Footer */
.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.package-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== Accordion Portfolio ===== */
.accordion-gallery {
    display: flex;
    width: 100%;
    height: 550px;
    gap: 16px;
}

.accordion-item {
    position: relative;
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.accordion-item:hover, .accordion-gallery:not(:hover) .accordion-item.active {
    flex: 6;
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.2);
}

.accordion-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.6s ease, transform 0.8s ease;
    filter: grayscale(80%);
}

.accordion-item:hover .accordion-img, .accordion-gallery:not(:hover) .accordion-item.active .accordion-img {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

.accordion-item:hover .accordion-img.img-enhanced, .accordion-gallery:not(:hover) .accordion-item.active .accordion-img.img-enhanced {
    filter: grayscale(0%) contrast(1.15) saturate(1.25) brightness(1.05);
}

.accordion-title-vertical {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    transition: opacity 0.3s ease;
}

.accordion-item:hover .accordion-title-vertical, .accordion-gallery:not(:hover) .accordion-item.active .accordion-title-vertical {
    opacity: 0;
}

.accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    pointer-events: none;
}

.accordion-content-inner {
    width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.accordion-item:hover .accordion-content-inner, .accordion-gallery:not(:hover) .accordion-item.active .accordion-content-inner {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.accordion-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-400);
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(var(--primary-rgb), 0.15);
    border-radius: 100px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.accordion-content-inner h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.accordion-content-inner p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: #e0e0e0 !important;
    border-left: 3px solid rgba(var(--primary-rgb), 0.8);
    padding-left: 14px;
    margin-top: 12px !important;
    background: rgba(var(--primary-rgb), 0.05);
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
}

/* ===== Kinetic Ad Spot (Sobre Mí) ===== */
.kinetic-section {
    position: relative;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
}

.kinetic-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kinetic-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    width: 600px;
    pointer-events: none;
    z-index: 0;
    animation: glitch-anim 6s infinite;
}

@keyframes glitch-anim {
    0%, 90%, 100% {
        transform: translate(-50%, -50%) skew(0deg);
        filter: drop-shadow(0 0 0 transparent);
        opacity: 0.05;
    }
    92% {
        transform: translate(-52%, -50%) skew(10deg);
        filter: drop-shadow(-5px 0 0 #0ff) drop-shadow(5px 0 0 #f0f);
        opacity: 0.15;
    }
    94% {
        transform: translate(-48%, -50%) skew(-10deg);
        filter: drop-shadow(5px 0 0 #0ff) drop-shadow(-5px 0 0 #f0f);
    }
    96% {
        transform: translate(-50%, -50%) skew(0deg);
        filter: drop-shadow(0 0 0 transparent);
        opacity: 0.05;
    }
}

.kinetic-text-wrapper {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.kinetic-phrase {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    font-size: clamp(24px, 5vw, 64px);
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 30px rgba(var(--primary-rgb), 0.5);
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
    margin: 0;
}

.kinetic-cta {
    display: inline-block;
    margin-top: 40px;
    font-size: clamp(16px, 3vw, 22px);
    font-style: normal;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 600;
    white-space: normal;
    pointer-events: auto;
}

/* Enter state via JS */
.kinetic-phrase.active {
    animation: kinetic-enter 2.5s forwards;
    pointer-events: auto;
}

/* Exit state via JS */
.kinetic-phrase.exit {
    animation: kinetic-exit 1.5s forwards;
}

@keyframes kinetic-enter {
    0% {
        transform: translate(-50%, -50%) translateX(-100vw) skewX(30deg);
        opacity: 0;
        animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1);
    }
    20% {
        /* Látigo rápido al centro exacto */
        transform: translate(-50%, -50%) scale(1) skewX(0);
        opacity: 1;
        animation-timing-function: linear;
    }
    100% {
        /* Efecto de zoom lento manteniendo el centro perfecto */
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

@keyframes kinetic-exit {
    0% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
        animation-timing-function: cubic-bezier(0.5, 0, 0.9, 0.1);
    }
    100% {
        /* Salida a máxima velocidad por la derecha */
        transform: translate(-50%, -50%) translateX(100vw) skewX(-30deg);
        opacity: 0;
    }
}

/* ===== CTA Final (Discord VIP) ===== */
.cta-final {
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Testimoniales Destacados en la CTA Final */
.testimonials-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px auto 70px;
    width: 100%;
    max-width: 1000px;
}

.testimonial-highlight-card {
    padding: 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.testimonial-highlight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 46, 99, 0.3);
    box-shadow: 0 15px 30px rgba(255, 46, 99, 0.1), inset 0 0 15px rgba(255, 46, 99, 0.05);
}

@media (max-width: 768px) {
    .testimonials-highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
}

.discord-cta-card {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 50px;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(62, 42, 94, 0.95) 0%, rgba(42, 28, 64, 0.95) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden; /* contained within borders */
    display: flex;
    align-items: center;
    gap: 60px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.discord-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 75% 50%, rgba(88, 101, 242, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.discord-cta-img {
    position: relative;
    left: auto;
    bottom: auto;
    height: 180px;
    width: 180px;
    flex: 0 0 180px;
    z-index: 2;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5));
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    will-change: transform, filter;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.discord-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(var(--primary-rgb), 0.2);
}

.discord-cta-card:hover .discord-cta-img {
    transform: scale(1.08) rotate(-4deg);
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.6));
}

.discord-cta-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    width: 100%;
}

.discord-cta-content .cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase;
}

.discord-cta-content .cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    max-width: 100%;
}

.btn-discord {
    background: linear-gradient(135deg, #d82b88, #b81b70);
    color: white;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #f472b6, #db2777);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(219, 39, 119, 0.6);
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 80px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-column a {
    display: block;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-quaternary);
}

/* Animations */
@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-left {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in-rotate {
    0% { opacity: 0; transform: scale(0.8) rotate(-10deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
    75% { transform: translateY(-30px) rotate(1deg); }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 0 1px rgba(var(--primary-rgb), 0.5),
            0 4px 24px rgba(var(--primary-rgb), 0.4),
            0 0 60px rgba(var(--primary-rgb), 0.3);
    }
    50% {
        box-shadow: 
            0 0 0 2px rgba(var(--primary-rgb), 0.8),
            0 8px 40px rgba(var(--primary-rgb), 0.6),
            0 0 80px rgba(var(--primary-rgb), 0.5);
    }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Particles */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--primary-500);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-400);
    opacity: 0;
    animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    25% { transform: translate(100px, -100px); opacity: 0.8; }
    50% { transform: translate(-50px, -200px); opacity: 0.6; }
    75% { transform: translate(-100px, -100px); opacity: 0.8; }
}

@keyframes slow-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Icon 3D Hover */
.icon-3d {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.icon-3d:hover {
    transform: rotateY(15deg) scale(1.05);
    filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.8));
}

/* Utility classes for Intersection Observer */
.animate-in {
    animation: fade-in-up 0.8s forwards;
    opacity: 0;
}

/* Checkout and Cart */
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-cart {
    background: var(--primary-500);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background: var(--primary-400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
}

.btn-cart svg {
    width: 18px;
    height: 18px;
}

/* Cart Sidebar & Overlay */
.cart-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(var(--primary-rgb), 0.3);
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cart-header h2 {
    font-size: 24px;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--primary-400);
}

.cart-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    padding-right: 5px;
}

.cart-empty-msg {
    text-align: center;
    color: var(--text-tertiary);
    margin-top: 50px;
    font-style: italic;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: rgba(255,255,255,0.06);
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.cart-item-price {
    color: var(--primary-400);
    font-weight: bold;
    margin: 0;
}

.remove-item {
    background: rgba(255,0,0,0.1);
    color: #ff4444;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.remove-item:hover {
    background: #ff4444;
    color: #fff;
    transform: scale(1.1);
}

.cart-footer {
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cart-total-amount {
    color: var(--primary-400);
    font-size: 28px;
}

/* Cart Icon in Nav */
.cart-icon-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-left: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cart-icon-btn:hover {
    transform: scale(1.1);
    color: var(--primary-400);
}

.cart-svg {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: filter 0.3s ease, stroke 0.3s ease;
}

.cart-icon-btn:hover .cart-svg {
    filter: drop-shadow(0 0 8px var(--primary-400));
}

.cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-500);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--primary-500);
}

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

/* Floating PC Button */
.floating-pc-btn {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px); /* Hidden initially */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(var(--primary-rgb), 0.6);
    color: var(--primary-400);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(var(--primary-rgb), 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, box-shadow 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.floating-pc-btn.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-pc-btn:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 25px rgba(var(--primary-rgb), 0.8);
    color: #fff;
}

/* Responsive */
@media (min-width: 1440px) {
    .container { max-width: 1400px; }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-title { font-size: 64px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .packages-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .package-name { font-size: 20px; }
    .package-price { font-size: 24px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 64px; }
    .hero-buttons { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-container { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .navbar {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        background: rgba(10, 10, 10, 0.95) !important;
    }
    
    .navbar.hidden-nav {
        transform: translateY(-100%) !important;
        opacity: 0;
    }
    
    .cart-icon-btn {
        margin-left: 0 !important;
    }
    
    .hero-title { font-size: 40px; }
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle { 
        display: flex; 
        font-size: 26px;
        color: #ffffff;
        cursor: pointer;
        border: none;
        background: none;
        outline: none;
        z-index: 1001;
        transition: transform 0.3s ease;
    }
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(22, 12, 38, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 30px 20px;
        gap: 20px;
        align-items: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        z-index: 1000;
        animation: slideDownMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    @keyframes slideDownMenu {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .sphere { width: 250px; height: 250px; }
    .packages-grid, .stats-grid { 
        grid-template-columns: 1fr; 
        gap: 24px;
    }
    .package-card {
        padding: 24px 20px;
    }
    .package-image img {
        width: 100%;
        max-width: 220px;
        height: auto;
        margin: 0 auto;
    }
    .accordion-gallery { flex-direction: column; height: 650px; }
    .accordion-title-vertical { writing-mode: horizontal-tb; transform: translateX(-50%); bottom: 50%; font-size: 20px; }
    .accordion-content-inner { width: 100%; }
    .accordion-content-inner h3 { font-size: 24px; white-space: normal; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-links { grid-template-columns: 1fr; gap: 40px; }
    .tab-switch-btn { padding: 10px 18px; font-size: 13px; }
    .package-name { font-size: 20px; }
    .package-price { font-size: 28px; }
    
    .particle:nth-child(n+20) { display: none; }

    /* ===== Mobile Text Framing & Overflow Prevention ===== */
    .hero-title { font-size: 34px !important; line-height: 1.25 !important; }
    .hero-subtitle { font-size: 16px !important; line-height: 1.5 !important; }
    .section-title { font-size: 30px !important; margin-bottom: 30px !important; text-align: center !important; line-height: 1.25 !important; }
    .cta-title { font-size: 24px !important; }
    .cta-subtitle { font-size: 14px !important; }
    .kinetic-phrase { 
        white-space: normal !important; 
        font-size: clamp(20px, 5.5vw, 36px) !important;
        width: 90% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    .guide-title { font-size: clamp(26px, 5.5vw, 40px) !important; }
    
    h1, h2, h3, h4, h5, h6, p, a, span {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: normal !important;
        hyphens: none !important;
    }
}

/* ===== CTA Banner (Discord) ===== */
.cta-banner {
    position: relative;
    background: linear-gradient(90deg, rgba(62, 42, 94, 0.9) 0%, rgba(42, 28, 64, 0.9) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 30px 40px 30px 50%;
    margin: 60px auto 20px;
    max-width: 1100px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner-img {
    position: absolute;
    left: -40px;
    bottom: -28%;
    height: 150%;
    z-index: 2;
    filter: drop-shadow(10px 10px 30px rgba(0,0,0,0.6));
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
}

.cta-banner-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-banner-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .cta-banner {
        flex-direction: column;
        padding: 240px 30px 40px;
        text-align: center;
        margin-top: 180px;
    }
    .cta-banner-img {
        height: auto;
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
        top: -100px;
    }
}

/* ===== Guías Hub & Articles - 3D Relief Pop-Out ===== */
.guide-card-3d {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 75px 28px 28px 28px !important; /* extra top padding for floating asset */
    border-radius: 24px;
    background: linear-gradient(to bottom, #111111 40%, #030303 100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: visible !important; /* CRITICAL: Allows relief/pop-out */
    margin-top: 65px; /* Spacing for the overlapping image */
    cursor: pointer;
    border: 1px solid rgba(var(--primary-rgb), 0.1) !important;
}

.guide-card-3d:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.35) !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(var(--primary-rgb), 0.25);
}

.guide-card-img-wrapper {
    position: relative;
    height: 120px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-card-3d-img {
    position: absolute;
    top: -95px; /* Physical extreme float out */
    left: 50%;
    transform: translateX(-50%) translateY(0);
    height: 190px; /* Taller image for extreme relief */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.85));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    pointer-events: none;
}

.guide-card-3d:hover .guide-card-3d-img {
    transform: translateX(-50%) translateY(-24px) scale(1.18); /* Parallax lift and scale */
    filter: drop-shadow(0 30px 45px rgba(0,0,0,0.95)) drop-shadow(0 0 25px rgba(var(--primary-rgb), 0.45));
}

/* Contenedor de exhibición 3D para imágenes en artículos */
.guide-display-card-3d {
    position: relative;
    max-width: 600px;
    height: 240px;
    margin: 110px auto 90px; /* Incrementado para dar espacio suficiente al relieve superior/inferior sin cortar textos */
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(216, 43, 136, 0.05) 0%, rgba(9, 9, 11, 0.95) 100%) !important;
    border: 1px solid rgba(216, 43, 136, 0.15) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    overflow: visible !important; /* Permite que la pieza 3D sobresalga del marco */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

/* Efecto de luz ambiental detrás del objeto 3D */
.guide-display-card-3d::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(216, 43, 136, 0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

/* Imagen 3D flotante que rompe los límites superior e inferior */
.guide-display-card-3d-img {
    position: absolute;
    height: 155%; /* Sobresale significativamente de los bordes */
    width: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    pointer-events: none;
}

/* Hover de elevación de la tarjeta */
.guide-display-card-3d:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 43, 136, 0.4) !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8), 
        0 0 35px rgba(216, 43, 136, 0.25);
}

/* Parallax interactivo del objeto 3D en el artículo */
.guide-display-card-3d:hover .guide-display-card-3d-img {
    transform: scale(1.1) translateY(-14px) rotate(2deg); /* Elevación, escala y leve rotación 3D */
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 25px rgba(216, 43, 136, 0.5));
}

@media (max-width: 768px) {
    .guide-display-card-3d {
        height: 180px;
        margin: 80px auto 65px; /* Incrementado en móvil para dar respiro al texto */
    }
    .guide-display-card-3d-img {
        height: 140%;
    }
}

/* Article Styles */
.guide-header {
    padding: 180px 0 80px;
    background: radial-gradient(circle at top, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.guide-category {
    color: var(--primary-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
}

.guide-title {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.guide-meta {
    color: var(--text-tertiary);
    font-size: 16px;
}

.guide-content-section {
    padding: 80px 0;
}

.guide-article {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.guide-article h2 {
    font-size: 32px;
    color: #fff;
    margin: 64px 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.guide-article h3 {
    font-size: 24px;
    color: #fff;
    margin: 40px 0 16px;
}

.guide-article p {
    margin-bottom: 24px;
}

.guide-article ul {
    margin-bottom: 32px;
    list-style: none;
    padding-left: 0;
}

.guide-article ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
}

.guide-article ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-500);
}

.guide-article strong {
    color: #fff;
}

.guide-article .glass-card {
    padding: 32px;
    margin: 48px 0;
    background: rgba(255, 255, 255, 0.02);
}

.guide-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.guide-back-link:hover {
    color: var(--primary-400);
}

/* ===== Testimonials Carousel Styles ===== */
.testimonials-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 40px auto 60px;
    padding: 20px 10px 40px; /* Space for shadow & dots */
}

.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    width: 100%;
}

.carousel-slide-card {
    flex: 0 0 calc(50% - 15px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 50%, rgba(255, 255, 255, 0.02) 100%) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--primary-rgb), 0.15) !important;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.carousel-slide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.4) !important;
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15), inset 0 0 15px rgba(var(--primary-rgb), 0.05);
}

.carousel-slide-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-slide-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-500);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.35);
}

.carousel-slide-header h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.carousel-verified-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-400);
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 4px;
}

.carousel-quote {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    border-left: 3px solid rgba(var(--primary-rgb), 0.8);
    padding-left: 16px;
}

/* Slide buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary-600);
    color: #fff;
    border-color: var(--primary-400);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.6);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn:focus {
    outline: none;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Slide Dots */
.carousel-dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dot:hover {
    background: rgba(var(--primary-rgb), 0.5);
}

.carousel-dot.active {
    background: var(--primary-400);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--primary-400);
    width: 12px;
    height: 12px;
}

@media (min-width: 769px) {
    .carousel-dot:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .kinetic-bg-logo {
        width: 80% !important;
        max-width: 320px;
    }
    
    .testimonials-carousel-container {
        padding: 10px 0 30px;
    }
    
    .testimonials-carousel-track {
        gap: 20px;
    }
    
    .carousel-slide-card {
        flex: 0 0 100%;
        padding: 24px;
        gap: 12px;
    }
    
    .carousel-btn {
        display: none !important;
    }
    
    .prev-btn {
        left: 0;
    }
    
    .next-btn {
        right: 0;
    }
}

/* Responsive styles for bottom Discord card */
@media (max-width: 900px) {
    .discord-cta-card {
        flex-direction: column;
        padding: 40px 30px !important;
        text-align: center;
        gap: 30px;
        margin-top: 40px;
    }
    .discord-cta-img {
        flex: 0 0 140px;
        height: 140px;
        width: 140px;
        position: static;
        transform: none;
        margin: 0 auto;
    }
    .discord-cta-card:hover .discord-cta-img {
        transform: scale(1.08) rotate(-4deg);
    }
    .discord-cta-content {
        align-items: center;
        text-align: center;
    }
}

/* ==========================================
   Sales Notification Popups System (Cyberpunk/Glassmorphic)
   ========================================== */
.sales-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(22, 12, 38, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 380px;
    width: calc(100% - 60px);
    transform: translateX(-130%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    pointer-events: none;
}

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

.sales-notification-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8a3ffc 0%, #ff2e63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.25);
}

.sales-notification-content {
    flex-grow: 1;
}

.sales-notification-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sales-notification-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
}

.sales-notification-desc b {
    color: #ff2e63;
    font-weight: 700;
}

.sales-notification-time {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.sales-notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
}

.sales-notification-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .sales-notification {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        padding: 14px 16px;
    }
}

/* ==========================================================================
   HIGH-END AESTHETIC & MOTION ENHANCEMENTS (Awwwards-Tier Upgrade)
   ========================================================================== */

/* 1. Global Custom Selection & Premium Dark Scrollbars */
::selection {
    background: rgba(var(--primary-rgb), 0.35);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #030303;
}
::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--primary-rgb), 0.6);
}

/* 2. Concentric Double-Bezel Precision Hairlines for All Premium Cards */
.package-card, 
.guide-card-3d, 
.discord-cta-card, 
.glass-card, 
.carousel-slide-card,
.sales-notification {
    position: relative;
    border: 1px solid rgba(var(--primary-rgb), 0.12) !important;
}

.package-card::before, 
.guide-card-3d::before, 
.discord-cta-card::before, 
.glass-card::before,
.carousel-slide-card::before,
.sales-notification::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.005));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

/* 3. Absolute-Zero Physics-Based Easing for Hover States */
.package-card, 
.guide-card-3d, 
.glass-card, 
.discord-cta-card, 
.carousel-slide-card,
.sales-notification {
    transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1), 
                box-shadow 0.7s cubic-bezier(0.32, 0.72, 0, 1), 
                border-color 0.7s cubic-bezier(0.32, 0.72, 0, 1) !important;
}

.package-card:hover, 
.guide-card-3d:hover, 
.discord-cta-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: rgba(var(--primary-rgb), 0.35) !important;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.9),
        0 0 50px -10px rgba(var(--primary-rgb), 0.22),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15) !important;
}

/* 4. Concentric Curves & Pill Island Architecture for Interactive Buttons */
.btn-primary, 
.btn-secondary {
    border-radius: 100px !important;
    padding: 16px 38px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    font-size: 13.5px !important;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                filter 0.3s ease, 
                border-color 0.4s ease !important;
}

.btn-primary {
    box-shadow: 
        0 0 0 1px rgba(var(--primary-rgb), 0.35),
        0 4px 20px rgba(var(--primary-rgb), 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 
        0 0 0 2px rgba(var(--primary-rgb), 0.5),
        0 15px 40px rgba(var(--primary-rgb), 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(8px) !important;
}

.btn-secondary:hover {
    border-color: var(--primary-500) !important;
    background: rgba(var(--primary-rgb), 0.08) !important;
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
}

/* Button Physical Press/Haptic Action */
.btn-primary:active, 
.btn-secondary:active, 
.btn-cart:active {
    transform: scale(0.96) translateY(-1px) !important;
    transition: transform 0.1s cubic-bezier(0.32, 0.72, 0, 1) !important;
}

/* Custom Cart Button in Bento Packages */
.btn-cart {
    border-radius: 100px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12.5px !important;
    letter-spacing: 0.03em !important;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                background-color 0.3s ease, 
                box-shadow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 
        0 4px 15px rgba(var(--primary-rgb), 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.btn-cart:hover {
    background: var(--primary-400) !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 
        0 8px 25px rgba(var(--primary-rgb), 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* 5. Fluid Sidebar & Interactive Transitions */
.cart-sidebar {
    transition: right 0.8s cubic-bezier(0.32, 0.72, 0, 1) !important;
    background: rgba(10, 10, 10, 0.94) !important;
    backdrop-filter: blur(28px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(190%) !important;
    border-left: 1px solid rgba(var(--primary-rgb), 0.25) !important;
}

.navbar {
    transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1), 
                opacity 0.8s cubic-bezier(0.32, 0.72, 0, 1), 
                background-color 0.5s ease, 
                border-color 0.5s ease !important;
}

.accordion-item {
    transition: flex 0.75s cubic-bezier(0.25, 1, 0.3, 1), 
                border-color 0.6s cubic-bezier(0.32, 0.72, 0, 1), 
                box-shadow 0.6s cubic-bezier(0.32, 0.72, 0, 1) !important;
}

/* 6. Cinematic breathing animation for glowing text highlights */
@keyframes cinematic-glow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(var(--primary-rgb), 0.8),
            0 0 20px rgba(var(--primary-rgb), 0.35);
    }
    50% {
        text-shadow: 
            0 0 14px rgba(var(--primary-rgb), 0.95),
            0 0 28px rgba(var(--primary-rgb), 0.55),
            0 0 45px rgba(var(--primary-rgb), 0.25);
    }
}

.glow-text {
    animation: cinematic-glow 7s ease-in-out infinite;
}
