* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f6fbff;
}

.home-app {
    max-width: 430px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 28px 22px;
    background: linear-gradient(180deg, #f8fdff, #fffaf0);
}

.home-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.logo-mini {
    font-size: 26px;
    font-weight: 900;
    color: #0b2f6b;
}

.logo-mini span {
    color: #ff5f96;
}

.btn-config {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

.menu-principal {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-card {
    height: 92px;
    border-radius: 18px;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 72px 1fr 22px;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    box-shadow: 0 6px 16px rgba(0,0,0,.10);
}

.menu-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.menu-card h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
}

.menu-card p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #333;
}

.menu-card span {
    font-size: 34px;
    font-weight: bold;
}

.card-azul {
    background: #dff3ff;
}

.card-verde {
    background: #dfffe8;
}

.card-rosado {
    background: #ffe3ef;
}

.card-amarillo {
    background: #fff1c7;
}

.card-morado {
    background: #eee3ff;
}