/* Aplicaciones specific styles */

.app-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(10, 66, 127, 0.08);
    box-shadow: 0 10px 30px rgba(10, 66, 127, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 66, 127, 0.12);
}

.app-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.app-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.app-card i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.app-card:hover i {
    transform: scale(1.1);
}
