/* ================================
   Amber AI Theme - Showcase
   Color: #8B5CF6 (Morado innovación)
   ================================ */

/* Theme Variables Override */
:root {
    --theme-primary: #8B5CF6;
    --theme-primary-dark: #7c3aed;
    --theme-primary-light: #a78bfa;
    --theme-secondary: #1a1a2e;
    --theme-accent: #c2703a;
}

/* Header */
.header--amber {
    border-bottom: 3px solid var(--theme-primary);
}

.header--amber .btn-primary {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.header--amber .btn-primary:hover {
    background-color: var(--theme-primary-dark);
    border-color: var(--theme-primary-dark);
}

/* Hero */
.hero--amber {
    background: linear-gradient(135deg, var(--theme-secondary) 0%, #0f0f1e 100%);
    position: relative;
    overflow: hidden;
}

.hero--amber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(194, 112, 58, 0.1) 0%, transparent 50%);
}

.hero--amber .hero-content {
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn-primary--amber {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    color: white;
}

.btn-primary--amber:hover {
    background-color: var(--theme-primary-dark);
    border-color: var(--theme-primary-dark);
}

.btn-outline--amber {
    border-color: var(--theme-primary);
    color: var(--theme-primary);
}

.btn-outline--amber:hover {
    background-color: var(--theme-primary);
    color: white;
}

/* Cards */
.card--amber {
    border-left: 4px solid var(--theme-primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.card--amber:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

/* Badges */
.badge--amber {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    color: white;
}

.badge--showcase {
    background: linear-gradient(135deg, var(--theme-secondary) 0%, #0f0f1e 100%);
    color: var(--theme-primary-light);
    border: 1px solid var(--theme-primary);
}

/* Navigation active state */
.nav--amber .nav-menu a.active,
.nav--amber .nav-menu a:hover {
    color: var(--theme-primary);
}

/* Section titles */
.section-title--amber {
    color: var(--theme-primary);
}

/* Footer */
.footer--amber {
    background: linear-gradient(135deg, var(--theme-secondary) 0%, #0f0f1e 100%);
}

/* Feature icons */
.icon--amber {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: var(--theme-primary);
}

/* AI Capability cards */
.capability-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary) 0%, var(--theme-primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-card:hover {
    border-color: var(--theme-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

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

.capability-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Tech animation background */
.tech-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Floating elements for visual interest */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

/* Stats with AI theme */
.stat-card--amber {
    background: linear-gradient(135deg, var(--theme-secondary) 0%, #0f0f1e 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: white;
}

.stat-value--amber {
    color: var(--theme-primary-light);
    font-size: 2.5rem;
    font-weight: 700;
}

/* CTA section */
.cta--amber {
    background: linear-gradient(135deg, var(--theme-secondary) 0%, #0f0f1e 100%);
    position: relative;
}

.cta--amber::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

/* Code/tech styling */
.code-block {
    background: var(--theme-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    font-family: monospace;
    color: #e2e8f0;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.code-block .highlight {
    color: var(--theme-primary-light);
}

/* No-sale notice */
.showcase-notice {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    text-align: center;
}

.showcase-notice strong {
    color: var(--theme-primary);
}
