* {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: Arial, Helvetica, sans-serif;
            /* Stile tabella griglia fatture */
            }
            body {
                font-family: Arial, sans-serif;
                margin: 0;
                line-height: 1.6;
                background:
        linear-gradient(
            to bottom,
            rgba(255, 165, 0, 0.30) 0%,
            rgba(255, 165, 0, 0.15) 25%,
            rgba(200, 200, 200, 0.10) 45%,
            rgba(255, 255, 255, 0) 65%
        ),
        #ffffff;
} 
            /* BLOCCA LO SCROLL QUANDO IL MENU MOBILE È APERTO */
            body.menu-open {
                overflow: hidden;
            }
            h1 {
                font-size: clamp(24px, 5vw, 40px);
                margin-bottom: 30px;
                color: #ffa500;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 30px;
                color: #333;
            }
            .testo-centrato {
                text-align: center;
            }
            .testo-destra {
                text-align: right;
            }
            .testo-sinistra {
                text-align: left;
            }
            .testo-giustificato {
                text-align: justify;
            }
            .testo-piccolo {
                font-size: 0.8em; /* 80% della dimensione del paragrafo */
            }
            .btn {
                display: inline-block;
                padding: 12px 30px;
                background-color: #ffa500;
                color: #000;
                text-decoration: none;
                font-weight: bold;
                border-radius: 5px;
                transition: background-color 0.3s ease;
            }
            .btn-menu:hover, .btn:hover {
                background-color: rgba(255, 165, 0, 0.7);
                backdrop-filter: blur(4px);
                transform: translateY(-2px); /* Piccolo sollevamento estetico */
            }
            .btn-menu {
                padding: 12px 30px;
                color: #000;
                text-decoration: none;
                font-weight: bold;
                border-radius: 8px;
                transition: all 0.3s ease; /* prima era background-color ora è all */
                width: 200px; /* Larghezza fissa */
                height: 60px; /* Altezza fissa */
                display: flex;            /* Attiva Flexbox */
                align-items: center;      /* Centra verticalmente */
                justify-content: center;   /* Centra orizzontalmente */
                text-align: center;       /* Sicurezza per testi su più righe */
                /* EFFETTO SFOCATO */
                background-color: rgba(255, 165, 0, 0.8); /* Arancione molto trasparente */
                backdrop-filter: blur(8px);               /* Intensità della sfocatura */
                -webkit-backdrop-filter: blur(8px);        /* Compatibilità Safari */
                /* Bordo sottile per definire meglio il tasto */
                border: 1px solid rgba(255, 255, 255, 0.3);
            }
            .btn-menu:hover {
                background-color: #ffb733;
            }
            /* Mostra il pulsante Area Clienti solo su mobile */
            .btn-area-mobile {
                display: none;
            }
            @media (max-width: 900px) {
                .btn-area-mobile {
                    display: flex !important;
                }
                    .btn-area-desktop {
                        display: none !important;
                    }
            }
                @media (min-width: 901px) {
                    .btn-area-desktop {
                        display: flex !important;
                    }
                }
            .btn-accedi {
                display: inline-block;
                padding: 10px 20px;
                background-color: #ffa500;
                color: #000;
                text-decoration: none;
                font-weight: bold;
                border-radius: 5px;
                transition: background-color 0.3s ease, transform 0.3s ease;
                font-size: 0.95rem;
            }
            .btn-accedi:hover {
                background-color: rgba(255, 165, 0, 0.8);
                transform: translateY(-2px);
            }
            .contact-form {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }
            .contact-form input,
            .contact-form textarea {
                padding: 10px;
                font-size: 1rem;
                border: 1px solid #ccc;
                border-radius: 5px;
            }
            .contact-form textarea {
                resize: none;
                height: 120px;
            }
            .contact-form button {
                cursor: pointer;
                border: none;
            }
            .img-edificio {
                display: block;    /* Permette di usare i margini per centrare */
                margin: 0 auto;    /* Centra l'immagine orizzontalmente */
                width: 30%;        /* È la riduzione del 40% che hai chiesto (100% - 40%) */
                height: auto;      /* Mantiene le proporzioni */
            }
            .logo-top {
                position: static;
                width: clamp(120px, 25vw, 200px);
                max-width: 100%;
                transition: width 0.3s ease;
            }
            .footer {
                margin-top: 80px;
                padding: 20px 15px;
                background-color: #f5f5f5;
                text-align: center;
                font-size: 0.5rem; /* CARATTERI PICCOLI */
                color: #555;
                border-top: 1px solid #ddd;
                line-height: 1.4;
            }
            .footer p {
                margin-bottom: 4px;
            }
            header.sticky-header {
                position: relative;
                width: 100%;
                background:
                linear-gradient(
                to bottom,
                rgba(255, 165, 0, 0.45) 0%,
                rgba(255, 165, 0, 0.25) 35%,
                rgba(255, 255, 255, 0) 100%
                );
            }
            header.sticky-header h1 {
                color: #333;
            }
            header.sticky-header img {
                filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
            }
            header.sticky-header {
                padding-bottom: 20px;
            }           
            header.sticky-header .header-inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: clamp(8px, 1.5vw, 16px) 20px;
                transition: padding 0.3s ease;
            }
