/* --- SIV INFORMATICA: CONFIGURAZIONE GRAFICA DEFINITIVA (ARIAL) --- */

/* 1. CONFIGURAZIONE BASE */
body { 
    font-family: Arial, Helvetica, sans-serif; 
    background-color: #f8fafc; 
    color: #0d1b3e;
}

/* Header Principale: Bianco e Pulito */
header.header { 
    background: #ffffff !important; 
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    padding: 15px 0;
}

/* --- TITOLO AZIENDALE E INTESTAZIONI IN ARIAL --- */
.container-nav .h1, 
header.header h1, 
.navbar-brand h3,
h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif !important; 
    letter-spacing: normal; /* Rimuoviamo la spaziatura larga del font precedente */
    font-weight: bold;
    color: #0d1b3e !important;
}

/* Testo Stile Tecnico per dettagli specifici (manteniamo l'effetto terminale) */
.tech-text {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #1e88e5;
    letter-spacing: 0.5px;
}

/* Moduli ultra-arrotondati (32px) */
.rounded-card {
    border-radius: 32px !important;
    border: 1px solid #e2e8f0 !important;
    background-color: #ffffff;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.rounded-card:hover {
    transform: translateY(-5px);
    border-color: #1e88e5 !important;
}

/* --- LOGO --- */
.container-logo-pc {
    display: inline-flex;
    margin-right: 15px;
    animation: pc-float 3s infinite ease-in-out;
    border: none !important; 
    background: transparent !important; 
    padding: 0 !important;
}
@keyframes pc-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(2deg); }
}

/* PULSANTE BLU 3D CON SCRITTA BIANCA */
.btn-3d-blue {
    background: linear-gradient(180deg, #1e88e5 0%, #0d47a1 100%) !important;
    color: #ffffff !important; 
    padding: 16px 40px;
    border-radius: 50px !important;
    border: none !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    box-shadow: 0 6px 0 #08306b, 0 12px 25px rgba(13, 71, 161, 0.3) !important;
    transition: all 0.15s ease;
    cursor: pointer;
}
.btn-3d-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #08306b, 0 15px 30px rgba(13, 71, 161, 0.4) !important; }
.btn-3d-blue:active { transform: translateY(4px) !important; box-shadow: 0 2px 0 #08306b, 0 5px 10px rgba(13, 71, 161, 0.2) !important; }

/* TARIFFARIO (stile scuro) */
.pricing-header {
    background: #0d1b3e !important;
    color: #ffd600 !important; 
    padding: 25px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}