/* ==================== */
/* LA SANTA CALAVERA    */
/* Modern Cartel Design */
/* ==================== */

/* === VARIABLES === */
:root {
    /* Gold Palette */
    --gold-50: #FDF8E3;
    --gold-100: #F9EFC2;
    --gold-200: #F4E4A7;
    --gold-300: #ECCC6A;
    --gold-400: #E4B83F;
    --gold-500: #D4AF37;
    --gold-600: #B8941E;
    --gold-700: #8B7320;
    --gold-800: #5C4D16;
    --gold-900: #2D260B;
    
    /* Dark Palette */
    --dark-50: #404040;
    --dark-100: #303030;
    --dark-200: #252525;
    --dark-300: #1A1A1A;
    --dark-400: #121212;
    --dark-500: #0D0D0D;
    --dark-600: #080808;
    --dark-700: #050505;
    --dark-800: #030303;
    --dark-900: #000000;
    
    /* Accent Colors */
    --blood: #8B0000;
    --blood-light: #C41E3A;
    --success: #2D5016;
    --success-light: #4A8522;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    
    /* Effects */
    --glow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
    --glow-gold-strong: 0 0 60px rgba(212, 175, 55, 0.6);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* === SPLASH SCREEN === */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--dark-500) 0%, var(--dark-900) 70%, #000 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    animation: splashFadeIn 1s ease-out;
}

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

.splash-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    animation: splashLogoPulse 3s ease-in-out infinite;
}

@keyframes splashLogoPulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.8)); }
}

.splash-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold-500);
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.splash-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    font-style: italic;
}

.splash-enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--gold-500);
    color: var(--gold-400);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.splash-enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.splash-enter-btn:hover::before {
    left: 100%;
}

.splash-enter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.enter-icon {
    font-size: 1.4rem;
}

.splash-hint {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

body {
    font-family: var(--font-body);
    background: var(--dark-900);
    color: #E8E8E8;
    line-height: 1.7;
    font-size: 1.125rem;
    overflow-x: hidden;
    font-weight: 400;
}

::selection {
    background: var(--gold-500);
    color: var(--dark-900);
}

/* === CURSOR GLOW === */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

em {
    color: var(--gold-500);
    font-style: italic;
}

strong {
    color: var(--gold-300);
    font-weight: 600;
}

/* === NAVIGATION === */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.75rem 2rem;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s;
}

.nav-logo:hover .logo-img {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-500);
    letter-spacing: 0.2em;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--gold-300);
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: #B0B0B0;
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-500), transparent);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--gold-500);
}

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

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gold-500);
    transition: all 0.3s;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark-900);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 30% 100%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--dark-900) 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin-bottom: 8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.badge-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--gold-400);
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.title-line {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: 0.1em;
}

.title-line-1 {
    color: #FFFFFF;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-line-2 {
    color: var(--gold-500);
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1s ease-out 0.6s both, goldPulse 3s ease-in-out infinite;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.8s both;
}

.tagline-decorator {
    color: var(--gold-600);
    font-size: 1.5rem;
}

.tagline-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-300);
}

.hero-description {
    font-size: 1.25rem;
    color: #A0A0A0;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 1s both;
}

.hero-description em {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: var(--gold-400);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

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

.hero-stat .stat-value {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-500);
    text-shadow: var(--glow-gold);
    line-height: 1;
}

.hero-stat .stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #808080;
    margin-top: 0.5rem;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark-900);
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 1.4s both;
    box-shadow: var(--glow-gold);
}

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

.hero-cta svg {
    transition: transform 0.3s;
}

.hero-cta:hover svg {
    transform: translateY(3px);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 1s ease-out 2s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold-600);
    writing-mode: vertical-lr;
}

/* Hero Floating Elements */
.hero-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-float-1 { top: 20%; left: 10%; animation-delay: 0s; }
.hero-float-2 { top: 60%; right: 15%; animation-delay: 2s; }
.hero-float-3 { bottom: 30%; left: 20%; animation-delay: 4s; }

