:root {
    --neon-orange: #FF6B35;
    --neon-aqua: #00F5FF;
    --neon-blue: #45B7D1;
    --neon-green: #96CEB4;
    --cyber-purple: #8A2BE2;
    --dark-space: #0A0A0F;
    --deep-space: #1A1A2E;
    --void: #000000;
    --matrix: #00FF41;
    --hologram: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-space);
    color: white;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
}

/* Navigation */
.cyber-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neon-orange);
    z-index: 1000;
    padding: 1rem 0;
}

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

.hologram-logo {
    height: 40px;
    filter: drop-shadow(0 0 10px var(--neon-orange));
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.cyber-link {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.cyber-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-aqua));
    transition: width 0.3s ease;
}

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

.cyber-link:hover {
    color: var(--neon-orange);
}

/* Hero Section */
.cyber-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-aqua), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-aqua);
}

/* Cyber Buttons */
.cyber-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--neon-orange);
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cyber-button.primary {
    background: linear-gradient(45deg, var(--neon-orange), transparent);
}

.cyber-button:hover {
    color: white;
    box-shadow: 0 0 20px var(--neon-orange);
    transform: translateY(-2px);
}

/* ===== ESTILOS ADICIONALES PARA COMPONENTES ===== */

/* Asegurar que los formularios de Django se vean bien */
.form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 107, 53, 0.3) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 1rem !important;
}

.form-control:focus {
    border-color: var(--neon-orange) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Mejorar las tarjetas existentes */
.card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 107, 53, 0.3) !important;
    color: white !important;
}

/* Estilos para las tarjetas de testimonios */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-aqua));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.client-info h6 {
    margin: 0;
    color: white;
}

.rating-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Formulario de testimonios */
.testimonial-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.cyber-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 107, 53, 0.3) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 0.8rem 1rem !important;
    width: 100%;
    margin-bottom: 1rem;
}

.cyber-input:focus {
    border-color: var(--neon-orange) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    outline: none;
}

.cyber-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Sistema de estrellas */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.star-rating input {
    display: none;
}

.star-label {
    font-size: 2rem;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating input:checked ~ .star-label,
.star-rating .star-label:hover,
.star-rating .star-label:hover ~ .star-label {
    color: #FFD700;
    transform: scale(1.1);
}

.empty-testimonials {
    padding: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Stats */
.stat-item {
    padding: 1rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Grid de fondo cybernético */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: -1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Partículas flotantes */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Animación de partículas */
@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(calc(var(--random-x) * 100px), calc(var(--random-y) * 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .cyber-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
