/* Revolutionary CSS - The Most Spectacular Website Experience */

/* Reset y variables avanzadas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Colores Principal - Deco Mave */
    --primary-navy: #002A5E;          /* Azul Marino CIPCO */
    --primary-deep: #001F4A;          /* Azul más oscuro */
    --secondary-gold: #D4AF37;        /* Dorado elegante */
    --secondary-light: #E8C55A;       /* Dorado claro */
    
    /* Colores de Acento - Usar con moderación */
    --accent-emerald: #7CB342;        /* Verde esmeralda */
    --accent-purple: #7E57C2;         /* Violeta */
    --accent-aqua: #00BCD4;           /* Aqua claro */
    --accent-orange: #F57C00;         /* Naranja */
    --accent-fuchsia: #EC407A;        /* Fucsia */
    
    /* Colores Neutros */
    --text-primary: #000000;          /* Negro para texto principal */
    --text-secondary: #333333;        /* Gris oscuro para texto secundario */
    --text-white: #FFFFFF;            /* Blanco para texto sobre fondos oscuros */
    --bg-primary: #FFFFFF;            /* Fondo blanco */
    --bg-secondary: #F8F9FA;         /* Fondo gris muy claro */
    --bg-light: #C7C7C7;             /* Gris claro para bordes */
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-purple) 50%, var(--secondary-gold) 100%);
    
    /* Efectos */
    --shadow-soft: 0 4px 20px rgba(0, 42, 94, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 42, 94, 0.15);
    --shadow-premium: 0 12px 40px rgba(0, 42, 94, 0.2);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.3);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-ultra: blur(20px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    
    /* Transiciones */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Espaciado */
    --section-padding: 120px 0;
    --container-padding: 0 2rem;
    --card-padding: 2.5rem;
    
    /* Tipografía */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'DM Serif Display', serif;
    --font-accent: 'Inter', sans-serif;
}

/* Base styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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



/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 42, 94, 0.1);
    z-index: 1001;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-luxury);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: var(--shadow-glow);
}

/* Revolutionary Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-white);
}

.loading-logo {
    position: relative;
    margin-bottom: 2rem;
}

.loading-circle {
    animation: loading-spin 2s linear infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-tagline {
    font-size: 1.1rem;
    color: var(--secondary-crystal);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.loading-progress {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 1px;
    animation: loading-progress 3s ease-in-out;
}

.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 4s infinite ease-in-out;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 1s; }
.particle:nth-child(3) { left: 60%; animation-delay: 2s; }
.particle:nth-child(4) { left: 80%; animation-delay: 3s; }
.particle:nth-child(5) { left: 90%; animation-delay: 0.5s; }

/* Enhanced Typography */
h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--primary-navy);
    position: relative;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-secondary);
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-tertiary);
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-tertiary);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
}

/* Revolutionary Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-elegant);
    font-family: var(--font-primary);
    min-height: 56px;
    box-shadow: var(--shadow-soft);
}

.btn span {
    position: relative;
    z-index: 2;
    color: inherit;
    transition: var(--transition-smooth);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50px;
    transition: var(--transition-elegant);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 50px;
    opacity: 0;
    transition: var(--transition-elegant);
    z-index: 0;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: 2px solid transparent;
}

.btn-primary .btn-bg {
    background: var(--gradient-primary);
}

.btn-primary span {
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
    border: 2px solid var(--secondary-gold);
}

.btn-primary:hover .btn-bg {
    background: var(--gradient-gold);
}

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

.btn-secondary .btn-bg {
    background: transparent;
}

.btn-secondary span {
    color: var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.btn-secondary:hover .btn-bg {
    background: var(--primary-navy);
}

.btn-secondary:hover span {
    color: var(--text-white);
}

/* Magnetic Effect */
.magnetic {
    transition: var(--transition-magnetic);
}

/* Premium Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 42, 94, 0.1);
    transition: var(--transition-elegant);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover {
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: -1;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.nav-toggle:hover {
    background: var(--bg-glass);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-navy);
    margin: 3px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Revolutionary Hero Section - Professional Corporate Design */
.hero {
    margin-top: 80px;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 25%, #E9ECEF 50%, #F8F9FA 75%, #FFFFFF 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 42, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.9) 100%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle-float {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: hero-particle-float 8s infinite ease-in-out;
}

.particle-float:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle-float:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; }
.particle-float:nth-child(3) { left: 80%; top: 30%; animation-delay: 4s; }
.particle-float:nth-child(4) { left: 70%; top: 70%; animation-delay: 1s; }
.particle-float:nth-child(5) { left: 90%; top: 50%; animation-delay: 3s; }
.particle-float:nth-child(6) { left: 5%; top: 80%; animation-delay: 5s; }

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: shape-morph 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    left: 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-aurora);
    top: 60%;
    right: 20%;
    animation-delay: 10s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: hero-fade-in-up 1.2s ease-out;
}

    .hero-badge {
        display: inline-block;
        padding: 12px 24px;
        background: linear-gradient(135deg, rgba(0, 42, 94, 0.95) 0%, rgba(0, 31, 74, 0.95) 100%);
        border: 1px solid rgba(0, 42, 94, 0.2);
        border-radius: 50px;
        margin-bottom: 2rem;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 42, 94, 0.15);
        animation: hero-badge-glow 3s infinite ease-in-out;
    }
    
    .badge-text {
        font-size: 0.9rem;
        font-weight: 600;
        color: #FFFFFF;
        letter-spacing: 1.2px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-navy);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 42, 94, 0.1);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: title-line-reveal 0.8s ease-out forwards;
    margin-bottom: 0.5rem;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.title-line:nth-child(4) { animation-delay: 0.8s; }

.title-line.accent {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    opacity: 0;
    animation: hero-fade-in-up 0.8s ease-out 1s forwards;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.subtitle-highlight {
    color: var(--primary-navy);
    font-weight: 600;
    position: relative;
}

.subtitle-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    animation: subtitle-underline 0.6s ease-out 1.5s forwards;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin: 4rem 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-glass);
    border-radius: 20px;
    border: var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    transition: var(--transition-cinematic);
    box-shadow: var(--shadow-soft);
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 20px;
    opacity: 0;
    transition: var(--transition-cinematic);
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: #ffffff;
    border: 2px solid #000000;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 0, 0, 0.3), var(--shadow-premium);
    animation: none;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition-cinematic);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.stat-label {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-cinematic);
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition-cinematic);
}

