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

:root {
    /* Brand Colors */
    --mag-red: #e63946;
    --mag-green: #2a9d8f;
    --mag-blue: #3b82f6;
    --mag-purple: #8b5cf6;

    /* Section Colors */
    --pink-light: #ffc2d1;
    --pink-medium: #ff8fab;
    --pink-dark: #fb6f92;
    --yellow-bright: #ffe156;
    --yellow-gold: #ffd000;
    --purple-vibrant: #6c5ce7;
    --purple-deep: #5b4cff;
    --green-fresh: #6bcb77;
    --green-mint: #98d4a0;
    --blue-sky: #74c0fc;
    --blue-ocean: #4dabf7;

    /* Neutrals */
    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #404060;
    --gray-600: #666;
    --gray-500: #888;
    --gray-400: #aaa;
    --gray-300: #ccc;
    --gray-200: #e8e8e8;
    --gray-100: #f5f5f7;
    --white: #ffffff;

    /* Gradients */
    --gradient-pink: linear-gradient(135deg, #ffc2d1 0%, #ff8fab 50%, #fb6f92 100%);
    --gradient-yellow: linear-gradient(135deg, #fff176 0%, #ffe156 50%, #ffd000 100%);
    --gradient-purple: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 50%, #5b4cff 100%);
    --gradient-green: linear-gradient(135deg, #a8e6cf 0%, #6bcb77 100%);
    --gradient-blue: linear-gradient(135deg, #74c0fc 0%, #4dabf7 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.2);
    --shadow-glow-pink: 0 20px 60px rgba(251, 111, 146, 0.3);
    --shadow-glow-yellow: 0 20px 60px rgba(255, 225, 86, 0.4);
    --shadow-glow-purple: 0 20px 60px rgba(108, 92, 231, 0.3);

    /* Timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--gray-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Group - Main + Branch Logo */
.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-main {
    display: flex;
    align-items: center;
    transition: all 0.3s var(--ease-out-expo);
}

.logo-main:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo-main img {
    height: 36px;
    width: auto;
}

.logo-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-300);
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s var(--ease-out-back);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 55px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    border-radius: 2px;
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--purple-vibrant);
}

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

.nav-links a.active {
    color: var(--purple-vibrant);
}

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

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

.search-btn {
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-back);
}

.search-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-600);
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--purple-vibrant);
    transform: scale(1.1);
}

.search-btn:hover svg {
    stroke: var(--white);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

/* ==================== NIVEL 1 - HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(251, 111, 146, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: -3px;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(60px) rotateX(-15deg);
    animation: titleReveal 1s var(--ease-out-expo) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.35s; }
.hero-title span:nth-child(3) { animation-delay: 0.5s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
    opacity: 0;
    transform: translateX(80px) scale(0.9);
    animation: heroImageIn 1.2s var(--ease-out-expo) 0.4s forwards;
}

@keyframes heroImageIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.carousel-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1s forwards;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.4s var(--ease-out-back);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s var(--ease-out-expo);
}

.dot.active {
    background: var(--purple-vibrant);
    transform: scale(1.2);
}

.dot.active::before {
    border-color: var(--purple-vibrant);
    opacity: 0.3;
}

.dot:hover {
    background: var(--purple-vibrant);
    transform: scale(1.3);
}

/* ==================== NIVEL 2 - COMISIONES CON AURA ==================== */
.comisiones-section {
    display: flex;
    min-height: 550px;
    position: relative;
    overflow: hidden;
}

.comisiones-left {
    flex: 1;
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.comisiones-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.2) 0%, transparent 50%);
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-30%) rotate(0deg); }
    100% { transform: translateX(30%) rotate(360deg); }
}

.comisiones-left .artist-credit {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 0.85rem;
    color: var(--gray-800);
    font-weight: 600;
    background: rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.comisiones-images {
    display: flex;
    align-items: flex-end;
    gap: 25px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.comisiones-images .placeholder-img {
    background: rgba(255,255,255,0.25);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.25);
    font-size: 0.85rem;
    text-align: center;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.5s var(--ease-out-expo);
}

.comisiones-images .placeholder-img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow-pink);
}

.comisiones-images .placeholder-img.large {
    width: 220px;
    height: 320px;
}

.comisiones-images .placeholder-img.small {
    width: 170px;
    height: 250px;
}

