/* ========================================
   WALTSDESIGN.STUDIO - CYBERPUNK MINIMALIST
   Paleta: Deep Purple + Neon Cyan/Magenta + Glassmorphism
   Fuentes: Inter + Space Grotesk
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Syne+Mono&family=Syne:wght@400..800&display=swap');

:root {
    /* Paleta Cyberpunk Base */
    --cyber-black: #0a0a0f;
    --cyber-dark: #12121a;
    --cyber-void: #1a1a28;
    --cyber-deep: #252538;
    
    /* Neón Primario */
    --neon-cyan: #00f0ff;
    --neon-magenta: #ff00ff;
    --neon-purple: #8b5cf6;
    --neon-pink: #ec4899;
    --neon-blue: #3b82f6;
    
    /* Efectos de Brillo */
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    
    /* Glassmorphism */
    --glass-bg: rgba(18, 18, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    
    /* Tipografía */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Syne Mono', var(--font-primary);
    
    /* Espaciado */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Transiciones */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    --promo-height: 40px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--cyber-black);
    padding-top: var(--promo-height);
    position: relative;
}

/* Grid de fondo cyberpunk */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

/* ========================================
   UTILIDADES
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 1;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   HEADER PROMOCIONAL
   ======================================== */
.promo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--promo-height);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.1);
}

.promo-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-8);
    max-width: 1400px;
    margin: 0 auto;
}

.promo-marquee {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.promo-content {
    display: flex;
    gap: var(--space-16);
    animation: marqueeScroll 40s linear infinite;
    white-space: nowrap;
}

.promo-text {
    color: var(--neon-cyan);
    font-weight: 500;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.language-toggle {
    display: flex;
    align-items: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: inset 0 0 10px rgba(139, 92, 246, 0.1);
}

.lang-btn {
    padding: 0.25rem 0.75rem;
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.6875rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: #ffffff;
    box-shadow: var(--glow-purple);
}

.lang-btn:hover:not(.active) {
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--space-12) 0 var(--space-8);
    overflow: hidden;
}

.neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at top,
        rgba(0, 0, 0, 0.85) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Avatar con efectos neón */
.avatar-wrapper {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.avatar-rings {
    position: absolute;
    inset: -30px;
    pointer-events: none;
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringRotate 20s linear infinite;
}

.ring-1 {
    border-color: var(--neon-cyan);
    opacity: 0.3;
    filter: blur(2px);
    animation-duration: 15s;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.ring-2 {
    border-color: var(--neon-magenta);
    opacity: 0.3;
    filter: blur(2px);
    animation-duration: 20s;
    animation-direction: reverse;
    box-shadow: 0 0 20px var(--neon-magenta);
}

.ring-3 {
    border-color: var(--neon-purple);
    opacity: 0.3;
    filter: blur(2px);
    animation-duration: 25s;
    box-shadow: 0 0 20px var(--neon-purple);
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.avatar-frame {
    position: relative;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    box-shadow: var(--glow-cyan), 
                var(--glow-magenta),
                inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.avatar-frame::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: rgba(10, 10, 15, 0.3);
    backdrop-filter: blur(10px);
    z-index: 0;
}

.avatar-photo {
    width: 100%;
    border-radius: 50%;
    display: block;
    border: 4px solid rgba(10, 10, 15, 0.8);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.2);
    object-fit: cover;  /* Recorta la imagen manteniendo proporción */
    aspect-ratio: 1 / 1;  /* Fuerza relación 1:1 (cuadrado/círculo) */
}

.avatar-badge {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-6);
    border-radius: 20px;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    z-index: 100;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-cyan);
}

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

/* Hero Content */
.hero-content-col {
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    margin-bottom: var(--space-6);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-purple);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-purple);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, #ffffff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: var(--space-8);
    max-width: 600px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-8);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 0.875rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--neon-cyan), transparent);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    opacity: 0;
    transition: var(--transition-base);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    color: #ffffff;
    border: none;
    box-shadow: var(--glow-cyan);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7), 0 0 50px rgba(255, 0, 255, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-button.secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow-cyan), inset 0 0 30px rgba(0, 240, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--neon-cyan));
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   SECTIONS
   ======================================== */