/* === SECTION STYLES === */
section {
    padding: var(--section-padding) 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--gold-600);
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--gold-500);
    margin-bottom: 1rem;
    text-shadow: var(--glow-gold);
}

.section-subtitle {
    font-size: 1.25rem;
    color: #808080;
    font-style: italic;
}

/* === HISTORIA SECTION === */
.historia {
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-700) 50%, var(--dark-900) 100%);
}

.historia-container {
    max-width: 1000px;
    margin: 0 auto;
}

.historia-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.intro-text {
    font-size: 1.3rem;
    line-height: 2;
    color: #C0C0C0;
}

.intro-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-500);
    display: block;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold-700), var(--gold-700), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item-right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 16px;
    height: 16px;
    background: var(--gold-500);
    border: 3px solid var(--dark-900);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: var(--glow-gold);
    z-index: 10;
}

.timeline-marker-danger {
    background: var(--blood);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.timeline-marker-gold {
    background: var(--gold-400);
    width: 20px;
    height: 20px;
}

.timeline-marker-rebirth {
    background: var(--success);
    box-shadow: 0 0 20px rgba(45, 80, 22, 0.5);
    width: 20px;
    height: 20px;
}

.timeline-marker-present {
    background: var(--gold-500);
    width: 24px;
    height: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2rem;
    max-width: 450px;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: var(--gold-600);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-content-dark {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(20, 20, 20, 0.9));
    border-color: rgba(139, 0, 0, 0.3);
}

.timeline-content-gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(20, 20, 20, 0.9));
}

.timeline-content-rebirth {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(20, 20, 20, 0.9));
    border-color: rgba(45, 80, 22, 0.3);
}

.timeline-content-present {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(20, 20, 20, 0.9));
    border-color: var(--gold-600);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-date {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gold-400);
}

.timeline-date.danger { color: var(--blood-light); }
.timeline-date.gold { color: var(--gold-300); }
.timeline-date.rebirth { color: var(--success-light); }
.timeline-date.present { color: var(--gold-500); }

.timeline-chapter {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #606060;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #A0A0A0;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.timeline-quote {
    font-style: italic;
    color: var(--gold-300);
    padding: 1rem;
    border-left: 2px solid var(--gold-700);
    margin-top: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 8px 8px 0;
}

.timeline-quote.gold {
    border-left-color: var(--gold-500);
    background: rgba(212, 175, 55, 0.1);
}

/* Betrayal Stats */
.betrayal-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
}

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

.betrayal-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--blood-light);
    display: block;
}

.betrayal-label {
    font-size: 0.8rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Rebirth Leadership */
.rebirth-leadership {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.leader-card {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(45, 80, 22, 0.2);
}

.leader-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.leader-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: #E0E0E0;
    display: block;
}

.leader-title {
    font-size: 0.75rem;
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Present Achievements */
.present-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.achievement {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    color: var(--gold-300);
}

/* Historia Closing */
.historia-closing {
    margin-top: 4rem;
    text-align: center;
}

.historia-closing blockquote {
    font-size: 1.5rem;
    color: var(--gold-300);
    line-height: 1.8;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.historia-closing cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #808080;
    font-style: normal;
}

/* === NEGOCIOS SECTION === */
.negocios {
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-600) 100%);
}

.negocios-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.25rem;
    color: #A0A0A0;
    line-height: 1.9;
}

.negocios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.negocio-card {
    position: relative;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.negocio-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-gold);
}

.negocio-card-wide {
    grid-column: span 2;
}

.negocio-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s;
}

.negocio-card:hover .negocio-icon {
    transform: scale(1.1);
}

.negocio-content h3 {
    font-size: 1.6rem;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.negocio-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-700);
    margin-bottom: 1rem;
}

.negocio-content > p {
    color: #909090;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.negocio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.negocio-features .feature {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    color: var(--gold-300);
}

.negocio-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

