
/* APP Service - layout base */
.app-service {
    margin-bottom: 20px;
}
.app-service-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.app-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.app-service-cols-3 .app-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.app-service-cols-4 .app-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.app-service-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,.35);
    text-decoration: none;
    font-size: 0.9rem;
    transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.app-service-item:hover {
    border-color: rgba(79,70,229,.6);
    box-shadow: 0 8px 22px rgba(15,23,42,.10);
    transform: translateY(-1px);
}
.app-service-icon {
    margin-right: 8px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.app-service-icon-fallback {
    font-size: 1.1em;
}
.app-service-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.app-service-label {
    font-weight: 600;
    margin-bottom: 2px;
}
.app-service-subtitle {
    font-size: 0.8rem;
    opacity: .85;
}

/* Documenti Download */
.app-service-documents {
    margin-bottom: 20px;
}
.app-service-documents-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.app-service-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.app-service-doc-item + .app-service-doc-item {
    margin-top: 6px;
}
.app-service-doc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 10px;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,.25);
    font-size: 0.9rem;
}
.app-service-doc-link:hover {
    border-color: rgba(79,70,229,.6);
    box-shadow: 0 6px 18px rgba(15,23,42,.08);
}
.app-service-doc-icon {
    font-size: 1.1rem;
}
.app-service-doc-title {
    font-weight: 600;
}
.app-service-doc-meta {
    display: inline-flex;
    gap: 6px;
    margin-left: 4px;
    font-size: 0.78rem;
    opacity: .8;
}

/* Contatti rapidi */
.app-service-contacts-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.app-service-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(148,163,184,.5);
    background: #ffffff;
}
.app-service-contact-phone { color: #111827; }
.app-service-contact-whatsapp { color: #16a34a; }
.app-service-contact-email { color: #1d4ed8; }
.app-service-contact-custom { color: #6b21a8; }
.app-service-contact-button:hover {
    box-shadow: 0 6px 18px rgba(15,23,42,.09);
}
.app-service-contact-icon {
    font-size: 1rem;
}

/* Statistiche */
.app-service-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.app-service-stats-item {
    min-width: 90px;
    padding: 8px 10px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,.4);
}
.app-service-stats-value {
    font-size: 1.3rem;
    font-weight: 700;
}
.app-service-stats-suffix {
    margin-left: 2px;
}
.app-service-stats-label {
    font-size: 0.8rem;
    opacity: .85;
}

/* Notifica breve */
.app-service-notice {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.app-service-notice-info {
    background: #e0f2fe;
    color: #0f172a;
}
.app-service-notice-warning {
    background: #fef3c7;
    color: #78350f;
}
.app-service-notice-danger {
    background: #fee2e2;
    color: #7f1d1d;
}
.app-service-notice-link {
    text-decoration: none;
    color: inherit;
}
