/* Estilos para la página Arrupe IA - Diseño Futurista y Tecnológico */

/* Fuentes y variables */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #00f2ff;
    --secondary-color: #7000ff;
    --accent-color: #ffcc00;
    --dark-color: #050a1c;
    --darker-color: #030611;
    --light-color: #e6f4ff;
    --text-color: #e6e6e6;
    --success-color: #00ff88;
    --danger-color: #ff3366;
    --warning-color: #ffcc00;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 5px 20px rgba(0, 242, 255, 0.15);
    --border-radius: 6px;
    --border-glow: 0 0 10px rgba(0, 242, 255, 0.5);
    --text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(112, 0, 255, 0.03) 0%, transparent 20%),
        linear-gradient(to bottom, var(--dark-color), var(--darker-color));
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

a:hover {
    color: var(--accent-color);
    text-shadow: var(--text-shadow);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header:before {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

.section-header p {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    box-shadow: var(--border-glow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(5, 10, 28, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(5, 10, 28, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.5));
}

.navbar-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-shadow: var(--text-shadow);
}

.navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar-item {
    margin-left: 30px;
}

.navbar-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-link:hover {
    color: var(--primary-color);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--border-glow);
}

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

.navbar-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-cta:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 242, 255, 0.2);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: var(--text-shadow);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--darker-color);
    overflow: hidden;
    padding-top: 80px;
}

/* Elementos flotantes de datos */
.floating-data {
    position: absolute;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0.2;
    z-index: 1;
    text-shadow: 0 0 5px var(--primary-color);
    pointer-events: none;
    animation: float 20s linear infinite;
    white-space: nowrap;
    transform: translateZ(0);
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(0) translateX(10px);
    }
    75% {
        transform: translateY(10px) translateX(5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(112, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #a0a0a0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(45deg, var(--primary-color), rgba(0, 242, 255, 0.7));
    color: var(--dark-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: right;
}

.cta-button:hover {
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2);
}

.cta-button:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button.gold {
    background: linear-gradient(45deg, var(--accent-color), rgba(255, 204, 0, 0.7));
}

.cta-button.gold:before {
    background: linear-gradient(45deg, var(--accent-color), transparent);
}

.cta-button.outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.tech-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 150px;
}

.indicator-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a0a0a0;
}

.indicator-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.indicator-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    position: relative;
    animation: progressAnimation 2s ease-out;
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }
}

.indicator-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.features-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 242, 255, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(112, 0, 255, 0.03) 0%, transparent 30%);
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: rgba(5, 10, 28, 0.7);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.feature-card:hover .card-glow {
    opacity: 0.1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary-color), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
    position: relative;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
}

.feature-content p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
}

.tech-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

/* Product Sections */
.product-section {
    padding: 120px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.product-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 242, 255, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.product-section.v2-section {
    background-color: var(--darker-color);
}

.product-section.v2-section:before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.03) 0%, transparent 40%);
}

.product-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.product-container.reverse {
    flex-direction: row-reverse;
}

.product-image-container {
    flex: 1;
    position: relative;
    max-width: 500px;
    min-height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product-image {
    width: 100%;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.product-image-container:hover .product-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 242, 255, 0.2), transparent);
    z-index: 3;
    border-radius: var(--border-radius);
}

.image-overlay.gold {
    background: linear-gradient(45deg, rgba(255, 204, 0, 0.2), transparent);
}

.pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 242, 255, 0.3);
    border-radius: 50%;
    z-index: 4;
    animation: pulse 2s infinite;
}

.pulse-effect.gold {
    background-color: rgba(255, 204, 0, 0.3);
}

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

.tech-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: var(--border-radius);
    z-index: 1;
}

.tech-frame.gold {
    border-color: rgba(255, 204, 0, 0.3);
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--primary-color);
    border-style: solid;
    border-width: 0;
}

.tech-frame.gold .corner {
    border-color: var(--accent-color);
}

.top-left {
    top: 0;
    left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
}

