/* ==========================================
   SYMCARPER - ULTRA MODERN DESIGN SYSTEM
   Basado en diseño GalaxIA
   ========================================== */

/* ==========================================
   BASE & RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Dark Theme con gradientes futuristas */
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #A78BFA;
    --accent: #F472B6;
    --success: #34D399;
    --warning: #FBBF24;
    
    /* Gradientes principales */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    --gradient-card: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    
    /* Dark Background - Tonos morados */
    --bg-primary: #0f0a1f;
    --bg-secondary: #1a1433;
    --bg-tertiary: #2d2347;
    --bg-card: rgba(26, 20, 51, 0.8);
    --bg-glass: rgba(167, 139, 250, 0.08);
    
    /* Text Colors - Más brillantes */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-tertiary: #cbd5e1;
    
    /* Borders & Effects */
    --border-color: rgba(255, 255, 255, 0.15);
    --border-glow: rgba(99, 102, 241, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.5);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Fira Code', 'Courier New', monospace;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: #0f0a1f;
}

body {
    font-family: var(--font-primary);
    background: #0f0a1f;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
}

/* Main content wrapper */
main {
    position: relative;
    z-index: 1;
}

/* Animated Background - Removed, using stars instead */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ==========================================
   HEADER / NAVBAR - Clean Floating Style
   ========================================== */
.main-header {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    top: 1rem;
    width: calc(100% - 6rem);
}