.services-section,
.agents-section,
.cyber-section,
.contact-section {
    padding: var(--space-16) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--space-3);
    background: linear-gradient(135deg, #ffffff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
}

.service-card {
    padding: var(--space-4);
    border-radius: 16px;
    position: relative;
    transition: var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    border-radius: 20px;
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.3;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.service-card.featured {
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    font-size: 1.25rem;
    position: relative;
}

.service-icon.primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    box-shadow: var(--glow-cyan);
}

.service-icon.secondary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    box-shadow: var(--glow-purple);
}

.service-icon.tertiary {
    background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
    box-shadow: var(--glow-magenta);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
    color: #ffffff;
}

.card-description {
    color: #b0b0b0;
    margin-bottom: var(--space-4);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-cyan);
}

/* ========================================
   AGENT CARDS
   ======================================== */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.agent-card {
    padding: var(--space-4);
    border-radius: 16px;
    position: relative;
    transition: var(--transition-base);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.agent-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-purple);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.agent-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-4);
    position: relative;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--cyber-dark), var(--cyber-dark)) padding-box,
                linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta)) border-box;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                inset 0 0 20px rgba(0, 240, 255, 0.1);
    transition: var(--transition-base);
}

.agent-card:hover .agent-avatar img {
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.8),
                inset 0 0 30px rgba(0, 240, 255, 0.2);
    transform: scale(1.05);
}

.agent-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--cyber-dark);
}

.agent-status.online {
    background: #25D366;
    box-shadow: 0 0 10px #25D366;
}

.agent-name {
    font-size: 1.125rem;
    margin-bottom: var(--space-1);
    color: #ffffff;
    text-align: center;
}

.agent-role {
    font-size: 0.8125rem;
    color: var(--neon-cyan);
    margin-bottom: var(--space-3);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.agent-desc {
    color: #b0b0b0;
    margin-bottom: var(--space-4);
    line-height: 1.6;
    font-size: 0.875rem;
    text-align: center;
}

.agent-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

.agent-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--neon-purple);
}

.agent-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.agent-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
    color: #ffffff;
}

.agent-description {
    color: #888;
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.agent-capabilities {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: 0.875rem;
    color: #b0b0b0;
}

.capability-item i {
    color: var(--neon-cyan);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ========================================
   FLYERS SECTION - MINIMALISTA & RESPONSIVO
   ======================================== */
.flyers-section {
    padding: var(--space-16) 0;
    position: relative;
}

.flyers-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto var(--space-8);
    padding: 0 60px;
}

.flyers-slider-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.flyers-slider {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: var(--space-4);
}

.flyers-slide {
    flex: 0 0 280px;
    min-width: 280px;
}

.flyer-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.3);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.flyer-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
    transform: translateY(-4px);
}

.flyer-image {
    width: 100%;
    aspect-ratio: 2/3;
    background-size: cover;
    background-position: center;
    position: relative;
}

.flyer-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 15, 0.95));
}

.flyer-title {
    padding: var(--space-4);
    font-size: 1.125rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Flechas de navegación */
.flyers-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.flyers-arrow:hover {
    background: rgba(236, 72, 153, 0.2);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

.flyers-arrow i {
    font-size: 1.25rem;
    color: var(--neon-pink);
}

.flyers-prev {
    left: 0;
}

.flyers-next {
    right: 0;
}

/* Indicadores */
.flyers-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
}

.flyer-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
}

.flyer-indicator.active {
    background: var(--neon-pink);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
    width: 24px;
    border-radius: 4px;
}

/* CTA */
.flyers-cta {
    text-align: center;
}

.flyers-cta-text {
    font-size: 1.125rem;
    color: #888;
    margin-bottom: var(--space-4);
}

/* ========================================
   CYBER SLIDER
   ======================================== */
.cyber-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto var(--space-12);
}

.cyber-slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    padding: var(--space-4) 0;
}