/* Negocios Summary */
.negocios-summary {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.summary-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.negocios-summary h3 {
    font-size: 1.8rem;
    color: var(--gold-500);
    margin-bottom: 1rem;
}

.negocios-summary p {
    color: #909090;
    line-height: 1.9;
    font-size: 1.15rem;
}

/* === VALORES SECTION === */
.valores {
    background: var(--dark-900);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.valor-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.valor-card:hover {
    border-color: var(--gold-600);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.valor-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.valor-card h3 {
    font-size: 1.8rem;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.valor-motto {
    font-style: italic;
    color: var(--gold-400);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.valor-card > p:last-of-type {
    color: #909090;
    line-height: 1.8;
}

.valores-secondary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.valor-mini {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    min-width: 180px;
    transition: all 0.3s;
}

.valor-mini:hover {
    border-color: var(--gold-600);
    transform: translateY(-3px);
}

.valor-mini-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.valor-mini h4 {
    font-size: 1.1rem;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.valor-mini p {
    font-size: 0.9rem;
    color: #707070;
}

/* === JERARQUÍA SECTION === */
.jerarquia {
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-700) 50%, var(--dark-900) 100%);
}

.jerarquia-pyramid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pyramid-tier {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pyramid-tier-1 { width: 30%; }
.pyramid-tier-2 { width: 70%; }
.pyramid-tier-3 { width: 80%; }
.pyramid-tier-4 { width: 90%; }
.pyramid-tier-5 { width: 100%; }

.rang-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    min-width: 200px;
    max-width: 280px;
    transition: all 0.3s;
    position: relative;
}

.rang-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

.rang-patron {
    border-color: var(--gold-500);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(15, 15, 15, 0.9));
    box-shadow: var(--glow-gold);
}

.rang-vacant {
    opacity: 0.6;
    border-style: dashed;
}

.vacant-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    background: rgba(128, 128, 128, 0.2);
    border-radius: 10px;
    color: #909090;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rang-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
}

.rang-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.rang-card h3 {
    font-size: 1.2rem;
    color: var(--gold-500);
    margin-bottom: 0.25rem;
}

.rang-holder {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #C0C0C0;
    margin-bottom: 0.5rem;
}

.rang-desc {
    font-size: 0.85rem;
    color: #707070;
}

/* Mini Rang Cards */
.rang-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 180px;
    transition: all 0.3s;
}

.rang-mini:hover {
    border-color: var(--gold-600);
    transform: translateY(-3px);
}

.rang-novato {
    border-color: var(--gold-600);
    background: rgba(212, 175, 55, 0.05);
}

.rang-mini-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.3);
}

.rang-mini-icon {
    font-size: 1.5rem;
}

.rang-mini-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold-400);
    flex: 1;
}

.rang-count {
    font-family: var(--font-display);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    color: var(--gold-400);
}

/* Functional Roles */
.functional-roles {
    margin-top: 4rem;
    text-align: center;
}

.functional-roles h3 {
    font-size: 1.5rem;
    color: var(--gold-500);
    margin-bottom: 2rem;
}

.func-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.func-role {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50px;
    transition: all 0.3s;
}

.func-role:hover {
    border-color: var(--gold-500);
    background: rgba(212, 175, 55, 0.1);
}

.func-icon {
    font-size: 1.25rem;
}

.func-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold-400);
    letter-spacing: 0.1em;
}

/* === CASA SECTION === */
.casa {
    background: var(--dark-900);
}

.casa-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.casa-intro {
    font-size: 1.4rem;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.9;
}

.casa-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.casa-feature {
    padding: 2rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    transition: all 0.3s;
}

