/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    height: 100vh;
}

/* Canvas de Three.js */
#spiral-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Overlay de contenido */
.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin-top: 60px;
}

/* Secciones */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
    position: relative;
    width: 100%;
    visibility: hidden;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Sección 0: Hero */
#section-0 {
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.subtitle {
    font-size: 1.5rem;
    color: #a8a8a8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.spiral-interaction {
    margin-top: 3rem;
}

.spiral-hint {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.journey-btn {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.journey-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Contenido de secciones */
.section-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #a8a8a8;
    font-weight: 300;
}

/* Grid de contenido */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Panel de sabiduría */
.wisdom-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wisdom-panel h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.wisdom-panel p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.point h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.point p {
    color: #a8a8a8;
    font-size: 0.95rem;
    margin: 0;
}

/* Pozo de preguntas */
.question-well {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.question-well h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.question-well p {
    color: #a8a8a8;
    margin-bottom: 2rem;
}

.question-well textarea {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.question-well textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.question-well textarea::placeholder {
    color: #666;
}

.submit-btn {
    background: rgba(102, 126, 234, 0.3);
    border: 1px solid #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
    margin-bottom: 2rem;
}

.submit-btn:hover {
    background: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.questions-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-bubble {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    animation: float 4s ease-in-out infinite;
    position: relative;
}

.question-bubble:nth-child(2) { animation-delay: 1s; }
.question-bubble:nth-child(3) { animation-delay: 2s; }
.question-bubble:nth-child(4) { animation-delay: 3s; }

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

/* NUEVA SECCIÓN 2: Filosófica y Poética */
.philosophical-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.wisdom-quote {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.wisdom-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
}

.quote-text {
    font-size: 1.5rem;
    color: #d0d0d0;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-author {
    color: #667eea;
    font-size: 1rem;
    font-weight: 500;
}

.creation-narrative {
    max-width: 800px;
    margin: 0 auto;
}

.creation-narrative h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.creation-narrative p {
    font-size: 1.2rem;
    color: #a8a8a8;
    line-height: 1.8;
    font-weight: 300;
}

/* Hilos en la Espiral */
.spiral-threads {
    margin-bottom: 4rem;
}

.threads-title {
    font-size: 2.5rem;
    color: #667eea;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
}

.threads-subtitle {
    text-align: center;
    color: #a8a8a8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.threads-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.thread-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.thread-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.thread-item:hover::before {
    left: 100%;
}

.thread-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.thread-visual {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.thread-spiral {
    width: 100%;
    height: 100%;
    border: 2px solid #667eea;
    border-radius: 50%;
    position: relative;
    animation: rotate 10s linear infinite;
}

.thread-spiral::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid #667eea;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 8s linear infinite reverse;
}

.thread-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

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

.thread-content {
    flex: 1;
}

.thread-content h4 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.thread-description {
    color: #a8a8a8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.thread-journey {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.journey-step {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.journey-arrow {
    color: #667eea;
    font-size: 1.2rem;
    font-weight: bold;
}

.thread-seed {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a8a8a8;
    font-size: 0.9rem;
    font-style: italic;
}

.seed-icon {
    font-size: 1.2rem;
}

/* Constelaciones de Servicios */
.constellation-services {
    margin-bottom: 4rem;
}

.constellation-title {
    font-size: 2.5rem;
    color: #667eea;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
}

.constellation-subtitle {
    text-align: center;
    color: #a8a8a8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.constellation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.constellation-service {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.constellation-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.constellation-service:hover::before {
    left: 100%;
}

.constellation-service:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-star {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.constellation-service h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.constellation-service p {
    color: #a8a8a8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-price {
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
}

/* Reflexión Final */
.final-reflection {
    margin-bottom: 4rem;
    text-align: center;
}

.reflection-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.reflection-content h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.reflection-content p {
    font-size: 1.2rem;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.reflection-quote {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.reflection-quote p {
    font-size: 1.3rem;
    color: #667eea;
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

/* Constelaciones */
.constellation-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.constellation-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
}

.constellation-btn.active,
.constellation-btn:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: #667eea;
    transform: translateY(-2px);
}

.constellation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.star-article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.star-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.star-article:hover::before {
    left: 100%;
}

.star-article:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.star-visual {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: twinkle 2s ease-in-out infinite;
}

.star-article h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.star-article p {
    color: #a8a8a8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-time {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Acciones de sección */
.section-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border: none;
    font-size: 1rem;
}

.cta-button.primary {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Navegación Aikoru */
.aikoru-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 10, 10, 0.8);
    padding: 20px 15px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-indicator {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot.active {
    background: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.nav-dot:hover {
    transform: scale(1.2);
    background: rgba(102, 126, 234, 0.3);
}

.nav-labels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aikoru-nav:hover .nav-labels {
    opacity: 1;
}

.nav-label {
    font-size: 0.8rem;
    color: #a8a8a8;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-label.active {
    color: #667eea;
}

.nav-label:hover {
    transform: scale(1.2);
    background: rgba(102, 126, 234, 0.3);
}

/* Botón de contacto flotante */
.contact-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Modales */
.contact-modal,
.service-modal,
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-modal.active,
.service-modal.active,
.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contact-modal.active .modal-content,
.service-modal.active .modal-content,
.project-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 300;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Formulario de contacto */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #a8a8a8;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select option {
    background: #1a1a2e;
    color: white;
}

.submit-contact {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Detalles del proyecto */
.project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-journey h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.journey-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #667eea;
}

.journey-step h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.journey-step p {
    color: #a8a8a8;
    font-size: 0.9rem;
}

.project-description {
    color: #d0d0d0;
    line-height: 1.8;
}

/* Detalles del servicio */
.service-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-info h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-info p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features-list li {
    color: #a8a8a8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.service-pricing {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-pricing h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.price-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-option h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.price-option .price {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.price-option .duration {
    color: #a8a8a8;
    font-size: 0.9rem;
}

.modal-actions {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thread-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .thread-journey {
        justify-content: center;
    }
    
    .constellation-grid {
        grid-template-columns: 1fr;
    }
    
    .section-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .aikoru-nav {
        right: 1rem;
    }
    
    .contact-fab {
        bottom: 1rem;
        right: 1rem;
    }
    
    .project-details,
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Utilidades */
.hidden {
    display: none !important;
}

/* Scrollbar personalizada */
.content-overlay::-webkit-scrollbar {
    width: 8px;
}

.content-overlay::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.content-overlay::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 4px;
}

.content-overlay::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

/* Herramientas de Valor y Conversión */

/* Contenedor de herramienta de valor en la sección inicial */
.value-tool-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    transition: all 0.3s ease;
}

.value-tool-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.quick-assessment h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.quick-assessment p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.assessment-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.assessment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
}

/* Calculadora de Ética Digital */
.interactive-tool {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.interactive-tool h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.interactive-tool p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.ethics-calculator {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calculator-question {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calculator-question label {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}

.calculator-question select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 0.8rem;
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.calculator-question select option {
    background: #1a1a1a;
    color: #fff;
}

.calculate-btn {
    background: linear-gradient(45deg, #2196F3, #1976D2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

.ethics-result {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.score-display {
    text-align: center;
    margin-bottom: 2rem;
}

.score-display h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.score-bar {
    width: 100%;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.score-fill {
    height: 100%;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    transition: width 1s ease;
    border-radius: 10px;
}

.ethics-recommendations {
    margin: 1.5rem 0;
}

.ethics-recommendations h5 {
    color: #fff;
    margin-bottom: 1rem;
}

.ethics-recommendations ul {
    color: rgba(255,255,255,0.8);
    padding-left: 1.5rem;
}

.ethics-recommendations li {
    margin-bottom: 0.5rem;
}

.get-report-btn {
    background: linear-gradient(45deg, #FF9800, #F57C00);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.get-report-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

/* Simulador de ROI */
.roi-simulator {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.roi-simulator h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.roi-simulator p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.simulator-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.simulator-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.simulator-input label {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.simulator-input input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 0.8rem;
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.simulator-input input::placeholder {
    color: rgba(255,255,255,0.5);
}

.simulate-btn {
    background: linear-gradient(45deg, #9C27B0, #7B1FA2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.simulate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
}

.roi-results {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.roi-chart {
    margin-bottom: 2rem;
    height: 300px;
}

.roi-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.metric h4 {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    color: #4CAF50;
    font-size: 1.8rem;
    font-weight: 700;
}

.get-detailed-analysis {
    background: linear-gradient(45deg, #E91E63, #C2185B);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.get-detailed-analysis:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

/* Bonos en servicios */
.service-bonus {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Biblioteca de Recursos */
.resource-library {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.resource-library h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.resource-library p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.resource-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.3);
}

.resource-item.premium {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.05));
    border-color: rgba(255,215,0,0.3);
}

.resource-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.resource-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.resource-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.resource-type {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Botones de artículos */
.read-article {
    background: linear-gradient(45deg, #2196F3, #1976D2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.read-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

/* Modal de Diagnóstico */
.assessment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.assessment-modal .modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,0.2);
}

.assessment-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.progress-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.assessment-question {
    margin-bottom: 2rem;
}

.assessment-question h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.assessment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.assessment-option {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.assessment-option:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.assessment-option.selected {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border-color: #4CAF50;
}

.assessment-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.2);
}

.nav-btn.primary {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border-color: #4CAF50;
}

.nav-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Responsive Design para herramientas */
@media (max-width: 768px) {
    .simulator-controls {
        grid-template-columns: 1fr;
    }
    
    .roi-metrics {
        grid-template-columns: 1fr;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .assessment-modal .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .assessment-navigation {
        flex-direction: column;
    }
}

/* Narrativa Unificada y Fases */
.unified-narrative {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.narrative-intro h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.narrative-intro p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.narrative-highlight {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.2rem;
    font-style: italic;
}

.koru-promise {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.koru-promise h4 {
    color: #4CAF50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.koru-promise p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.5;
}

/* Narrativas de Fase */
.phase-narrative {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.phase-narrative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.narrative-content h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.narrative-content > p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.narrative-explanation {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.narrative-explanation p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.narrative-outcome {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.narrative-outcome h4 {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.narrative-outcome p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.narrative-outcome p:last-child {
    margin-bottom: 0;
}

/* Actualización de navegación para reflejar las fases */
.nav-labels .nav-label[data-section="1"] {
    content: "Inmersión";
}

.nav-labels .nav-label[data-section="2"] {
    content: "Creación";
}

/* Responsive para narrativas */
@media (max-width: 768px) {
    .unified-narrative {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .narrative-intro h3 {
        font-size: 1.5rem;
    }
    
    .narrative-intro p {
        font-size: 1rem;
    }
    
    .phase-narrative {
        padding: 2rem;
        margin: 1.5rem 0;
    }
    
    .narrative-content h3 {
        font-size: 1.4rem;
    }
    
    .narrative-content > p {
        font-size: 1rem;
    }
}

/* Navegación Rápida */
.quick-nav {
    position: relative;
    margin-left: 20px;
}

.quick-nav-toggle {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-nav-toggle:hover {
    background: rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.quick-nav-menu {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.quick-nav:hover .quick-nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.quick-nav-item:last-child {
    margin-bottom: 0;
}

.quick-nav-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.quick-icon {
    font-size: 18px;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.quick-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    flex: 1;
}

.keyboard-shortcut {
    background: rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    min-width: 16px;
    text-align: center;
}

.shortcuts-divider {
    height: 1px;
    background: rgba(102, 126, 234, 0.3);
    margin: 10px 0;
}

.shortcuts-info {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px;
    font-style: italic;
}

/* Indicador de navegación rápida en la esquina */
.quick-nav-indicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.quick-nav-indicator:hover {
    opacity: 1;
}

.quick-nav-indicator strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Botón de acceso rápido flotante */
.floating-quick-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(102, 126, 234, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.floating-quick-nav:hover {
    transform: scale(1.1);
    background: rgba(102, 126, 234, 1);
}

.floating-quick-nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 15px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-quick-nav:hover .floating-quick-nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-quick-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.floating-quick-nav-item:hover {
    background: rgba(102, 126, 234, 0.2);
    color: white;
}

.floating-quick-nav-item .quick-icon {
    font-size: 20px;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.floating-quick-nav-item .quick-text {
    font-weight: 500;
    font-size: 14px;
    flex: 1;
}

/* Barra de navegación rápida superior */
.top-quick-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid rgba(102, 126, 234, 0.5);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.quick-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.quick-nav-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.quick-nav-btn {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 25px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.quick-nav-btn:hover {
    background: rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.quick-nav-btn.active {
    background: rgba(102, 126, 234, 0.6);
    border-color: rgba(102, 126, 234, 0.8);
    color: white;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

.btn-icon {
    font-size: 16px;
}

.btn-text {
    font-weight: 500;
}

/* Ajustar el contenido para la barra superior */
.content-overlay {
    margin-top: 60px;
}

/* Hacer la navegación lateral más visible */
.aikoru-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 10, 10, 0.8);
    padding: 20px 15px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Eliminar elementos que no funcionan bien */
.floating-quick-nav,
.quick-nav-indicator {
    display: none;
}

/* Laboratorio de Ideas */
.idea-laboratory {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.idea-laboratory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(102,126,234,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(118,75,162,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(102,126,234,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.idea-laboratory h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.idea-laboratory p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.lab-experiments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.experiment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experiment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.experiment-card:hover::before {
    left: 100%;
}

.experiment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.experiment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.experiment-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.experiment-card p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.experiment-time {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.lab-results {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(15px);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
}

.result-header h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin: 0;
}

.close-results {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-results:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.result-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.share-results {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.share-results:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Animaciones para el laboratorio */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive para el laboratorio */
@media (max-width: 768px) {
    .lab-experiments {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .experiment-card {
        padding: 1rem;
    }
    
    .idea-laboratory {
        padding: 1.5rem;
    }
} 