html {
    scroll-behavior: smooth;
}
            .hamburger {
                background:
                linear-gradient(
                to bottom,
                rgba(255, 165, 0, 0.45) 0%,
                rgba(255, 165, 0, 0.25) 35%,
                rgba(255, 255, 255, 0) 100%
                );
                border-radius: 8px;
                padding: 8px 10px;
                border: none;
                cursor: pointer;
            }
            .hamburger:hover {
                background:
                linear-gradient(
                to bottom,
                rgba(255, 165, 0, 0.55) 0%,
                rgba(255, 165, 0, 0.30) 35%,
                rgba(255, 255, 255, 0) 100%
                );
            }
            .hamburger .icon {
                width: 28px;
                height: 28px;
                stroke: #333;
                stroke-width: 2.5;
                fill: none;
                transition: stroke 0.2s ease;
            }
            .icon-close {
                display: none;
            }
            body.menu-open .icon-hamburger {
                display: none;
            }
            body.menu-open .icon-close {
                display: block;
            }
            .sticky-header h1 {
                font-size: clamp(16px, 3.5vw, 22px);
                margin: 0;
                color: #ffa500;
                text-align: left;
                transition: width 0.3s ease;
            }
            /* Layout centrale */
            .layout {
                display: grid;
                grid-template-columns: 1fr;
            }
            @media (min-width: 768px) {
                .layout {
                    grid-template-columns: 250px 1fr;
                }
            }
            .lista-servizi {
                list-style-type: disc; /* Forma del punto (disc, circle, square) */
                margin: 20px 0;
                padding-left: 40px;
                color: #333; /* Colore del testo */
            }
            .lista-servizi li {
                margin-bottom: 15px; /* Spazio tra un punto e l'altro */
            }
            /* Bonus: cambiare solo il colore del "pallino" */
            .lista-servizi li::marker {
                color: #ffa500; /* Il tuo colore arancione */
                font-size: 1.2em;
            }
            /* Menu laterale */
            .menu {
    /* Mantiene il menu ancorato alla cima durante lo scroll */
    position: -webkit-sticky; /* Supporto per Safari */
    position: sticky;
    top: 80px; /* Regola questo valore in base all'altezza della tua header */
    
    /* Altezza massima per evitare che il menu superi lo schermo se troppo lungo */
    height: fit-content; 
    
    /* Assicurati che non ci siano overflow che blocchino lo sticky */
    align-self: start; 
}
            /* Contenuti */
            .content {
                padding: 24px;
                font-weight: normal;
                line-height: 1.6;
            }
            .content p {
                margin-bottom: 24px;
            }
            .griglia-3col {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
                padding: 30px 24px;
            }
            /* HAMBURGER */
            .hamburger {
                display: none;
                font-size: 26px;
                background: none;
                border: none;
                cursor: pointer;
                margin-left: auto; /* forza a destra */
            }
            /* MOBILE */
            @media (max-width: 767px) {
                .hamburger {
                    display: block;
                }
                .menu {
                    position: fixed;
                    top: 70px; /* altezza header */
                    left: 0;
                    width: 100%;
                    height: calc(100vh - 70px);
                    background: rgba(255, 255, 255, 0.3); 
                    backdrop-filter: blur(1px); /* Sfoca ciò che sta dietro */
                    -webkit-backdrop-filter: blur(1px); /* Per compatibilità Safari */
                    transform: translateX(-100%);
                    transition: transform 0.3s ease;
                    z-index: 999;
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                }
                .menu.open {
                    transform: translateX(0);
                }
            }
 

/* Classe che attiva la visualizzazione */
.sezione-visibile {
    display: block;
    opacity: 1;
    animation: comparsaArancione 0.8s ease-out;
}

@keyframes comparsaArancione {
    0% { color: #ffa500; transform: translateY(10px); }
    100% { color: inherit; transform: translateY(0); }
}
/* Stato iniziale: l'elemento è nascosto e trasparente */
/* Stato iniziale: invisibile ma occupa spazio (o lo limitiamo) */
.sezione-nascosta {
    display: none;
    opacity: 0;
    /* Parte piccolo, inclinato e sfuocato */
    transform: scale(0.8) translateY(50px) rotateX(-15deg);
    filter: blur(10px);
    transition: 
        opacity 0.8s ease-out, 
        transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), /* Effetto molla */
        filter 0.8s ease-out;
    perspective: 1000px; /* Necessario per l'effetto 3D */
}

.sezione-nascosta.sezione-visibile {
    display: block;
    opacity: 1;
    transform: scale(1) translateY(0) rotateX(0deg);
    filter: blur(0);
}

/* Contenitore pagina di ringraziamento */
.container-grazie {
    max-width: 600px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}
                white-space: nowrap;

/* Stile tabella griglia fatture */
table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    white-space: nowrap;
}
.riassunto-fatture-table th,
.riassunto-fatture-table td {
    border: none;
}
.riassunto-fatture-table tr:hover {
    background: transparent;
}
table th {
    background: #ffa500;
    color: #fff;
    font-weight: bold;
}
table tr:nth-child(even) {
    background: #f9f9f9;
}
table tr:hover {
    background: #ffe5b4;
}