.casa-feature:hover {
    border-color: var(--gold-600);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.casa-feature h4 {
    font-size: 1.3rem;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}

.casa-feature p {
    color: #808080;
    font-size: 1rem;
}

.casa-quote {
    margin-top: 4rem;
    text-align: center;
}

.casa-quote blockquote {
    font-size: 1.4rem;
    color: var(--gold-300);
    font-style: italic;
    line-height: 1.8;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 16px;
    border-left: 3px solid var(--gold-500);
}

/* === VESTIMENTA SECTION === */
.vestimenta {
    background: linear-gradient(180deg, var(--dark-700) 0%, var(--dark-900) 100%);
}

.vestimenta-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.vestimenta-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vestimenta-intro strong {
    color: var(--gold-400);
}

.vestimenta-note {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.vestimenta-note .note-icon {
    font-size: 1.2rem;
}

.outfit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.outfit-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.outfit-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-8px);
    box-shadow: var(--glow-gold);
}

.outfit-featured {
    border-color: var(--gold-600);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.outfit-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

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

.outfit-info {
    padding: 1.25rem;
    text-align: center;
}

.outfit-style {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.outfit-elegant {
    background: rgba(100, 149, 237, 0.15);
    color: #6495ED;
}

.outfit-luxury {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.2));
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.outfit-standard {
    background: rgba(192, 192, 192, 0.15);
    color: #C0C0C0;
}

.outfit-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-400);
    margin-bottom: 0.5rem;
}

.outfit-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.vestimenta-rules {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vestimenta-rules h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-500);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.rule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    transition: all 0.3s;
}

.rule-item:hover {
    border-color: var(--gold-600);
    background: rgba(212, 175, 55, 0.05);
}

.rule-icon {
    font-size: 1.8rem;
}

.rule-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gold-400);
    letter-spacing: 0.05em;
    text-align: center;
}

/* === FAMILIA SECTION === */
.familia {
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-700) 100%);
}

.familia-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-500);
    text-shadow: var(--glow-gold);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #909090;
    margin: 0.75rem 0;
}

.stat-desc {
    font-size: 0.9rem;
    color: #606060;
    font-style: italic;
}

.familia-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.message-lead {
    font-size: 1.5rem;
    color: var(--gold-300);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.message-highlight {
    font-size: 1.3rem;
    color: var(--gold-500);
}

/* === ACENTO SECTION === */
.acento {
    background: var(--dark-900);
    padding: 4rem 2rem;
}

.acento .container {
    max-width: 1000px;
    margin: 0 auto;
}

.acento-title {
    font-size: 2rem;
    color: var(--gold-500);
    text-align: center;
    margin-bottom: 3rem;
}

.acento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.acento-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.acento-item:hover {
    border-color: var(--gold-500);
    transform: translateY(-3px);
}

.acento-item .de {
    font-size: 0.9rem;
    color: #808080;
    margin-bottom: 0.5rem;
}

.acento-item .es {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-400);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(to bottom, var(--dark-800), var(--dark-900));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 2rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.footer-brand {
    text-align: left;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-500);
    letter-spacing: 0.1em;
    display: block;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #707070;
    letter-spacing: 0.2em;
}

.footer-quote {
    font-size: 1.2rem;
    color: var(--gold-400);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.footer-info {
    margin-bottom: 2rem;
}

.copyright {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold-600);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #505050;
}

.footer-credit {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.9rem;
    color: #505050;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes goldPulse {
    0%, 100% {
        text-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
    }
    50% {
        text-shadow: 0 0 100px rgba(212, 175, 55, 0.7);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: var(--glow-gold);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        box-shadow: var(--glow-gold-strong);
    }
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === FUENTE BLANCA FEATURES === */
.fuente-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.fuente-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(45, 80, 22, 0.15);
    border: 1px solid rgba(45, 80, 22, 0.3);
    border-radius: 25px;
}

.fuente-icon {
    font-size: 1.25rem;
}

.fuente-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--success-light);
    letter-spacing: 0.05em;
}

/* === CASA HISTORY === */
.casa-history {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), transparent);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 16px;
    text-align: center;
}

.history-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blood-light);
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 1rem;
}

.casa-history p {
    color: #909090;
    line-height: 1.9;
    font-size: 1.1rem;
}