.header-container {
    background: rgba(15, 10, 31, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.main-header.scrolled .header-container {
    background: rgba(15, 10, 31, 0.6);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding: 0.875rem 2rem;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: inline-block;
    line-height: 0;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.logo-text:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}


/* Navigation Menu */
.header-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-link {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.15);
}

/* Language/Country Selector */
.language-selector {
    position: relative;
    margin-right: 1rem;
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.language-btn .fi {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: block;
    clip-path: circle(50% at center);
    -webkit-clip-path: circle(50% at center);
}

.language-btn i.fa-chevron-down {
    display: none;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 240px;
    background: rgba(15, 10, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-header {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.language-options {
    overflow-y: auto;
    max-height: 320px;
    padding: 0.5rem;
}

.language-options::-webkit-scrollbar {
    width: 6px;
}

.language-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.language-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.language-options::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.language-option.active {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(99, 102, 241, 0.3);
    position: relative;
}

.language-option.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    color: var(--primary-light);
    font-size: 0.9rem;
}

.language-option .fi {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    overflow: hidden;
    display: block;
    clip-path: circle(50% at center);
    -webkit-clip-path: circle(50% at center);
}

/* CTA Button */
.header-cta {
    display: flex;
    align-items: center;
}

.header-btn-primary {
    background: #a78bfa;
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(167, 139, 250, 0.3);
    font-family: var(--font-primary);
    position: relative;
    z-index: 1;
}

.header-btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #F472B6 100%);
    z-index: -1;
}

.header-btn-primary::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #F472B6 100%);
    filter: blur(15px);
    opacity: 0.5;
    z-index: -2;
}

.header-btn-primary:hover {
    background: #9370ee;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.5);
    transform: translateY(-2px);
}

.header-btn-primary:hover::after {
    opacity: 0.7;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Visibility Utilities */
.mobile-only { 
    display: none !important; 
}

.desktop-only { 
    display: block !important; 
}

/* ==========================================
   HERO SECTION - ULTRA MODERN
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--spacing-2xl) + 80px) 0 var(--spacing-2xl) 0;
    margin-top: -120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(
        from 0deg,
        rgba(99, 102, 241, 0.15) 0deg,
        rgba(139, 92, 246, 0.12) 90deg,
        rgba(236, 72, 153, 0.1) 180deg,
        rgba(99, 102, 241, 0.08) 270deg,
        rgba(99, 102, 241, 0.15) 360deg
    );
    mask: linear-gradient(transparent 10%, black 30%, black 70%, transparent 90%),
          linear-gradient(90deg, transparent 10%, black 30%, black 70%, transparent 90%);
    mask-composite: intersect;
    -webkit-mask: linear-gradient(transparent 10%, black 30%, black 70%, transparent 90%),
                  linear-gradient(90deg, transparent 10%, black 30%, black 70%, transparent 90%);
    -webkit-mask-composite: source-in;
    pointer-events: none;
    animation: rotate-border 10s linear infinite;
    z-index: 2;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.5) 0%, 
        rgba(30, 41, 59, 0.45) 50%,
        rgba(15, 23, 42, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-badge i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.1);
}

.gradient-text {
    color: #c084fc;
    position: relative;
    display: inline-block;
    font-weight: 900;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #c084fc;
    border-radius: 2px;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #f1f5f9;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Dashboard Preview con Glassmorphism */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    position: relative;
    border-radius: 1.5rem;
    overflow: visible;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #F472B6 100%);
    z-index: -2;
    animation: pulse-glow 3s ease-in-out infinite;
}

.dashboard-preview::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #F472B6 100%);
    filter: blur(25px);
    opacity: 0.7;
    z-index: -3;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.9; }
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(15, 10, 31, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    position: relative;
    z-index: 1;
    border-radius: 1.5rem 1.5rem 0 0;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.dashboard-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.dashboard-content {
    background: rgba(15, 10, 31, 0.95);
    padding: 1.5rem;
    border-radius: 0 0 1.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.dashboard-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    max-height: 400px;
    object-fit: cover;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #764ba2 0%, #F472B6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary span,
.btn-primary::after {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid-vambe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-vambe {
    background: rgba(15, 10, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.75rem;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.feature-header-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon-vambe {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.feature-icon-vambe i {
    color: var(--text-primary);
}

.feature-card-vambe h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.feature-card-vambe p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.feature-btn-vambe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: auto;
    width: fit-content;
}

.feature-btn-vambe i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.feature-btn-vambe:hover i {
    transform: translateX(4px);
}

/* GalaxIA Info Box */
.galaxia-info-box {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.galaxia-info-box p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.galaxia-info-box strong {
    color: var(--primary-light);
    font-weight: 600;
}

/* Blue Card */
.feature-card-blue::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(65, 105, 255, 0.4) 0%, rgba(0, 212, 255, 0.3) 25%, transparent 60%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.feature-card-blue .feature-icon-vambe {
    background: rgba(65, 105, 255, 0.1);
    border-color: rgba(65, 105, 255, 0.3);
}

.feature-card-blue .feature-icon-vambe i {
    color: #4169ff;
}

.feature-btn-blue {
    background: linear-gradient(135deg, #4169ff 0%, #00d4ff 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(65, 105, 255, 0.3);
}

.feature-btn-blue:hover {
    box-shadow: 0 6px 30px rgba(65, 105, 255, 0.5);
    transform: translateY(-2px);
}

/* Purple Card */
.feature-card-purple::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.4) 0%, rgba(139, 92, 246, 0.3) 25%, transparent 60%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.feature-card-purple .feature-icon-vambe {
    background: rgba(107, 70, 193, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

.feature-card-purple .feature-icon-vambe i {
    color: #a855f7;
}

.feature-btn-purple {
    background: linear-gradient(135deg, #6b46c1 0%, #a855f7 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.feature-btn-purple:hover {
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

/* Pink Card */
.feature-card-pink::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.4) 0%, rgba(168, 85, 247, 0.3) 25%, transparent 60%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.feature-card-pink .feature-icon-vambe {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
}

.feature-card-pink .feature-icon-vambe i {
    color: #ec4899;
}

.feature-btn-pink {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.feature-btn-pink:hover {
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

/* Cyan Card */
.feature-card-cyan::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.4) 0%, rgba(34, 211, 238, 0.3) 25%, transparent 60%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.feature-card-cyan .feature-icon-vambe {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-card-cyan .feature-icon-vambe i {
    color: #06b6d4;
}

.feature-btn-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.feature-btn-cyan:hover {
    box-shadow: 0 6px 30px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

/* Green Card */
.feature-card-green::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.4) 0%, rgba(52, 211, 153, 0.3) 25%, transparent 60%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.feature-card-green .feature-icon-vambe {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-card-green .feature-icon-vambe i {
    color: #10b981;
}

.feature-btn-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.feature-btn-green:hover {
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

/* Orange Card */
.feature-card-orange::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.4) 0%, rgba(251, 146, 60, 0.3) 25%, transparent 60%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.feature-card-orange .feature-icon-vambe {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

.feature-card-orange .feature-icon-vambe i {
    color: #f97316;
}

.feature-btn-orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.feature-btn-orange:hover {
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

.feature-glow-vambe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.feature-card-vambe:hover .feature-glow-vambe {
    opacity: 0.7;
}

.feature-glow-blue {
    background: radial-gradient(ellipse at bottom, rgba(65, 105, 255, 0.6) 0%, rgba(0, 212, 255, 0.4) 30%, transparent 70%);
}

.feature-glow-purple {
    background: radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.6) 0%, rgba(139, 92, 246, 0.4) 30%, transparent 70%);
}

.feature-glow-pink {
    background: radial-gradient(ellipse at bottom, rgba(236, 72, 153, 0.6) 0%, rgba(168, 85, 247, 0.4) 30%, transparent 70%);
}

.feature-glow-cyan {
    background: radial-gradient(ellipse at bottom, rgba(6, 182, 212, 0.6) 0%, rgba(34, 211, 238, 0.4) 30%, transparent 70%);
}

.feature-glow-green {
    background: radial-gradient(ellipse at bottom, rgba(16, 185, 129, 0.6) 0%, rgba(52, 211, 153, 0.4) 30%, transparent 70%);
}

.feature-glow-orange {
    background: radial-gradient(ellipse at bottom, rgba(249, 115, 22, 0.6) 0%, rgba(251, 146, 60, 0.4) 30%, transparent 70%);
}

/* ==========================================
   PROJECTS SHOWCASE SECTION
   ========================================== */
.projects-showcase {
    padding: 5rem 0;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.section-badge i {
    color: var(--primary-light);
}

.project-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.project-feature:last-child {
    margin-bottom: 0;
}

.project-feature.reverse {
    grid-template-columns: 1fr 1fr;
}

.project-feature.reverse .project-feature-content {
    order: 2;
}

.project-feature.reverse .project-feature-image {
    order: 1;
}

.project-feature-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(65, 105, 255, 0.1);
    border: 1px solid rgba(65, 105, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4169ff;
    width: fit-content;
}

.project-badge i {
    font-size: 1rem;
}

.project-badge-purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.project-badge-pink {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.project-badge-cyan {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06b6d4;
}

.project-badge-green {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.project-feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

.project-feature-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.project-link:hover {
    gap: 0.75rem;
    color: var(--primary);
}

.project-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(3px);
}

.project-feature-image {
    position: relative;
}

.image-frame {
    background: rgba(15, 10, 31, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-frame:hover::before {
    opacity: 1;
}

.image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.image-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(15, 10, 31, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.image-dots {
    display: flex;
    gap: 0.5rem;
}

.image-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.image-dots span:nth-child(1) {
    background: #ef4444;
}

.image-dots span:nth-child(2) {
    background: #f59e0b;
}

.image-dots span:nth-child(3) {
    background: #10b981;
}

.image-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.375rem 0.625rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.image-content {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.image-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    transition: transform 0.4s ease;
}

.image-frame:hover .image-content img {
    transform: scale(1.02);
}

/* Mobile Visibility Utilities */
.mobile-only { 
    display: none !important; 
}

.desktop-only { 
    display: block !important; 
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .main-header {
        width: calc(100% - 3rem);
    }
    
    .main-header.scrolled {
        width: calc(100% - 4rem);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .features-grid-vambe {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .project-feature,
    .project-feature.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .project-feature.reverse .project-feature-content,
    .project-feature.reverse .project-feature-image {
        order: unset;
    }
    
    .project-feature-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .mobile-only { 
        display: block !important; 
    }
    
    .desktop-only { 
        display: none !important; 
    }

    /* Header Optimization */
    .main-header {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
    }

    .main-header.scrolled {
        width: 100%;
        top: 0;
    }

    .header-container {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(15, 10, 31, 0.98);
    }
    
    .header-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .header-logo {
        z-index: 1002;
        order: 1;
    }

    .logo-img {
        height: 32px;
    }
    
    .language-selector {
        order: 2;
        margin-left: auto;
        margin-right: 0.5rem;
        z-index: 1002;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
        order: 3;
        margin-left: 0;
    }
    
    /* Mobile Menu Drawer */
    .header-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0f0a1f; 
        padding: 5rem 1.5rem 2rem 1.5rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        border-radius: 0;
        margin: 0;
        max-width: none;
        box-shadow: none;
        z-index: 1000;
    }
    
    .header-menu.active {
        transform: translateX(0);
        top: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 1rem 0;
        font-size: 1.1rem;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0;
        display: flex;
        justify-content: space-between;
    }

    /* Actions in Menu */
    .header-cta.mobile-only {
        margin-top: 2rem !important;
        width: 100%;
        display: flex !important;
    }
    
    .header-cta.desktop-only {
        display: none !important;
    }

    .header-cta.mobile-only .header-btn-primary {
        width: 100%;
        text-align: center;
        padding: 1rem;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Language Selector - Keep in top bar */
    .language-selector {
        margin-left: auto;
        margin-right: 0;
        margin-bottom: 0;
        position: relative;
        z-index: 1002;
    }

    .language-btn {
        width: 36px;
        height: 36px;
    }

    .language-dropdown {
        right: 0;
        left: auto;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid-vambe {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .projects-showcase {
        padding: 3rem 0;
    }
    
    .project-feature {
        margin-bottom: 3rem;
    }
    
    .project-feature-title {
        font-size: 1.5rem;
    }
    
    .project-feature-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.625rem 0.75rem;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .language-btn {
        width: 32px;
        height: 32px;
    }
    
    .language-btn .fi {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================
   PÁGINAS WEB SECTION
   ========================================== */

.paginas-web-section {
    background: transparent;
    padding: 80px 0;
    position: relative;
}

.paginas-web-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

/* Grid de páginas web (horizontal scroll) */
.paginas-web-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
}

.paginas-web-grid::-webkit-scrollbar {
    height: 8px;
}

.paginas-web-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.paginas-web-grid::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

.paginas-web-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Card Individual */
.pagina-web-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    flex: 0 0 320px;
    min-width: 320px;
    backdrop-filter: blur(10px);
}

.pagina-web-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
}

/* Imagen con overlay */
.pagina-web-card .card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.pagina-web-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pagina-web-card:hover .card-image {
    transform: scale(1.1);
}

.pagina-web-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pagina-web-card:hover .card-overlay {
    opacity: 1;
}

.btn-view-site {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-view-site:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 114, 182, 0.2);
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contenido de la card */
.pagina-web-card .card-content {
    padding: 24px;
}

.pagina-web-card .card-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.badge-corporativo {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
}

.badge-coming {
    background: rgba(244, 114, 182, 0.15);
    color: var(--accent);
}

.pagina-web-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.pagina-web-card .card-description {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .paginas-web-section {
        padding: 60px 0;
    }
    
    .pagina-web-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .pagina-web-card .card-image-wrapper {
        height: 170px;
    }
    
    .pagina-web-card .card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .paginas-web-section {
        padding: 50px 0;
    }
    
    .pagina-web-card {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .pagina-web-card .card-image-wrapper {
        height: 150px;
    }
    
    .pagina-web-card .card-title {
        font-size: 18px;
    }
    
    .pagina-web-card .card-description {
        font-size: 13px;
    }
}

/* ==========================================
   TESTIMONIOS SECTION
   ========================================== */

.testimonios-section {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonios-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

/* Grid de testimonios */
.testimonios-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

/* Card de testimonio */
.testimonio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.testimonio-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
    transform: translateY(-8px);
}

/* Card destacada (centro) */
.testimonio-card-destacado {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid var(--border-glow);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

.testimonio-card-destacado:hover {
    box-shadow: 0 16px 50px rgba(99, 102, 241, 0.4);
    transform: translateY(-10px);
}

.testimonio-badge-destacado {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.testimonio-badge-destacado i {
    font-size: 14px;
}

/* Header del testimonio */
.testimonio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonio-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder i {
    color: white;
    font-size: 28px;
}

.testimonio-card-destacado .avatar-placeholder i {
    font-size: 32px;
}

.testimonio-card-destacado .testimonio-avatar {
    width: 70px;
    height: 70px;
    border-width: 4px;
}

.testimonio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-info {
    flex: 1;
}

.testimonio-nombre {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.testimonio-card-destacado .testimonio-nombre {
    font-size: 20px;
}

.testimonio-cargo {
    font-size: 14px;
    color: var(--primary-light);
    margin: 0 0 3px 0;
    font-weight: 600;
}

.testimonio-empresa {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 0;
}

/* Estrellas */
.testimonio-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonio-stars i {
    color: #FFC107;
    font-size: 16px;
}

/* Contenido del testimonio */
.testimonio-content {
    position: relative;
}

.testimonio-texto {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.testimonio-card-destacado .testimonio-texto {
    font-size: 16px;
    line-height: 1.8;
}

.testimonio-texto::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonio-card-destacado {
        order: -1;
    }
}

@media (max-width: 768px) {
    .testimonios-section {
        padding: 70px 0;
    }
    
    .testimonio-card,
    .testimonio-card-destacado {
        padding: 25px;
    }
    
    .testimonio-nombre {
        font-size: 16px;
    }
    
    .testimonio-texto {
        font-size: 14px;
    }
    
    .testimonio-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonio-avatar {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .testimonio-card,
    .testimonio-card-destacado {
        padding: 20px;
    }
    
    .testimonio-texto {
        font-size: 13px;
        padding-left: 15px;
    }
    
    .testimonio-badge-destacado {
        font-size: 10px;
        padding: 6px 15px;
    }
}

/* ========== SECCIÓN PROCESO DE TRABAJO ========== */
.proceso-trabajo-section {
    background: transparent;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.proceso-trabajo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.proceso-trabajo-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.proceso-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Encabezado */
.proceso-header {
    text-align: center;
    margin-bottom: 60px;
}

.proceso-subtitle {
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.proceso-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.proceso-title .brand-color {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid de cards */
.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.proceso-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.proceso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.proceso-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: var(--border-glow);
}

.proceso-card:hover::before {
    opacity: 1;
}

/* Ícono circular */
.proceso-card .card-icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.3));
    position: relative;
    z-index: 1;
}

.proceso-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.proceso-card .card-icon svg {
    width: 100%;
    height: 100%;
}

/* Título de card */
.proceso-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Descripción */
.proceso-card .card-description {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Footer de sección */
.proceso-footer {
    text-align: center;
    margin-top: 40px;
}

.proceso-footer .footer-text {
    font-size: 18px;
    color: var(--text-secondary);
}

.proceso-footer .footer-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.proceso-footer .footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
}

.proceso-footer .footer-link:hover {
    color: var(--primary);
}

.proceso-footer .footer-link:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .proceso-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .proceso-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .proceso-trabajo-section {
        padding: 60px 0;
    }
    
    .proceso-title {
        font-size: 28px;
    }
    
    .proceso-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .proceso-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .proceso-card {
        padding: 35px 20px;
    }
    
    .proceso-card .card-icon {
        width: 110px;
        height: 110px;
    }
    
    .proceso-footer .footer-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .proceso-title {
        font-size: 24px;
    }
    
    .proceso-card .card-title {
        font-size: 18px;
    }
    
    .proceso-card .card-description {
        font-size: 13px;
    }
}

/* ========== SECCIÓN EQUIPO / SOBRE NOSOTROS ========== */
.equipo-section {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.equipo-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Grid de imágenes */
.equipo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 60px 0;
}

/* Cards de imágenes */
.equipo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: var(--border-glow);
}

/* Card grande (Summit) */
.equipo-card-large {
    min-height: 380px;
    max-height: 380px;
}

.equipo-card-large .equipo-image {
    object-fit: cover;
}

/* Cards de premio */
.equipo-card-premio {
    min-height: 380px;
    max-height: 380px;
}

.equipo-card-premio .equipo-image {
    object-fit: contain;
    background: var(--bg-secondary);
}

/* Image wrapper */
.equipo-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.equipo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.equipo-card:hover .equipo-image {
    transform: scale(1.05);
}

/* Overlay con información */
.equipo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(15, 10, 31, 0.95) 0%,
        rgba(15, 10, 31, 0.7) 50%,
        rgba(15, 10, 31, 0.3) 100%
    );
    opacity: 1;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.equipo-card:hover .equipo-overlay {
    opacity: 1;
}

.equipo-overlay-content {
    width: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.equipo-card:hover .equipo-overlay-content {
    transform: translateY(0);
}

.equipo-overlay-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.equipo-overlay-title i {
    color: var(--primary-light);
    font-size: 22px;
}

.equipo-overlay-description {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0;
}

/* Stats del equipo */
.equipo-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.equipo-stat {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.equipo-stat:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.equipo-stat .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(167, 139, 250, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.equipo-stat .stat-icon i {
    font-size: 26px;
    color: var(--primary-light);
}

.equipo-stat .stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
}

.equipo-stat .stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    margin: 0;
}

/* Sección de misión */
.equipo-mision {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.equipo-mision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mision-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(167, 139, 250, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
    position: relative;
    z-index: 1;
}

.mision-icon i {
    font-size: 32px;
    color: var(--primary-light);
}

.mision-content {
    position: relative;
    z-index: 1;
}

.mision-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px 0;
}

.mision-text {
    font-size: 16px;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .equipo-grid {
        grid-template-columns: 1fr;
    }
    
    .equipo-card-large {
        max-height: 350px;
    }
    
    .equipo-card-premio {
        max-height: 500px;
        min-height: 400px;
    }
    
    .equipo-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .equipo-section {
        padding: 60px 0;
    }
    
    .equipo-card-large {
        min-height: 280px;
        max-height: 280px;
    }
    
    .equipo-card-premio {
        min-height: 400px;
        max-height: 400px;
    }
    
    .equipo-overlay {
        padding: 20px;
    }
    
    .equipo-overlay-title {
        font-size: 18px;
    }
    
    .equipo-overlay-description {
        font-size: 13px;
    }
    
    .equipo-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .equipo-mision {
        flex-direction: column;
        padding: 35px 25px;
        text-align: center;
    }
    
    .mision-title {
        font-size: 24px;
    }
    
    .mision-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .equipo-card-large {
        min-height: 220px;
        max-height: 220px;
    }
    
    .equipo-card-premio {
        min-height: 350px;
        max-height: 350px;
    }
    
    .equipo-overlay-title {
        font-size: 16px;
    }
    
    .equipo-stat {
        padding: 25px 20px;
    }
    
    .equipo-stat .stat-number {
        font-size: 30px;
    }
    
    .mision-title {
        font-size: 20px;
    }
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final-section {
    background: transparent;
    padding: 20px 0 40px 0;
    position: relative;
    z-index: 1;
}

.cta-final-content {
    text-align: center;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-final-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-final-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.cta-final-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.cta-final-button i {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .cta-final-section {
        padding: 20px 0 35px 0;
    }
    
    .cta-final-content {
        padding: 35px 40px;
    }
    
    .cta-final-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .cta-final-section {
        padding: 20px 0 30px 0;
    }
    
    .cta-final-content {
        padding: 30px 25px;
        border-radius: 16px;
    }
    
    .cta-final-title {
        font-size: 24px;
    }
    
    .cta-final-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .cta-final-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cta-final-section {
        padding: 20px 0 25px 0;
    }
    
    .cta-final-content {
        padding: 25px 20px;
    }
    
    .cta-final-title {
        font-size: 22px;
    }
    
    .cta-final-description {
        font-size: 14px;
    }
    
    .cta-final-button {
        padding: 11px 26px;
        font-size: 14px;
    }
}

/* ============================================
   CTA SECTION - Modern Style
   ============================================ */
.cta-section {
    background: transparent;
    padding: 4rem 0 6rem 0;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .cta-section {
        padding: 3rem 0 5rem 0;
    }
    
    .cta-content {
        padding: 3rem 2.5rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2.5rem 0 4rem 0;
    }
    
    .cta-content {
        padding: 2.5rem 2rem;
        border-radius: 1.25rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem 0 3rem 0;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
}

