/*
 Theme Name:   Apps Child
 Description:  Tema child do Twenty Twenty-Five com restrição de login e lista de apps
 Template:     twentytwentyfive
 Version:      1.0.0
*/

/* Estilos para a lista de apps */
.apps-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.apps-title {
    text-align: center;
    margin-bottom: 40px;
}

.app-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.3s ease;
}

.app-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.app-info {
    flex: 1;
}

.app-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.app-description {
    color: #666;
    margin: 0 0 12px 0;
}

.app-download {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.app-download:hover {
    background: #764ba2;
}

.app-version {
    font-size: 12px;
    color: #999;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

/* Mensagem de login necessário */
.login-required {
    text-align: center;
    padding: 60px 20px;
}

.login-required h1 {
    margin-bottom: 20px;
}

.login-required a {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}