.stat-item:hover .stat-label {
    color: #000000;
}

.stat-item:hover .stat-label::after {
    width: 100%;
    background: #000000;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: hero-fade-in-up 0.8s ease-out 1.2s forwards;
    position: relative;
    z-index: 2;
}

.hero-image {
    text-align: center;
    position: relative;
    animation: hero-fade-in-up 1.2s ease-out 0.3s both;
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    animation: hero-fade-in-up 1.5s ease-out;
}

.logo-backdrop {
    position: relative;
    padding: 4rem;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.9) 30%, 
        rgba(0, 42, 94, 0.05) 70%, 
        rgba(212, 175, 55, 0.03) 100%);
    backdrop-filter: blur(30px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 42, 94, 0.25),
        0 0 120px rgba(212, 175, 55, 0.15),
        inset 0 0 80px rgba(255, 255, 255, 0.1);
    transition: var(--transition-elegant);
    animation: logo-glow-pulse 5s infinite ease-in-out;
}

.hero-logo {
    width: 100%;
    height: auto;
    max-width: 420px;
    filter: drop-shadow(0 12px 35px rgba(0, 42, 94, 0.3));
    transition: var(--transition-elegant);
    animation: logo-float 8s infinite ease-in-out;
}

.hero-image:hover .logo-backdrop {
    transform: scale(1.08);
    box-shadow: 
        0 40px 80px rgba(0, 42, 94, 0.35),
        0 0 180px rgba(212, 175, 55, 0.25),
        inset 0 0 120px rgba(255, 255, 255, 0.2);
}

.hero-image:hover .hero-logo {
    transform: scale(1.05) rotate(1deg);
    filter: drop-shadow(0 18px 45px rgba(0, 42, 94, 0.4));
}

.hero-image-overlay {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-glass);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.7;
    animation: hero-image-glow 4s infinite ease-in-out;
}

.hero-image-glow {
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: var(--gradient-cosmic);
    border-radius: 50px;
    z-index: -2;
    opacity: 0.3;
    animation: hero-glow-pulse 6s infinite ease-in-out;
}

/* Elementos decorativos de gotas de pintura */
.paint-drops {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 1;
}

.paint-drop {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: paint-drop-fall 8s infinite ease-in-out;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.paint-drop[data-color="primary"] {
    background: linear-gradient(135deg, #002A5E 0%, #003a7d 100%);
    width: 12px;
    height: 12px;
}

.paint-drop[data-color="gold"] {
    background: linear-gradient(135deg, #D4AF37 0%, #f7d958 100%);
    width: 8px;
    height: 8px;
}

.paint-drop[data-color="emerald"] {
    background: linear-gradient(135deg, #10B981 0%, #22d3ee 100%);
    width: 10px;
    height: 10px;
}

.paint-drop[data-color="purple"] {
    background: linear-gradient(135deg, #7E57C2 0%, #9c27b0 100%);
    width: 6px;
    height: 6px;
}

.paint-drop[data-color="cyan"] {
    background: linear-gradient(135deg, #00BCD4 0%, #00e5ff 100%);
    width: 14px;
    height: 14px;
}

.paint-drop[data-color="orange"] {
    background: linear-gradient(135deg, #F57C00 0%, #ff9800 100%);
    width: 9px;
    height: 9px;
}

.paint-drop[data-color="pink"] {
    background: linear-gradient(135deg, #EC407A 0%, #f06292 100%);
    width: 7px;
    height: 7px;
}

.paint-drop[data-color="lime"] {
    background: linear-gradient(135deg, #7CB342 0%, #8bc34a 100%);
    width: 11px;
    height: 11px;
}

/* Posicionamiento de las gotas */
.drop-1 { top: 10%; left: 15%; animation-delay: 0s; }
.drop-2 { top: 25%; right: 20%; animation-delay: 1.5s; }
.drop-3 { top: 40%; left: 8%; animation-delay: 3s; }
.drop-4 { top: 55%; right: 12%; animation-delay: 4.5s; }
.drop-5 { top: 70%; left: 18%; animation-delay: 6s; }
.drop-6 { top: 80%; right: 25%; animation-delay: 2s; }
.drop-7 { top: 15%; left: 85%; animation-delay: 7s; }
.drop-8 { top: 60%; right: 85%; animation-delay: 0.5s; }

/* Elementos artísticos */
.artistic-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.brush-stroke {
    position: absolute;
    opacity: 0.1;
    animation: brush-stroke-fade 12s infinite ease-in-out;
    border-radius: 50px;
}

.stroke-1 {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #002A5E 50%, transparent 100%);
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.stroke-2 {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
    top: 70%;
    right: 15%;
    transform: rotate(25deg);
    animation-delay: 4s;
}

.stroke-3 {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #10B981 50%, transparent 100%);
    top: 45%;
    left: 80%;
    transform: rotate(-30deg);
    animation-delay: 8s;
}

.ink-splash {
    position: absolute;
    opacity: 0.08;
    animation: ink-splash-pulse 10s infinite ease-in-out;
    border-radius: 50%;
}

.splash-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #7E57C2 0%, transparent 70%);
    top: 30%;
    left: 5%;
    animation-delay: 2s;
}

.splash-2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 70% 70%, #EC407A 0%, transparent 70%);
    bottom: 25%;
    right: 10%;
    animation-delay: 6s;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.6;
    animation: floating-drift 12s infinite ease-in-out;
}

.floating-element img {
    width: 80px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    filter: blur(1px);
}

.floating-element:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    bottom: 20%;
    left: -15%;
    animation-delay: 4s;
}

.floating-element:nth-child(3) {
    top: 60%;
    right: -20%;
    animation-delay: 8s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: hero-fade-in-up 1.2s ease-out 1.1s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-bounce 2s infinite ease-in-out;
}

/* Section Headers Premium */
.section-header-premium {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-glass);
    border: var(--glass-border);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: var(--glass-backdrop);
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.section-title {
    margin-bottom: 2rem;
    position: relative;
    font-weight: 400;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-tertiary);
}

/* Process Timeline Section */
.process-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 80% 50%, rgba(0, 42, 94, 0.03) 0%, transparent 70%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.9) 100%);
    pointer-events: none;
}

/* Spectacular Timeline Design */
.process-timeline-spectacular {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

/* Timeline Background Elements */
.timeline-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.timeline-glow-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        rgba(212, 175, 55, 0.6) 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%);
    transform: translateX(-50%);
    filter: blur(1px);
    animation: timeline-glow 3s ease-in-out infinite;
}

.timeline-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.timeline-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: timeline-particle-float 6s infinite ease-in-out;
}

.timeline-particle:nth-child(1) { left: 48%; top: 10%; animation-delay: 0s; }
.timeline-particle:nth-child(2) { left: 52%; top: 30%; animation-delay: 2s; }
.timeline-particle:nth-child(3) { left: 48%; top: 50%; animation-delay: 4s; }
.timeline-particle:nth-child(4) { left: 52%; top: 70%; animation-delay: 1s; }
.timeline-particle:nth-child(5) { left: 48%; top: 90%; animation-delay: 3s; }

/* Main Timeline Line */
.timeline-main-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 42, 94, 0.1) 0%, 
        rgba(0, 42, 94, 0.3) 25%, 
        rgba(0, 42, 94, 0.5) 50%, 
        rgba(0, 42, 94, 0.3) 75%, 
        rgba(0, 42, 94, 0.1) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 2;
}