.top-right {
    top: 0;
    right: 0;
    border-top-width: 2px;
    border-right-width: 2px;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.data-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.data-point {
    position: absolute;
    background-color: rgba(0, 242, 255, 0.1);
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    animation: dataFloat 10s infinite;
}

.data-points.gold .data-point {
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.data-point:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.data-point:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.data-point:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.data-point:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

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

.product-content {
    flex: 1;
}

.product-badge {
    display: inline-block;
    background-color: rgba(0, 242, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.product-badge.premium {
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.product-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.product-content h2:after {
    content: '';
    position: absolute;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    bottom: -10px;
    left: 0;
}

.v2-section .product-content h2:after {
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.version {
    font-size: 1.5rem;
    color: var(--primary-color);
    vertical-align: super;
    margin-left: 5px;
}

.v2-section .version {
    color: var(--accent-color);
}

.product-description {
    color: #a0a0a0;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-features {
    margin-bottom: 30px;
}

.product-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: var(--transition);
}

.product-feature:hover {
    transform: translateX(10px);
}

.product-feature i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.v2-section .product-feature i {
    color: var(--accent-color);
}

.product-feature span {
    font-size: 1rem;
}

.product-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #a0a0a0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 120px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.how-it-works-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 20%, rgba(0, 242, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(112, 0, 255, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.process-container {
    position: relative;
    display: flex;
    margin-top: 60px;
    z-index: 2;
}

.process-timeline {
    width: 80px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--primary-color) 10%, 
        var(--primary-color) 90%, 
        transparent);
    transform: translateX(-50%);
}

.process-steps {
    flex: 1;
}

.process-step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    opacity: 0.8;
    transition: var(--transition);
}

.process-step:hover {
    opacity: 1;
    transform: translateX(10px);
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 30px;
    position: relative;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.step-number:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
}

.step-content {
    flex: 1;
    background-color: rgba(5, 10, 28, 0.7);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.step-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.3;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    opacity: 0.8;
    transform: scale(1.2);
}

.tech-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
}

.tech-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.tech-dots span:nth-child(1) {
    animation: pulse-dot 2s infinite;
}

.tech-dots span:nth-child(2) {
    animation: pulse-dot 2s infinite 0.3s;
}

.tech-dots span:nth-child(3) {
    animation: pulse-dot 2s infinite 0.6s;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.tech-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 242, 255, 0.1);
    opacity: 0.3;
}

.tech-circle:nth-child(1) {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    animation: rotate 30s linear infinite;
}

.tech-circle:nth-child(2) {
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    animation: rotate 20s linear infinite reverse;
}

.tech-circle:nth-child(3) {
    top: 40%;
    right: 20%;
    width: 100px;
    height: 100px;
    animation: rotate 15s linear infinite;
}

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

