/* ========================================
   ESTILOS TEMPORALES PARA LISTA DE ESPERA
   ========================================
   
   INSTRUCCIONES:
   - Este archivo contiene ÚNICAMENTE los estilos para la sección de lista de espera
   - Para reactivar la sección download original:
     1. Eliminar este archivo (waitlist-styles.css)
     2. Remover el <link> a este archivo del HTML
     3. Descomentar la sección #download en index.html
     4. Comentar o eliminar la sección #waitlist
   
   ======================================== */

/* Sección principal de lista de espera */
.waitlist-section {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, #0a1515 100%);
    color: var(--light-text);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

/* Título principal */
.waitlist-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* Call to Action */
.waitlist-cta {
    margin-bottom: 50px;
}

.waitlist-btn {
    background: linear-gradient(135deg, var(--primary-color), #9FE555);
    color: var(--tertiary-color);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 20px;
    transform: translateZ(0);
}

.waitlist-btn:hover {
    background: linear-gradient(135deg, #9FE555, var(--primary-color));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(178, 250, 99, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: var(--tertiary-color);
}

.waitlist-features {
    color: rgba(250, 250, 250, 0.8);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

/* Sección de apps próximamente */
.coming-soon-apps {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.apps-text {
    color: rgba(250, 250, 250, 0.7);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.apps-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.app-badge-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.app-badge-preview:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.badge-icon-preview {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.app-badge-preview span {
    color: var(--light-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.launch-info {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN PARA LISTA DE ESPERA
   ======================================== */

@media (max-width: 768px) {
    .waitlist-section {
        padding: 60px 0;
    }
    
    .waitlist-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .waitlist-btn {
        padding: 18px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
    }
    
    .apps-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .app-badge-preview {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .waitlist-title {
        font-size: 1.8rem;
    }
    
    .waitlist-btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
}