.timeline-progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, 
        var(--secondary-gold) 0%, 
        var(--secondary-light) 100%);
    border-radius: 3px;
    transition: height 2s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    z-index: 3;
}

.timeline-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, 
        var(--primary-navy) 0%, 
        var(--secondary-gold) 100%);
    border-radius: 3px;
    transition: height 2s ease;
    z-index: 4;
}

/* Timeline Items */
.timeline-item-spectacular {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.timeline-item-spectacular.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure text is always visible */
.timeline-content-spectacular * {
    color: inherit;
}

.timeline-content-spectacular h3,
.timeline-content-spectacular p,
.timeline-content-spectacular span {
    color: #333333 !important;
}

.timeline-item-spectacular:nth-child(even) {
    flex-direction: row-reverse;
}

/* Timeline Markers */
.timeline-marker-spectacular {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.marker-outer-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: marker-rotate 8s linear infinite;
}

.marker-inner-core {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, 
        var(--primary-navy) 0%, 
        var(--primary-deep) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(0, 42, 94, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item-spectacular:hover .marker-inner-core {
    transform: scale(1.1);
    box-shadow: 
        0 12px 40px rgba(0, 42, 94, 0.4),
        0 0 0 6px rgba(212, 175, 55, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.marker-icon {
    color: var(--text-white);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item-spectacular:hover .marker-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: marker-pulse 2s ease-in-out infinite;
    opacity: 0;
}

.marker-step-number {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 42, 94, 0.3);
    z-index: 11;
}

/* Timeline Content */
.timeline-content-spectacular {
    flex: 1;
    max-width: 400px;
    padding: 2.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 0.98) 100%);
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 42, 94, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 42, 94, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    margin: 0 6rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.timeline-content-spectacular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 42, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-item-spectacular:hover .timeline-content-spectacular {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 42, 94, 0.15),
        0 12px 35px rgba(0, 0, 0, 0.08);
}

.timeline-item-spectacular:hover .timeline-content-spectacular::before {
    opacity: 1;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.content-header h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 42, 94, 0.1);
    letter-spacing: -0.5px;
}

.content-badge {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-light) 100%);
    color: var(--primary-navy);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.timeline-content-spectacular p {
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Timeline Features */
.timeline-features-spectacular {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 250, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 42, 94, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 42, 94, 0.05);
}

.feature-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-light) 100%);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item span {
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Progress Bar */
.content-progress {
    margin-top: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 42, 94, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--secondary-gold) 0%, 
        var(--secondary-light) 100%);
    border-radius: 4px;
    transition: width 1.5s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.progress-text {
    color: #333333;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    display: block;
}

/* Professional Corporate Services Section */
.services-premium {
    padding: 140px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 50%, #E9ECEF 100%);
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.services-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 42, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    opacity: 0.6;
}

.services-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(100px);
    animation: services-glow-pulse 8s ease-in-out infinite;
}

/* Corporate Header */
.section-header-corporate {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.corporate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
    color: var(--text-white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 42, 94, 0.2);
}

.badge-icon {
    font-size: 1rem;
    color: var(--secondary-gold);
}

.corporate-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 42, 94, 0.1);
}

.corporate-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.corporate-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-gold) 50%, transparent 100%);
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Premium Services Grid */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Premium Service Cards */
.service-card-premium {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 42, 94, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 42, 94, 0.08),
        0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 42, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 42, 94, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

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

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 42, 94, 0.1);
    position: relative;
}

.service-icon-premium {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card-premium:hover .icon-background {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-light) 100%);
    transform: scale(1.1);
}

.service-icon-premium svg {
    color: var(--text-white);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-premium svg {
    transform: scale(1.1);
}

.service-number {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-light) 100%);
    color: var(--primary-navy);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Card Content */
.card-content {
    padding: 1.5rem 2rem;
}

.card-content h3 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Premium Features */
.service-features-premium {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item-premium {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-light) 100%);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item-premium span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Card Footer */
.card-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(0, 42, 94, 0.1);
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.8) 0%, 
        rgba(255, 255, 255, 0.8) 100%);
}

.service-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card {
    background: var(--gradient-card);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-cinematic);
    border: var(--glass-border);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-elegant);
    z-index: 1;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(5deg);
    box-shadow: var(--shadow-cinematic);
}

.service-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 2;
    transition: var(--transition-magnetic);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: var(--shadow-neon);
}

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