/* Real images for comisiones */
.comisiones-images .comision-img {
    object-fit: contain;
    transition: all 0.5s var(--ease-out-expo);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.comisiones-images .comision-img:hover {
    transform: translateY(-10px) scale(1.02);
}

.comisiones-images .comision-img.large {
    height: clamp(280px, 45vh, 480px);
    width: auto;
}

.comisiones-images .comision-img.small {
    height: clamp(220px, 38vh, 400px);
    width: auto;
}

.comisiones-right {
    flex: 1;
    background: var(--gradient-yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 55px;
    position: relative;
    overflow: hidden;
}

.comisiones-right::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.comisiones-right h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.comisiones-right h2 .highlight {
    font-size: clamp(2.8rem, 6vw, 5rem);
    display: block;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comisiones-right p {
    font-size: 1.1rem;
    color: var(--gray-800);
    font-weight: 500;
    font-style: italic;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* ==================== NIVEL 3 - CARACTERÍSTICAS ==================== */
.features-section {
    display: flex;
    flex-direction: column;
}

.feature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 55px 70px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s var(--ease-out-expo);
}

.feature-block:hover::before {
    left: 100%;
}

.feature-block.pink {
    background: var(--gradient-pink);
}

.feature-block.purple {
    background: var(--gradient-purple);
}

.feature-block h3 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.05;
    max-width: 65%;
    text-shadow: 0 4px 20px rgba(0,0,0,0.1);
    letter-spacing: -1px;
}

.feature-block .feature-icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out-back);
}

.feature-block:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255,255,255,0.25);
}

.feature-block .feature-icon svg {
    width: 55px;
    height: 55px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

.feature-block .feature-icon.filled svg {
    fill: var(--white);
    stroke: var(--white);
}

/* ==================== NIVEL 4 - PRODUCTOS ==================== */
.productos-section {
    padding: 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.productos-container {
    display: flex;
    min-height: 550px;
}

.productos-sidebar {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    background: var(--white);
    padding: 50px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--gray-200);
    position: relative;
}

.productos-sidebar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: var(--gradient-purple);
    border-radius: 3px;
}

.productos-sidebar h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 6px;
}

.producto-showcase {
    flex: 1;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, #e8e8ec 100%);
    position: relative;
    padding: 60px 80px;
    overflow: hidden;
}

.producto-showcase::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.producto-showcase::after {
    content: '';
    position: absolute;
    right: -80px;
    top: 0;
    bottom: 0;
    width: 250px;
    background: var(--gray-200);
    border-radius: 200px 0 0 200px;
    opacity: 0.5;
}

.producto-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.producto-image .placeholder-producto {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.6);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.95rem;
    text-align: center;
    padding: 35px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease-out-expo);
}

.producto-image .placeholder-producto:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.producto-image img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.2));
    transition: all 0.6s var(--ease-out-expo);
}

.producto-image img:hover {
    transform: translateY(-15px) scale(1.03);
}

.producto-info {
    flex: 1;
    z-index: 2;
    padding-right: 80px;
}

.producto-info h3 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--gray-900);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.producto-info h3 span {
    display: block;
}

.producto-info h3 .small-text {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--gray-600);
    font-weight: 700;
    letter-spacing: 0;
}

.producto-info h3 span:last-child {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.producto-info .producto-desc {
    font-size: 1rem;
    color: var(--gray-500);
    font-style: italic;
    padding-left: 20px;
    border-left: 3px solid var(--purple-vibrant);
}

/* ==================== NIVEL 5 - PRECIOS ==================== */
/* ==================== NIVEL 5 - PRECIOS ==================== */
.precios-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--white) 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.precios-container {
    max-width: 1400px;
    margin: 0 auto;
}

.precios-header {
    text-align: center;
    margin-bottom: 60px;
}

.precios-header h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.precios-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: 4px;
}

/* Showcase Grid */
.precios-showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Cards Base */
.showcase-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.showcase-card:hover {
    transform: translateY(-10px);
}

/* Card Principal - Chibi Grande */
.showcase-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: clamp(400px, 60vh, 550px);
    padding: clamp(30px, 5vw, 50px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.showcase-main:hover {
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
}

.showcase-main .showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-main .showcase-image {
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 75%;
    z-index: 1;
}

.showcase-main .showcase-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
    transition: transform 0.6s var(--ease-out-expo);
}

.showcase-main:hover .showcase-image img {
    transform: scale(1.05) rotate(-2deg);
}

/* Card Secundaria - Estilizado Pequeño */
.showcase-secondary {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    min-height: clamp(400px, 60vh, 550px);
    padding: clamp(30px, 5vw, 50px);
    box-shadow: 0 20px 60px rgba(250, 112, 154, 0.3);
}

.showcase-secondary:hover {
    box-shadow: 0 30px 80px rgba(250, 112, 154, 0.4);
}

.showcase-secondary .showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-secondary .showcase-image {
    position: absolute;
    bottom: -8%;
    right: -10%;
    width: 70%;
    z-index: 1;
}

.showcase-secondary .showcase-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25));
    transition: transform 0.6s var(--ease-out-expo);
}