.cyber-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: var(--space-6);
    align-items: center;
}

.cyber-slide {
    flex: 0 0 340px;
    max-width: 340px;
    display: flex;
    justify-content: center;
}

@media (min-width: 640px) {
    .cyber-slide {
        flex: 0 0 400px;
        max-width: 400px;
    }
}

.cyber-card {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(236, 72, 153, 0.3);
    transition: var(--transition-base);
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cyber-card {
        max-width: 400px;
    }
}

.cyber-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
}

.cyber-card-image {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cyber-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.9));
}

.cyber-img-icon {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.cyber-img-icon i {
    font-size: 1.25rem;
    color: var(--neon-pink);
}

.cyber-card-body {
    padding: var(--space-4);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cyber-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
    width: fit-content;
}

.cyber-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
    color: #ffffff;
    line-height: 1.3;
}

.cyber-card-sub {
    color: #888;
    line-height: 1.6;
    font-size: 0.875rem;
}

.cyber-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.cyber-arrow:hover {
    background: rgba(236, 72, 153, 0.2);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

.cyber-prev { left: var(--space-4); }
.cyber-next { right: var(--space-4); }

.cyber-arrow i {
    color: var(--neon-pink);
    font-size: 1.25rem;
}

.cyber-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.cyber-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid rgba(236, 72, 153, 0.5);
}

.cyber-indicator.active {
    background: var(--neon-pink);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.7);
    width: 30px;
    border-radius: 5px;
}

.cyber-cta-block {
    text-align: center;
    margin-top: var(--space-12);
}

.cyber-cta-label {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: var(--space-6);
}

/* ========================================
   CONTACT HUB
   ======================================== */
.contact-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    padding: var(--space-4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: var(--transition-base);
}

.contact-card.whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.1);
}

.contact-card.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
}

.contact-card.calendly {
    border-color: rgba(0, 107, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 107, 255, 0.1);
}

.contact-card.calendly:hover {
    border-color: #006BFF;
    box-shadow: 0 0 40px rgba(0, 107, 255, 0.3);
}

.contact-card.facebook {
    border-color: rgba(24, 119, 242, 0.3);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.1);
}

.contact-card.facebook:hover {
    border-color: #1877F2;
    box-shadow: 0 0 40px rgba(24, 119, 242, 0.3);
}

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

.contact-card:hover {
    transform: translateX(8px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card.whatsapp .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.contact-card.calendly .contact-icon {
    background: linear-gradient(135deg, #006BFF, #0052cc);
    box-shadow: 0 0 20px rgba(0, 107, 255, 0.5);
}

.contact-card.facebook .contact-icon {
    background: linear-gradient(135deg, #1877F2, #0a5ed9);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
}

.contact-icon i {
    color: #ffffff;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-1);
    color: #ffffff;
}

.contact-desc {
    font-size: 0.875rem;
    color: #888;
}

.contact-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.contact-card:hover .contact-arrow {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.contact-arrow i {
    color: var(--neon-cyan);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-10) 0;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
    gap: var(--space-6);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.875rem;
    color: #888;
}

.footer-links {
    display: flex;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.875rem;
    color: #888;
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #888;
}

.footer-bottom i {
    color: var(--neon-purple);
}

/* ========================================
   CHAT WIDGET - WHATSAPP STYLE
   ======================================== */
.chat-fab-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.chat-teaser-bubble {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px 12px 4px 12px;
    padding: 10px 14px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    max-width: 180px;
    position: relative;
    animation: chatTeaserFloat 3s ease-in-out infinite;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.chat-teaser-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid rgba(0, 240, 255, 0.3);
}

.chat-teaser-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neon-cyan);
    line-height: 1.4;
    margin: 0;
}

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

#chatWidget.open .chat-teaser-bubble {
    opacity: 0;
    pointer-events: none;
}

.chat-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
    cursor: pointer;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    background: var(--cyber-dark);
    flex-shrink: 0;
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.7);
}

.chat-fab-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-fab-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-fab-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
}