.service-icon svg {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover h3 {
    transform: translateY(-2px);
}

.service-card p {
    color: var(--text-tertiary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-features .feature {
    background: var(--bg-glass);
    color: var(--text-tertiary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.service-card:hover .service-features .feature {
    transform: translateY(-2px);
    background: var(--primary-navy);
    color: var(--text-white);
}

/* Premium Catalog Section */
.catalog {
    padding: 120px 0;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.catalog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(0, 42, 94, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Premium Category Navigation */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Single Category Navigation */
.category-nav-single {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.category-btn-single {
    padding: 18px 36px;
    border: 2px solid var(--primary-navy);
    background: var(--bg-glass);
    color: var(--primary-navy);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-cinematic);
    backdrop-filter: var(--glass-ultra);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-btn-single span {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.category-btn-single .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-elegant);
    z-index: 1;
    border-radius: 50px;
}

.category-btn-single:hover .btn-bg,
.category-btn-single.active .btn-bg {
    left: 0;
}

.category-btn-single:hover,
.category-btn-single.active {
    color: var(--text-white);
    border-color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.category-btn-single:hover span,
.category-btn-single.active span {
    color: var(--text-white);
}

.category-btn {
    padding: 16px 32px;
    border: 2px solid var(--primary-navy);
    background: var(--bg-glass);
    color: var(--primary-navy);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-cinematic);
    backdrop-filter: var(--glass-backdrop);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.category-btn span {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.category-btn .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-elegant);
    z-index: 1;
    border-radius: 50px;
}

.category-btn:hover .btn-bg,
.category-btn.active .btn-bg {
    left: 0;
}

.category-btn:hover,
.category-btn.active {
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.category-btn:hover span,
.category-btn.active span {
    color: var(--text-white);
}

/* Premium Catalog Sections */
.catalog-section {
    margin-bottom: 8rem;
    display: none;
    position: relative;
    z-index: 1;
}

.catalog-section.active {
    display: block;
    animation: catalog-section-reveal 1s ease-out;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding: 3.5rem;
    background: var(--gradient-glass);
    border-radius: 25px;
    border: var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    transition: var(--transition-elegant);
}

.section-header:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.section-header::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: var(--transition-smooth);
}

.section-header:hover::before {
    left: 100%;
}

.section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 25px;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-magnetic);
}

.section-header:hover .section-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: var(--shadow-neon);
}

.section-info h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    transition: var(--transition-smooth);
}

.section-info p {
    color: var(--text-tertiary);
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Revolutionary Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 3rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-magnetic);
    z-index: 10;
    box-shadow: var(--shadow-strong);
    backdrop-filter: var(--glass-backdrop);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.2);
    box-shadow: var(--shadow-neon);
    filter: brightness(1.2);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

/* Revolutionary Product Cards */
.product-card.premium {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-elegant);
    position: relative;
    border: 1px solid rgba(0, 42, 94, 0.1);
}

.product-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-elegant);
    z-index: 1;
}

.product-card.premium:hover::before {
    opacity: 0.05;
}

.product-card.premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--secondary-gold);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 250px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 42, 94, 0.8) 0%, rgba(212, 175, 55, 0.6) 100%);
    opacity: 0;
    transition: var(--transition-elegant);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card.premium:hover .product-overlay {
    opacity: 1;
}

.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 42, 94, 0.1);
    opacity: 0;
    transition: var(--transition-elegant);
    z-index: 2;
}

.product-card.premium:hover .product-hover-overlay {
    opacity: 1;
}

.product-btn {
    background: var(--gradient-gold);
    color: var(--text-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
}

.product-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-premium);
}

.product-info {
    padding: 1.5rem;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.product-info h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.product-card.premium:hover .product-info h4 {
    color: var(--primary-navy);
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.spec {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.product-card.premium:hover .spec {
    background: var(--gradient-gold);
    color: var(--text-white);
    transform: scale(1.05);
}



/* Technology Section - Professional Corporate Design */
.technology-section-premium {
    padding: 140px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 50%, #E9ECEF 100%);
    position: relative;
    overflow: hidden;
}

.technology-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.technology-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(0, 42, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    opacity: 0.6;
}

.technology-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(100px);
    animation: technology-glow-pulse 8s ease-in-out infinite;
}

/* Premium Technology Grid */
.technology-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Premium Technology Cards */
.tech-card-premium {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 42, 94, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 42, 94, 0.08),
        0 4px 15px rgba(0, 0, 0, 0.05);
}

.tech-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 42, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 42, 94, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.tech-card-premium:hover::before {
    opacity: 1;
}

/* Tech Card Header */
.tech-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 42, 94, 0.08);
    position: relative;
}

.tech-icon-premium {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #002A5E;
}

.icon-background-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(0, 42, 94, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-card-premium:hover .icon-background-tech {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(0, 42, 94, 0.1) 100%);
    transform: scale(1.1);
}

.tech-icon-premium svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.tech-card-premium:hover .tech-icon-premium svg {
    transform: scale(1.1);
    color: #D4AF37;
}

.tech-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002A5E;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tech-card-premium:hover .tech-number {
    opacity: 1;
    color: #D4AF37;
}

/* Tech Card Content */
.tech-card-content {
    padding: 1.5rem 2rem 2rem;
    text-align: left;
}

.tech-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002A5E;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.tech-card-premium:hover .tech-card-content h3 {
    color: #D4AF37;
}

.tech-card-content p {
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Tech Features Premium */
.tech-features-premium {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature-check-tech {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.tech-feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    line-height: 1.4;
}

/* Tech Card Footer */
.tech-card-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(0, 42, 94, 0.08);
    background: rgba(248, 249, 250, 0.5);
}

.tech-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.tech-stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #002A5E;
    line-height: 1;
    transition: all 0.3s ease;
}

.tech-card-premium:hover .tech-stat-number {
    color: #D4AF37;
    transform: scale(1.05);
}

.tech-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6C757D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.tech-card-premium:hover .tech-stat-label {
    color: #495057;
}

/* Corporate Header for Technology Section */
.section-header-corporate {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.corporate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #002A5E, #1E3A8A);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 42, 94, 0.2);
    transition: all 0.3s ease;
}

.corporate-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 42, 94, 0.3);
}

.badge-icon {
    font-size: 1rem;
    animation: corporate-badge-glow 2s ease-in-out infinite;
}