/* Comparison Section */
.comparison-section {
    padding: 120px 0;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.comparison-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 242, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 204, 0, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.comparison-table-container {
    position: relative;
    margin-top: 60px;
    background-color: rgba(5, 10, 28, 0.7);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.comparison-header {
    display: flex;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.comparison-feature-header {
    width: 30%;
    padding: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-right: 1px solid rgba(0, 242, 255, 0.1);
}

.comparison-product-header {
    display: flex;
    flex: 1;
}

.product-column {
    flex: 1;
    padding: 20px;
    text-align: center;
    position: relative;
}

.product-column.premium {
    background-color: rgba(255, 204, 0, 0.05);
}

.product-column h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.version-tag {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.product-column.premium .version-tag {
    color: var(--accent-color);
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 0 0 5px 5px;
    font-weight: 600;
    letter-spacing: 1px;
}

.comparison-body {
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid rgba(0, 242, 255, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    width: 30%;
    padding: 15px 20px;
    color: #a0a0a0;
    border-right: 1px solid rgba(0, 242, 255, 0.1);
}

.feature-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-value i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-value.negative i {
    color: #ff4757;
}

.product-column.premium .feature-value i {
    color: var(--accent-color);
}

.product-column.premium .feature-value.negative i {
    color: #ff4757;
}

.precision-meter {
    display: flex;
    gap: 3px;
}

.precision-meter span {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.precision-meter span.filled {
    background-color: var(--primary-color);
}

.precision-meter span.half-filled {
    background: linear-gradient(90deg, var(--primary-color) 50%, rgba(255, 255, 255, 0.1) 50%);
}

.product-column.premium .precision-meter span.filled {
    background-color: var(--accent-color);
}

.product-column.premium .precision-meter span.half-filled {
    background: linear-gradient(90deg, var(--accent-color) 50%, rgba(255, 255, 255, 0.1) 50%);
}

.comparison-footer {
    display: flex;
    padding: 20px 0;
}

.comparison-footer .feature-name {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-color);
}

.comparison-footer .product-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.h-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.v-line {
    position: absolute;
    top: 0;
    left: 30%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.v-line.right {
    left: 65%;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.stats-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 242, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(112, 0, 255, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background-color: rgba(5, 10, 28, 0.7);
    border-radius: var(--border-radius);
    padding: 30px;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background-color: rgba(0, 242, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.stat-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.stat-number {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.stat-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-chart {
    width: 150px;
    height: 150px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-linecap: round;
    transform-origin: center;
    transform: rotate(-90deg);
    transition: stroke-dasharray 1s ease;
}

/* Decoración tecnológica */
.tech-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.circuit-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
}

.circuit-line {
    position: absolute;
    background-color: rgba(0, 242, 255, 0.1);
    border-radius: 20px;
}

.circuit-line:nth-child(1) {
    top: 20%;
    right: 50px;
    width: 200px;
    height: 2px;
}

.circuit-line:nth-child(2) {
    top: 20%;
    right: 50px;
    width: 2px;
    height: 200px;
}

.circuit-line:nth-child(3) {
    top: calc(20% + 200px);
    right: 50px;
    width: 100px;
    height: 2px;
}

/* Media queries para responsividad */
@media (max-width: 1200px) {
    .stats-grid {
        justify-content: center;
    }
    
    .stat-card {
        min-width: 200px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 320px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(0, 242, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(112, 0, 255, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: rgba(5, 10, 28, 0.7);
    border-radius: var(--border-radius);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.testimonial-author {
    flex: 1;
}

.testimonial-author h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.author-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-decoration {
    position: relative;
    margin-top: 20px;
}

.quote-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    transition: var(--transition);
}

.testimonial-card:hover .quote-icon {
    opacity: 0.4;
    transform: translateY(-5px);
}

.tech-dots {
    position: absolute;
    bottom: 5px;
    left: 0;
    display: flex;
    gap: 5px;
}

.tech-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.tech-dots span:nth-child(1) {
    animation: pulse-dot 2s infinite;
}

.tech-dots span:nth-child(2) {
    animation: pulse-dot 2s infinite 0.3s;
}

.tech-dots span:nth-child(3) {
    animation: pulse-dot 2s infinite 0.6s;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.faq-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 242, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(112, 0, 255, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    background-color: rgba(5, 10, 28, 0.7);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.question-icon {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 15px;
    background-color: rgba(0, 242, 255, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
    color: var(--text-color);
}

.toggle-icon {
    margin-left: 15px;
    color: var(--primary-color);
    transition: var(--transition);
}

.toggle-icon i {
    font-size: 1rem;
}

.toggle-icon .fa-minus {
    display: none;
}

.faq-item.active .toggle-icon .fa-plus {
    display: none;
}

.faq-item.active .toggle-icon .fa-minus {
    display: block;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in, padding 0.5s ease-in;
    padding-top: 0;
    padding-bottom: 20px;
}

.answer-icon {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 15px;
    background-color: rgba(255, 204, 0, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-answer p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.tech-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.tech-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.circuit-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
}

.circuit-line {
    position: absolute;
    background-color: rgba(0, 242, 255, 0.1);
    border-radius: 20px;
}

.circuit-line:nth-child(1) {
    top: 20%;
    right: 50px;
    width: 200px;
    height: 2px;
}

.circuit-line:nth-child(2) {
    top: 20%;
    right: 50px;
    width: 2px;
    height: 200px;
}

.circuit-line:nth-child(3) {
    top: calc(20% + 200px);
    right: 50px;
    width: 100px;
    height: 2px;
}

/* Efectos visuales adicionales para la sección de FAQ */
.tech-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.question-icon, .answer-icon {
    position: relative;
}

.question-icon:after, .answer-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.question-icon:after {
    background-color: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.answer-icon:after {
    background-color: rgba(255, 204, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    display: flex;
    align-items: flex-start;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgba(0, 255, 242, 0.1);
    border-radius: 30px;
}

.guarantee i {
    color: var(--primary-color);
}

.guarantee span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a0a0a0;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 255, 242, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .product-container {
        flex-direction: column;
    }
    
    .product-container.reverse {
        flex-direction: column;
    }
    
    .product-image-container {
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(5, 13, 26, 0.95);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-item {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
    }
}