.chat-fab-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.chat-fab-close-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyber-dark);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.chat-fab-close-icon i {
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

#chatWidget.open .chat-fab-avatar { opacity: 0; }
#chatWidget.open .chat-fab-close-icon { opacity: 1; }

/* Panel - Desktop y Móvil */
.chat-panel {
    width: 400px;
    max-height: 600px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.4);
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#chatWidget.open .chat-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

/* Móvil - Pantalla completa tipo WhatsApp */
@media (max-width: 640px) {
    .chat-panel {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        height: 100vh !important;
        border-radius: 0 !important;
        border: none !important;
        z-index: 2147483646 !important;
    }
    
    #chatWidget.open .chat-panel {
        transform: translateY(0) scale(1) !important;
    }
}

/* Header tipo WhatsApp */
.chat-header {
    padding: 16px 18px;
    background: rgba(0, 240, 255, 0.08);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.chat-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid var(--cyber-dark);
    box-shadow: 0 0 10px #25D366;
}

.chat-header-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #ffffff;
    margin: 0;
}

.chat-header-status {
    font-size: 0.75rem;
    color: var(--neon-cyan);
    margin: 0;
}

.chat-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
}

/* Messages área */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(5, 5, 10, 0.5);
}

.chat-msg {
    display: flex;
    gap: 8px;
    animation: messageSlideIn 0.3s ease;
}

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

.chat-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 75%;
    line-height: 1.5;
    font-size: 0.9rem;
    word-wrap: break-word;
}

.bot-bubble {
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #e0e0e0;
    border-radius: 12px 12px 12px 4px;
}

.user-bubble {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: #ffffff;
    margin-left: auto;
    border-radius: 12px 12px 4px 12px;
}

.chat-msg.user {
    flex-direction: row-reverse;
}

.chat-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 12px;
}

.quick-reply-btn {
    padding: 10px 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--neon-purple);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: left;
}

.quick-reply-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

/* Input área tipo WhatsApp */
.chat-input-area {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.chat-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-base);
}

.chat-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.chat-input::placeholder {
    color: #666;
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.chat-send-btn:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
    transform: scale(1.05);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-powered-by {
    font-size: 0.6875rem;
    color: #666;
    text-align: center;
    margin-top: 8px;
}

.chat-powered-by strong {
    color: var(--neon-cyan);
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cyber-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-purple));
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
}

::selection {
    background: rgba(0, 240, 255, 0.3);
    color: #ffffff;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }

    .avatar-wrapper {
        max-width: 220px;
    }

    .hero-tag,
    .hero-stats,
    .hero-cta-group {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid,
    .agents-grid {
        grid-template-columns: 1fr;
    }
    
    /* Flyers responsive - Tablet */
    .flyers-slider-container {
        padding: 0 50px;
    }
    
    .flyers-slide {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .flyers-arrow {
        width: 42px;
        height: 42px;
    }
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */
@media (max-width: 640px) {
    :root {
        --space-8: 1.5rem;
        --space-10: 2rem;
        --space-12: 2.5rem;
        --space-16: 3rem;
        --space-20: 4rem;
    }

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

    .gradient-text {
        font-size: 1.2rem;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .contact-hub {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .chat-panel {
        width: calc(100vw - 32px);
        max-width: 360px;
    }
    
    /* Flyers responsive - Móvil */
    .flyers-slider-container {
        padding: 0 45px;
    }
    
    .flyers-slide {
        flex: 0 0 240px;
        min-width: 240px;
    }
    
    .flyers-arrow {
        width: 38px;
        height: 38px;
    }
    
    .flyers-arrow i {
        font-size: 1rem;
    }
    
    .flyer-title {
        font-size: 1rem;
        padding: var(--space-3);
    }
}

@media (max-width: 375px) {
    .avatar-wrapper {
        max-width: 180px;
    }

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

    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Flyers responsive - Extra pequeño */
    .flyers-slider-container {
        padding: 0 40px;
    }
    
    .flyers-slide {
        flex: 0 0 220px;
        min-width: 220px;
    }
}