.corporate-title {
    font-size: 3rem;
    font-weight: 800;
    color: #002A5E;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #002A5E 0%, #1E3A8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corporate-description {
    font-size: 1.1rem;
    color: #6C757D;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.corporate-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Animations for Technology Section */
@keyframes technology-glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes corporate-badge-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Responsive Design for Technology Section */
@media (max-width: 1024px) {
    .technology-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .corporate-title {
        font-size: 2.5rem;
    }
    
    .tech-card-premium {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .technology-section-premium {
        padding: 100px 0;
    }
    
    .technology-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .corporate-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .corporate-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .corporate-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .tech-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .tech-card-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .tech-card-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .tech-icon-premium {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon-premium svg {
        width: 30px;
        height: 30px;
    }
    
    .tech-number {
        font-size: 1.25rem;
    }
    
    .tech-card-content h3 {
        font-size: 1.25rem;
    }
    
    .tech-features-premium {
        gap: 0.5rem;
    }
    
    .tech-feature-item {
        gap: 0.5rem;
    }
    
    .feature-check-tech {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
    
    .tech-feature-item span {
        font-size: 0.85rem;
    }
    
    .tech-stats {
        gap: 1rem;
    }
    
    .tech-stat-number {
        font-size: 1.1rem;
    }
    
    .tech-stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .technology-section-premium {
        padding: 80px 0;
    }
    
    .corporate-title {
        font-size: 1.75rem;
    }
    
    .corporate-description {
        font-size: 0.95rem;
    }
    
    .tech-card-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .tech-card-content {
        padding: 0.75rem 1rem 1rem;
    }
    
    .tech-card-footer {
        padding: 0.75rem 1rem 1rem;
    }
    
    .tech-icon-premium {
        width: 45px;
        height: 45px;
    }
    
    .tech-icon-premium svg {
        width: 25px;
        height: 25px;
    }
    
    .tech-number {
        font-size: 1.1rem;
    }
    
    .tech-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .tech-card-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .tech-features-premium {
        margin-bottom: 1rem;
    }
    
    .tech-feature-item {
        padding: 0.25rem 0;
    }
    
    .feature-check-tech {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
    
    .tech-feature-item span {
        font-size: 0.8rem;
    }
    
    .tech-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tech-stat {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .tech-stat-number {
        font-size: 1rem;
    }
    
    .tech-stat-label {
        font-size: 0.65rem;
    }
}

/* Legacy styles cleanup - these are now replaced by premium versions */

/* Revolutionary Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-aurora);
    opacity: 0.1;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-glass);
    border-radius: 25px;
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    transition: var(--transition-cinematic);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-elegant);
}

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

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-magnetic);
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--secondary-crystal);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Premium Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-cosmic);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: var(--gradient-card);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    border: var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-elegant);
}

.contact-form:hover::before {
    opacity: 0.5;
}

.contact-form h3 {
    color: var(--primary-navy);
    margin-bottom: 3rem;
    font-size: 2.2rem;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition-elegant);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 4px rgba(0, 42, 94, 0.1);
    transform: translateY(-2px);
}

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

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

.contact-info h3 {
    color: var(--primary-navy);
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: var(--glass-border);
    transition: var(--transition-elegant);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--text-white);
    flex-shrink: 0;
    transition: var(--transition-magnetic);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.contact-method h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-method p {
    color: var(--text-tertiary);
    margin: 0;
    font-size: 1.1rem;
}

.whatsapp-link {
    color: var(--accent-emerald);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.whatsapp-link:hover {
    color: var(--secondary-gold);
    text-decoration: underline;
}

/* Premium Footer */
.footer {
    background: var(--primary-navy);
    color: var(--text-white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-aurora);
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.footer-brand img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.footer-brand p {
    color: var(--secondary-crystal);
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--secondary-crystal);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    transform: translateX(5px);
    opacity: 1;
}

.footer-contact p {
    color: var(--secondary-crystal);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-crystal);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Revolutionary Animations */
@keyframes loading-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loading-progress {
    0% { width: 0%; }
    50% { width: 80%; }
    100% { width: 100%; }
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 1; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.8; }
    75% { transform: translateY(-20px) rotate(270deg); opacity: 1; }
}

@keyframes hero-particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(20px, -20px) scale(1.2); opacity: 0.6; }
    50% { transform: translate(-20px, -40px) scale(0.8); opacity: 0.9; }
    75% { transform: translate(-40px, -20px) scale(1.1); opacity: 0.4; }
}

@keyframes shape-morph {
    0%, 100% { transform: scale(1) rotate(0deg); border-radius: 50%; }
    25% { transform: scale(1.2) rotate(90deg); border-radius: 30%; }
    50% { transform: scale(0.8) rotate(180deg); border-radius: 60%; }
    75% { transform: scale(1.1) rotate(270deg); border-radius: 40%; }
}

@keyframes hero-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); }
}

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

@keyframes hero-image-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes hero-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes floating-drift {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

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

@keyframes catalog-section-reveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stat-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 42, 94, 0.1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 42, 94, 0.2);
    }
}

@keyframes stat-number-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes stat-item-entrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logo-glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
}

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

@keyframes paint-drop-fall {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
}

@keyframes brush-stroke-fade {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(1.2) rotate(5deg);
    }
}

@keyframes ink-splash-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Estilos para el carrusel principal */
.catalog-carousel {
    margin-bottom: 4rem;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 42, 94, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.product-card-carousel {
    min-width: 300px;
    flex: 0 0 300px;
    background: var(--bg-glass);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    transition: var(--transition-elegant);
    position: relative;
}

.product-card-carousel:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 42, 94, 0.2);
}

.product-image-carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.product-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-elegant);
}

.product-image-carousel:hover img {
    transform: scale(1.1);
}

.product-info-carousel {
    padding: 1.5rem;
}

.product-info-carousel h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.product-info-carousel p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    border: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-elegant);
    backdrop-filter: var(--glass-backdrop);
    z-index: 10;
    color: var(--primary-navy);
}

.carousel-btn:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 42, 94, 0.3);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-elegant);
    position: relative;
    overflow: hidden;
    background: #000000;
    color: #ffffff !important;
    border: none;
    cursor: pointer;
}

.btn-view-all svg {
    transition: var(--transition-smooth);
    color: #ffffff !important;
}

.btn-view-all span {
    color: #ffffff !important;
}

.btn-view-all:hover svg {
    transform: translateX(5px);
    color: #ffffff !important;
}

.btn-view-all:hover {
    background: #333333;
    color: #ffffff !important;
}

.btn-view-all:hover span {
    color: #ffffff !important;
}

/* Premium View All Button */
.btn-view-all-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
    color: var(--text-white);
    border: 2px solid var(--primary-navy);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 25px rgba(0, 42, 94, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 4rem auto 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-view-all-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-light) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-view-all-premium:hover::before {
    left: 0;
}

.btn-view-all-premium:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 42, 94, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-gold);
}

.btn-view-all-premium span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    color: var(--text-white) !important;
}

.btn-view-all-premium svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    color: var(--text-white) !important;
}

.btn-view-all-premium:hover span,
.btn-view-all-premium:hover svg {
    color: var(--primary-navy) !important;
}