/* === TRAITOR STYLING === */
.rang-traitor {
    opacity: 0.5;
    border-color: rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(15, 15, 15, 0.9));
    position: relative;
}

.rang-traitor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--blood);
    transform: rotate(-5deg);
}

.rang-traitor:hover {
    opacity: 0.7;
    border-color: var(--blood);
}

.traitor-name {
    text-decoration: line-through;
    color: var(--blood-light) !important;
}

.traitor-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    padding: 0.25rem 0.75rem;
    background: rgba(139, 0, 0, 0.3);
    border: 1px solid var(--blood);
    border-radius: 10px;
    color: var(--blood-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

/* === CASA GALLERY === */
.casa-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--gold-500);
    box-shadow: var(--glow-gold-strong);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay h4 {
    font-size: 1.1rem;
    color: var(--gold-500);
    margin-bottom: 0.25rem;
}

.gallery-hint {
    font-size: 0.75rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.casa-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.casa-features-grid .casa-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
}

/* === NEGOCIO GALLERY BUTTON === */
.negocio-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
    border: none;
    border-radius: 25px;
    color: var(--dark-900);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.negocio-gallery-btn:not(:disabled):hover {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.negocio-gallery-btn:disabled {
    background: rgba(128, 128, 128, 0.2);
    color: #606060;
    cursor: not-allowed;
}

.negocio-gallery-btn .btn-icon {
    font-size: 1rem;
}

.negocio-secret {
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 25px;
    color: #8B0000;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
}

/* === IMAGE MODAL === */
.image-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--dark-600);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.image-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold-500);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--gold-500);
    color: var(--dark-900);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-title {
    font-size: 1.5rem;
    color: var(--gold-500);
    margin: 0;
}

.modal-body {
    padding: 0;
    max-height: 70vh;
    overflow: hidden;
}

.modal-gallery {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.modal-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--dark-900);
}

.modal-slide img {
    min-width: 100%;
    max-height: 55vh;
    object-fit: contain;
    background: var(--dark-900);
}

.modal-slide-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-slide-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.modal-slide-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    max-width: 600px;
}

/* Fallback für alte Struktur */
.modal-gallery > img {
    min-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: var(--dark-900);
}

.modal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.modal-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-nav-btn:hover {
    background: var(--gold-500);
    color: var(--dark-900);
}

.modal-counter {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #808080;
    letter-spacing: 0.1em;
}

/* === AUDIO CONTROL === */
.audio-control {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.audio-control:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.audio-control:hover .audio-volume {
    width: 80px;
    opacity: 1;
    padding-right: 0.5rem;
}

.audio-btn {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold-500);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.audio-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
}

.audio-btn.playing {
    animation: audioPulse 2s ease-in-out infinite;
}

@keyframes audioPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

.audio-icon {
    line-height: 1;
}

.audio-volume {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.volume-slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--gold-500);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--gold-500);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .negocios-grid {
        grid-template-columns: 1fr;
    }
    
    .negocio-card-wide {
        grid-column: span 1;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .familia-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pyramid-tier-1,
    .pyramid-tier-2,
    .pyramid-tier-3,
    .pyramid-tier-4,
    .pyramid-tier-5 {
        width: 100%;
    }
    
    .casa-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .casa-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .outfit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-menu-btn {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item-right {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .casa-features {
        grid-template-columns: 1fr;
    }
    
    .casa-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casa-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .outfit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .outfit-info h4 {
        font-size: 1rem;
    }
    
    .outfit-info p {
        font-size: 0.8rem;
    }
    
    .rules-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .familia-stats {
        grid-template-columns: 1fr;
    }
    
    .acento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rang-card {
        min-width: 150px;
    }
    
    .modal-content {
        max-width: 95vw;
        border-radius: 12px;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }
    
    .title-line {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stat .stat-value {
        font-size: 3rem;
    }
    
    .betrayal-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rebirth-leadership {
        flex-direction: column;
    }
    
    .acento-grid {
        grid-template-columns: 1fr;
    }
}