.showcase-secondary:hover .showcase-image img {
    transform: scale(1.08) rotate(3deg);
}

/* Content Styles */
.showcase-tag {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.showcase-card h3 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.showcase-card p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,0.9);
    max-width: 280px;
    line-height: 1.5;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-medium), var(--yellow-bright), var(--purple-vibrant), var(--green-fresh));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-contact a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ==================== ON-SCROLL REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s var(--ease-out-expo);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s var(--ease-out-expo);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s var(--ease-out-expo);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s var(--ease-out-expo);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.reveal-fade.active {
    opacity: 1;
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--ease-out-expo);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

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

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

.float-animation {
    animation: float 5s ease-in-out infinite;
}

/* ==================== NIVEL 6 - SOBRE NOSOTROS HERO ==================== */
.about-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3d7ab5 100%);
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    flex: 1.2;
}

.about-hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 30px;
    text-shadow: 0 4px 30px rgba(255, 215, 0, 0.3);
    line-height: 1;
}

.about-hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-hero-text strong {
    color: #ffd700;
}

.about-hero-artist {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-hero-artist img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd700;
}

.about-hero-artist-info h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-hero-artist-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.about-hero-artist-info a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.about-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-image .mascot-placeholder {
    width: 400px;
    height: 450px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* ==================== NIVEL 7 - CHECA MIS TRABAJOS ==================== */
.portfolio-section {
    min-height: 500px;
    background: linear-gradient(135deg, #3d7ab5 0%, #5a9fd4 30%, #f4a460 70%, #e8825c 100%);
    display: flex;
    align-items: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.portfolio-content {
    flex: 1;
}

.portfolio-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-video {
    flex: 1.2;
    position: relative;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-links-external {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    justify-content: center;
}

.video-links-external a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-links-external a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-links-external svg {
    width: 20px;
    height: 20px;
}

/* ==================== NIVEL 8 - SERVICIOS ==================== */
.services-section {
    padding: 80px 40px;
    background: #fff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: right;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.services-grid {
    display: flex;
    gap: 20px;
    min-height: 450px;
    position: relative;
}

.service-bar {
    flex: 1;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-bar:hover {
    flex: 3.5;
}

.service-bar:nth-child(1) {
    background: linear-gradient(180deg, #ffb347 0%, #ff9500 100%);
    margin-top: 80px;
}

.service-bar:nth-child(2) {
    background: linear-gradient(180deg, #c98bb9 0%, #a8658c 100%);
    margin-top: 40px;
}

.service-bar:nth-child(3) {
    background: linear-gradient(180deg, #7cb342 0%, #558b2f 100%);
    margin-top: 20px;
}

.service-bar:nth-child(4) {
    background: linear-gradient(180deg, #5c9ce6 0%, #3d7ab5 100%);
    margin-top: 0;
}

/* Título siempre visible en la parte inferior */
.service-bar-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.service-bar:hover .service-bar-title {
    bottom: auto;
    top: 30px;
    left: 30px;
    transform: none;
    text-align: left;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

/* Contenido - aparece debajo del título */
.service-bar-content {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0s;
    overflow-y: auto;
}

.service-bar:hover .service-bar-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
}

/* Descripción con layout vertical */
.service-bar-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.service-bar-description span {
    display: block;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.service-bar-description span:last-child {
    border-bottom: none;
}

/* ==================== NIVEL 9 - CONTACTO ==================== */
.contact-section {
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
}

.contact-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(75, 0, 130, 0.5) 0%, rgba(75, 0, 130, 0.3) 50%, rgba(0, 80, 0, 0.3) 100%);
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
}

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

.submit-btn {
    grid-column: 1 / -1;
    justify-self: end;
    padding: 18px 50px;
    background: #fff;
    color: var(--gray-900);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding-top: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }

    .hero-image img {
        max-height: 50vh;
    }

    .comisiones-section {
        flex-direction: column;
    }

    .comisiones-left,
    .comisiones-right {
        padding: 60px 40px;
    }

    /* NIVEL 4 */
    .productos-container {
        flex-direction: column;
    }

    .productos-sidebar {
        writing-mode: horizontal-tb;
        transform: none;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 35px 40px;
    }

    .productos-sidebar::after {
        right: 20%;
        left: 20%;
        top: auto;
        bottom: 0;
        width: auto;
        height: 3px;
    }

    .producto-showcase {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
        gap: 40px;
    }

    .producto-showcase::after {
        display: none;
    }

    .producto-info {
        padding-right: 0;
    }

    /* NIVEL 5 */
    .precios-section {
        padding: 60px 25px;
    }

    .precios-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .showcase-main,
    .showcase-secondary {
        min-height: 380px;
    }

    .showcase-main .showcase-image {
        width: 65%;
        right: -8%;
    }

    .showcase-secondary .showcase-image {
        width: 55%;
        right: -5%;
    }

    .feature-block {
        flex-direction: column;
        text-align: center;
        gap: 35px;
        padding: 50px 40px;
    }

    .feature-block h3 {
        max-width: 100%;
    }

    /* NIVEL 6 */
    .about-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-image .mascot-placeholder {
        width: 300px;
        height: 350px;
    }

    /* NIVEL 7 */
    .portfolio-container {
        flex-direction: column;
        text-align: center;
    }

    /* NIVEL 8 */
    .services-grid {
        flex-wrap: wrap;
    }

    .service-bar {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .service-bar:nth-child(1),
    .service-bar:nth-child(2),
    .service-bar:nth-child(3),
    .service-bar:nth-child(4) {
        margin-top: 0;
        min-height: 200px;
    }

    .service-bar:hover {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .service-bar:hover .service-bar-title {
        left: 25px;
        font-size: 1.5rem;
    }

    .service-bar-content {
        top: 70px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.8rem;
        font-weight: 600;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 100px;
    }

    .hero-container {
        padding: 0 25px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        letter-spacing: -2px;
    }

    .carousel-dots {
        bottom: 30px;
    }

    .comisiones-left,
    .comisiones-right {
        padding: 50px 25px;
    }

    .comisiones-images {
        transform: scale(0.85);
    }

    .comisiones-right h2 {
        font-size: 1.6rem;
    }

    .comisiones-right h2 .highlight {
        font-size: 2.8rem;
    }

    .feature-block {
        padding: 45px 25px;
    }

    .feature-block h3 {
        font-size: 1.6rem;
    }

    .feature-block .feature-icon {
        width: 90px;
        height: 90px;
    }

    .productos-sidebar {
        padding: 25px;
    }

    .productos-sidebar h2 {
        font-size: 0.95rem;
        letter-spacing: 4px;
    }

    .producto-showcase {
        padding: 40px 25px;
    }

    .producto-info h3 {
        font-size: 2.5rem;
    }

    .producto-info h3 .small-text {
        font-size: 1.4rem;
    }

    .precios-section {
        padding: 50px 20px;
    }

    .precios-header {
        margin-bottom: 40px;
    }

    .showcase-main,
    .showcase-secondary {
        min-height: 320px;
        padding: 25px;
    }

    .showcase-card h3 {
        font-size: 1.8rem;
    }

    .showcase-main .showcase-image {
        width: 60%;
    }

    .showcase-secondary .showcase-image {
        width: 50%;
    }

    .footer {
        padding: 60px 25px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

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

    /* NIVEL 6 */
    .about-hero {
        padding-top: 80px;
    }

    .about-hero-container {
        padding: 40px 25px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-image .mascot-placeholder {
        width: 250px;
        height: 280px;
    }

    /* NIVEL 7 */
    .portfolio-section {
        padding: 60px 25px;
    }

    .portfolio-title {
        font-size: 2rem;
    }

    /* NIVEL 8 */
    .services-section {
        padding: 60px 25px;
    }

    .services-grid {
        flex-direction: column;
        gap: 15px;
    }

    .service-bar {
        flex: none;
        min-width: 100%;
        min-height: auto;
        padding: 25px;
    }

    .service-bar:nth-child(1),
    .service-bar:nth-child(2),
    .service-bar:nth-child(3),
    .service-bar:nth-child(4) {
        margin-top: 0;
    }

    .service-bar:hover {
        flex: none;
    }

    .service-bar-title {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        text-align: left;
        font-size: 1.2rem;
        margin-bottom: 15px;
        white-space: normal;
    }

    .service-bar:hover .service-bar-title {
        position: relative;
        top: auto;
        left: auto;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .service-bar-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        padding: 0;
        opacity: 1;
        visibility: visible;
        overflow: visible;
    }

    .service-bar:hover .service-bar-content {
        opacity: 1;
        visibility: visible;
    }

    .service-bar-description {
        font-size: 0.85rem;
        padding-left: 15px;
        border-left-width: 2px;
    }

    .service-bar-description span {
        padding: 8px 0;
    }

    /* NIVEL 9 */
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 60px 25px;
    }
}

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

    .comisiones-images {
        transform: scale(0.7);
    }

    .showcase-main,
    .showcase-secondary {
        min-height: 280px;
        padding: 20px;
    }

    .showcase-tag {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .showcase-card h3 {
        font-size: 1.5rem;
    }

    .showcase-card p {
        font-size: 0.85rem;
    }

    .showcase-main .showcase-image,
    .showcase-secondary .showcase-image {
        width: 55%;
    }
}