.all-products-grid {
    margin-top: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    .services-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .service-card-premium {
        margin-bottom: 1rem;
    }
    
    .technology-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

/* ===== MOBILE OPTIMIZATION - COMPLETE & ORGANIZED ===== */

@media (max-width: 768px) {
    /* ===== GLOBAL MOBILE SETTINGS ===== */
    body {
        cursor: auto;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* ===== NAVIGATION MOBILE ===== */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(0, 42, 94, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(0, 42, 94, 0.1);
        transform: translateX(5px);
    }

    /* ===== HERO SECTION MOBILE ===== */
    .hero {
        padding: 100px 0 80px;
        min-height: 100vh;
    }
    
    .hero-badge {
        padding: 8px 16px;
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .stat-item {
        padding: 1.5rem 1rem;
        min-width: 120px;
        border-radius: 16px;
    }

    .stat-number {
        font-size: 2.5rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }

    .logo-backdrop {
        padding: 2rem;
        max-width: 300px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .hero-logo {
        max-width: 280px;
    }

    /* ===== DECORATIVE ELEMENTS MOBILE ===== */
    .paint-drop {
        transform: scale(0.6);
    }

    .brush-stroke {
        opacity: 0.05;
    }

    .ink-splash {
        opacity: 0.04;
    }
    
    .floating-element {
        display: none;
    }

    /* ===== SERVICES SECTION MOBILE ===== */
    .services-premium {
        padding: 80px 0;
    }
    
    .services-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card-premium {
        margin-bottom: 1rem;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .card-header {
        padding: 1.5rem 1.5rem 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .service-icon-premium {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-premium svg {
        width: 24px;
        height: 24px;
    }
    
    .service-number {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .card-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .card-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .service-features-premium {
        gap: 0.6rem;
    }
    
    .feature-item-premium {
        gap: 0.6rem;
        padding: 0.4rem 0;
    }
    
    .feature-check {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
    
    .feature-item-premium span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* ===== CORPORATE HEADERS MOBILE ===== */
    .corporate-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .corporate-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .corporate-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-icon {
        font-size: 0.9rem;
    }

    /* ===== CATALOG SECTION MOBILE ===== */
    .catalog {
        padding: 80px 0;
    }
    
    .category-nav-single {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .category-btn-single {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 25px;
        min-width: 250px;
    }

    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-track {
        gap: 1.5rem;
    }

    .product-card.premium {
        min-width: 280px;
        border-radius: 16px;
    }
    
    .product-card-carousel {
        min-width: 260px;
        border-radius: 16px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
    
    .product-image {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }
    
    .product-image-carousel {
        height: 180px;
        border-radius: 12px 12px 0 0;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .product-specs {
        gap: 0.5rem;
    }
    
    .spec {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    /* ===== TECHNOLOGY SECTION MOBILE ===== */
    .technology-section-premium {
        padding: 80px 0;
    }
    
    .technology-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .tech-card-premium {
        margin-bottom: 1rem;
        border-radius: 16px;
    }
    
    .tech-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .tech-icon-premium {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon-premium svg {
        width: 28px;
        height: 28px;
    }
    
    .tech-number {
        font-size: 1.2rem;
    }
    
    .tech-card-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .tech-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .tech-card-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .tech-features-premium {
        gap: 0.6rem;
    }
    
    .tech-feature-item {
        gap: 0.6rem;
        padding: 0.4rem 0;
    }
    
    .feature-check-tech {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
    
    .tech-feature-item span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .tech-card-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .tech-stats {
        gap: 1rem;
    }
    
    .tech-stat-number {
        font-size: 1.1rem;
    }
    
    .tech-stat-label {
        font-size: 0.7rem;
    }

    /* ===== TIMELINE SECTION MOBILE ===== */
    .process-section {
        padding: 80px 0;
    }
    
    /* ===== TIMELINE HEADER MOBILE ===== */
    .section-header-premium {
        text-align: center;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
        color: #002A5E;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.6;
        color: #6C757D;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    /* ===== TIMELINE CONTAINER MOBILE ===== */
    .process-timeline-spectacular {
        position: relative;
        padding: 0 1rem;
    }
    
    /* ===== TIMELINE BACKGROUND MOBILE ===== */
    .timeline-background {
        display: none;
    }
    
    .timeline-main-line {
        display: none;
    }
    
    /* ===== TIMELINE ITEMS MOBILE ===== */
    .timeline-item-spectacular {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2.5rem;
        position: relative;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(248, 249, 250, 0.95) 100%);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        border: 1px solid rgba(0, 42, 94, 0.1);
        box-shadow: 
            0 10px 30px rgba(0, 42, 94, 0.08),
            0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .timeline-item-spectacular:hover {
        transform: translateY(-5px);
        box-shadow: 
            0 20px 40px rgba(0, 42, 94, 0.12),
            0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    /* ===== TIMELINE MARKER MOBILE ===== */
    .timeline-marker-spectacular {
        margin: 0 auto 1.5rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .marker-outer-ring {
        width: 50px;
        height: 50px;
        border: 2px solid #002A5E;
        background: #FFFFFF;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 42, 94, 0.15);
    }
    
    .marker-inner-core {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #D4AF37, #F4D03F);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #FFFFFF;
    }
    
    .marker-icon {
        color: #002A5E;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .marker-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .marker-step-number {
        font-size: 0.8rem;
        font-weight: 700;
        color: #FFFFFF;
        background: #002A5E;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -5px;
        right: -5px;
        border: 2px solid #FFFFFF;
    }
    
    /* ===== TIMELINE CONTENT MOBILE ===== */
    .timeline-content-spectacular {
        max-width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    
    .timeline-content-spectacular::before {
        display: none;
    }
    
    /* ===== CONTENT HEADER MOBILE ===== */
    .content-header {
        margin-bottom: 1rem;
    }
    
    .content-header h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #002A5E;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .content-badge {
        display: inline-block;
        background: linear-gradient(135deg, #D4AF37, #F4D03F);
        color: #002A5E;
        padding: 0.3rem 0.8rem;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* ===== TIMELINE DESCRIPTION MOBILE ===== */
    .timeline-content-spectacular p {
        font-size: 1rem;
        line-height: 1.6;
        color: #6C757D;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    /* ===== TIMELINE FEATURES MOBILE ===== */
    .timeline-features-spectacular {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-item {
        gap: 0.5rem;
        padding: 0.5rem 0.8rem;
        background: rgba(0, 42, 94, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(0, 42, 94, 0.1);
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        background: rgba(0, 42, 94, 0.1);
        transform: translateY(-2px);
    }
    
    .feature-icon {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
        background: #D4AF37;
        color: #002A5E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-item span {
        font-size: 0.85rem;
        font-weight: 500;
        color: #002A5E;
        line-height: 1.3;
    }
    
    /* ===== PROGRESS BAR MOBILE ===== */
    .content-progress {
        margin-top: 1.5rem;
    }
    
    .progress-bar {
        height: 8px;
        background: rgba(0, 42, 94, 0.1);
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 0.5rem;
    }
    
    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #D4AF37, #F4D03F);
        border-radius: 4px;
        transition: width 0.8s ease;
    }
    
    .progress-text {
        font-size: 0.8rem;
        font-weight: 600;
        color: #002A5E;
        text-align: center;
    }

    /* ===== CONTACT SECTION MOBILE ===== */
    .contact {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .contact-info {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
        border-radius: 12px;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-method h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-method p {
        font-size: 0.9rem;
    }

    /* ===== FOOTER MOBILE ===== */
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand img {
        max-width: 200px;
        margin: 0 auto 1rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .footer-links h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links ul {
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    /* ===== WHATSAPP FLOAT MOBILE ===== */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        right: 70px;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    /* ===== MODAL MOBILE ===== */
    .modal-content {
        width: 95%;
        height: 90%;
        margin: 5% auto;
        padding: 1rem;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    
    #modalImage {
        max-height: 60%;
        border-radius: 12px;
    }
    
    .modal-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .modal-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .modal-navigation {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* ===== EXTRA SMALL MOBILE OPTIMIZATION ===== */
@media (max-width: 480px) {
    /* ===== GLOBAL EXTRA SMALL SETTINGS ===== */
    .container {
        padding: 0 16px;
    }
    
    body {
        font-size: 15px;
    }

    /* ===== HERO SECTION EXTRA SMALL ===== */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-badge {
        padding: 6px 12px;
        margin-bottom: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.65rem;
        letter-spacing: 0.6px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 9vw, 2.5rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .stat-item {
        padding: 1rem 0.8rem;
        min-width: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }

    .logo-backdrop {
        padding: 1.5rem;
        max-width: 250px;
    }

    .hero-logo {
        max-width: 220px;
    }

    /* ===== DECORATIVE ELEMENTS EXTRA SMALL ===== */
    .paint-drop {
        transform: scale(0.5);
    }

    .brush-stroke {
        opacity: 0.03;
    }

    .ink-splash {
        opacity: 0.02;
    }

    /* ===== SERVICES SECTION EXTRA SMALL ===== */
    .services-premium {
        padding: 60px 0;
    }
    
    .services-grid-premium {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .service-card-premium {
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }
    
    .card-header {
        padding: 1.2rem 1.2rem 0.8rem;
    }
    
    .service-icon-premium {
        width: 45px;
        height: 45px;
    }
    
    .service-icon-premium svg {
        width: 20px;
        height: 20px;
    }
    
    .service-number {
        font-size: 1.1rem;
    }
    
    .card-content {
        padding: 0.8rem 1.2rem 1.2rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .service-features-premium {
        gap: 0.5rem;
    }
    
    .feature-item-premium {
        gap: 0.5rem;
        padding: 0.3rem 0;
    }
    
    .feature-check {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
    
    .feature-item-premium span {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* ===== CORPORATE HEADERS EXTRA SMALL ===== */
    .corporate-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .corporate-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .corporate-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }
    
    .badge-icon {
        font-size: 0.8rem;
    }

    /* ===== CATALOG SECTION EXTRA SMALL ===== */
    .catalog {
        padding: 60px 0;
    }
    
    .category-nav-single {
        margin-bottom: 2rem;
    }
    
    .category-btn-single {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 220px;
    }

    .carousel-container {
        padding: 0 30px;
    }
    
    .carousel-track {
        gap: 1rem;
    }

    .product-card.premium {
        min-width: 250px;
        border-radius: 12px;
    }
    
    .product-card-carousel {
        min-width: 230px;
        border-radius: 12px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }
    
    .product-image {
        height: 180px;
        border-radius: 10px 10px 0 0;
    }
    
    .product-image-carousel {
        height: 160px;
        border-radius: 10px 10px 0 0;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }
    
    .product-specs {
        gap: 0.4rem;
    }
    
    .spec {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    /* ===== TECHNOLOGY SECTION EXTRA SMALL ===== */
    .technology-section-premium {
        padding: 60px 0;
    }
    
    .technology-grid-premium {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .tech-card-premium {
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }
    
    .tech-card-header {
        padding: 1.2rem 1.2rem 0.8rem;
    }
    
    .tech-icon-premium {
        width: 45px;
        height: 45px;
    }
    
    .tech-icon-premium svg {
        width: 24px;
        height: 24px;
    }
    
    .tech-number {
        font-size: 1.1rem;
    }
    
    .tech-card-content {
        padding: 0.8rem 1.2rem 1.2rem;
    }
    
    .tech-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .tech-card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .tech-features-premium {
        gap: 0.5rem;
    }
    
    .tech-feature-item {
        gap: 0.5rem;
        padding: 0.3rem 0;
    }
    
    .feature-check-tech {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
    
    .tech-feature-item span {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .tech-card-footer {
        padding: 0.8rem 1.2rem 1.2rem;
    }
    
    .tech-stats {
        gap: 0.8rem;
    }
    
    .tech-stat-number {
        font-size: 1rem;
    }
    
    .tech-stat-label {
        font-size: 0.65rem;
    }

    /* ===== TIMELINE SECTION EXTRA SMALL ===== */
    .process-section {
        padding: 60px 0;
    }
    
    /* ===== TIMELINE HEADER EXTRA SMALL ===== */
    .section-header-premium {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    /* ===== TIMELINE CONTAINER EXTRA SMALL ===== */
    .process-timeline-spectacular {
        padding: 0 0.5rem;
    }
    
    /* ===== TIMELINE ITEMS EXTRA SMALL ===== */
    .timeline-item-spectacular {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    /* ===== TIMELINE MARKER EXTRA SMALL ===== */
    .marker-outer-ring {
        width: 45px;
        height: 45px;
        border: 2px solid #002A5E;
    }
    
    .marker-inner-core {
        width: 32px;
        height: 32px;
    }
    
    .marker-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .marker-step-number {
        font-size: 0.7rem;
        width: 18px;
        height: 18px;
        top: -4px;
        right: -4px;
    }
    
    /* ===== CONTENT HEADER EXTRA SMALL ===== */
    .content-header h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .content-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
        border-radius: 10px;
    }
    
    /* ===== TIMELINE DESCRIPTION EXTRA SMALL ===== */
    .timeline-content-spectacular p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    /* ===== TIMELINE FEATURES EXTRA SMALL ===== */
    .timeline-features-spectacular {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-item {
        gap: 0.4rem;
        padding: 0.4rem 0.6rem;
        border-radius: 6px;
    }
    
    .feature-icon {
        width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* ===== PROGRESS BAR EXTRA SMALL ===== */
    .content-progress {
        margin-top: 1.2rem;
    }
    
    .progress-bar {
        height: 6px;
        margin-bottom: 0.4rem;
    }
    
    .progress-text {
        font-size: 0.75rem;
    }

    /* ===== CONTACT SECTION EXTRA SMALL ===== */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .contact-info {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-methods {
        gap: 1.2rem;
    }
    
    .contact-method {
        padding: 0.8rem;
        border-radius: 10px;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-method h4 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-method p {
        font-size: 0.85rem;
    }

    /* ===== FOOTER EXTRA SMALL ===== */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-brand img {
        max-width: 180px;
        margin: 0 auto 0.8rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links ul {
        gap: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    /* ===== WHATSAPP FLOAT EXTRA SMALL ===== */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-tooltip {
        right: 65px;
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    /* ===== MODAL EXTRA SMALL ===== */
    .modal-content {
        width: 98%;
        height: 95%;
        margin: 2.5% auto;
        padding: 0.8rem;
    }
    
    .modal-close {
        top: 8px;
        right: 12px;
        width: 45px;
        height: 45px;
        font-size: 25px;
    }
    
    #modalImage {
        max-height: 55%;
        border-radius: 10px;
    }
    
    .modal-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .modal-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .modal-navigation {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .modal-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    /* ===== BUTTONS EXTRA SMALL ===== */
    .btn-view-all {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .btn-view-all span {
        font-size: 0.85rem;
    }
    
    .btn-view-all svg {
        width: 16px;
        height: 16px;
    }
    
    .btn-view-all-premium {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-navy);
}

.text-secondary {
    color: var(--secondary-gold);
}

.text-accent {
    color: var(--accent-sapphire);
}

.bg-primary {
    background: var(--bg-primary);
}

.bg-light {
    background: var(--bg-secondary);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* Selection Styling */
::selection {
    background: var(--primary-navy);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-navy);
    color: var(--text-white);
}

/* Grid de productos completo */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card-grid {
    background: var(--gradient-card);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transition: var(--transition-cinematic);
    border: var(--glass-border);
    transform-style: preserve-3d;
}

.product-card-grid:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-premium);
}

.product-image-grid {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gradient-cosmic);
}

.product-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-cinematic);
    cursor: pointer;
}

.product-image-grid:hover img {
    transform: scale(1.1);
}

.product-image-grid .product-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 42, 94, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-info-grid {
    padding: 2rem;
}

.product-info-grid h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.product-info-grid p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Modal para imágenes */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    margin: 2% auto;
    width: 95%;
    max-width: 1200px;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    cursor: default;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10002;
    transition: var(--transition-elegant);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    line-height: 1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    outline: none;
    font-family: inherit;
}

.modal-close:hover {
    color: var(--secondary-gold);
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    border: 2px solid var(--secondary-gold);
}

#modalImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 2rem;
}

.modal-info {
    text-align: center;
    color: white;
    max-width: 600px;
}

.modal-info h3 {
    color: var(--secondary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.modal-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10001;
    transform: translateY(-50%);
}

.modal-nav-btn {
    background: rgba(0, 42, 94, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition-elegant);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10001;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
}

.modal-nav-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.modal-nav-btn:active {
    transform: scale(0.95);
}

.modal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.modal-nav-btn:disabled:hover {
    background: rgba(0, 42, 94, 0.8);
    transform: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Responsivo para el modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 1rem;
        margin: 1% auto;
        width: 98%;
        height: 98%;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 35px;
        padding: 15px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 50%;
        width: 65px;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10002;
        pointer-events: auto;
        cursor: pointer;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    #modalImage {
        max-height: 60vh;
    }
    
    .modal-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-info p {
        font-size: 1rem;
    }
    
    .modal-navigation {
        padding: 0 1rem;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
        z-index: 10001;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .modal-nav-btn:hover {
        background: var(--secondary-gold);
        transform: scale(1.05);
    }
    
    .modal-nav-btn:active {
        transform: scale(0.9);
    }
}

/* Responsivo para el grid */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .product-info-grid {
        padding: 1.5rem;
    }
    
    .product-info-grid h4 {
        font-size: 1.2rem;
    }
    
    .product-info-grid p {
        font-size: 0.9rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsapp-bounce 2s ease-in-out infinite;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:hover::before {
    opacity: 1;
}

.whatsapp-icon {
    position: relative;
    z-index: 2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-tooltip {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 42, 94, 0.95);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 42, 94, 0.95);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

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

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        right: 75px;
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@keyframes subtitle-underline {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes hero-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes hero-image-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes hero-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes floating-drift {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

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

@keyframes catalog-section-reveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stat-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 42, 94, 0.1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 42, 94, 0.2);
    }
}

@keyframes stat-number-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes stat-item-entrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logo-glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
}

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

@keyframes paint-drop-fall {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
}

@keyframes brush-stroke-fade {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(1.2) rotate(5deg);
    }
}

@keyframes ink-splash-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
} 

/* Spectacular Timeline Animations */
@keyframes timeline-glow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(1px);
    }
    50% {
        opacity: 0.8;
        filter: blur(2px);
    }
}

@keyframes timeline-particle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

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

@keyframes marker-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Services Premium Animations */
@keyframes services-glow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes service-card-entrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes corporate-badge-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 42, 94, 0.2);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 42, 94, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
    }
}

/* Apply entrance animations */
.service-card-premium {
    animation: service-card-entrance 0.8s ease-out forwards;
    opacity: 0;
}

.service-card-premium:nth-child(1) { animation-delay: 0.1s; }
.service-card-premium:nth-child(2) { animation-delay: 0.2s; }
.service-card-premium:nth-child(3) { animation-delay: 0.3s; }
.service-card-premium:nth-child(4) { animation-delay: 0.4s; }
.service-card-premium:nth-child(5) { animation-delay: 0.5s; }

.corporate-badge {
    animation: corporate-badge-glow 3s ease-in-out infinite;
}