/* Accordion "in stile Webflow" */

.accordion {
    cursor: pointer;
    width: 100%;
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    outline: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    border-radius: 10px;
    padding: 1em 1.5em;
    margin: 1.5em 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}
.accordion:hover {
    background: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.accordion.active {
    background: #f1f1f1;
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.accordion::after {
    content: "▾";
    float: right;
    font-size: 1em;
    color: #666;
    transition: transform 0.3s ease;
}
.accordion.active::after {
    transform: rotate(180deg);
}

/* Contenuto interno */
.accordion-panel {
    padding: 0 1.5em;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-left: 2px solid #eee;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion.active + .accordion-panel {
    padding-top: 1em;
    padding-bottom: 1em;
}

/* Webflow fix */
.w-webflow-badge>img { display: none; }

/* Responsive */
@media (max-width: 479px) {
    html.w-mod-js:not(.w-mod-ix) [data-w-id="6968ac03-371e-494c-e0e9-3ac078b0de45"],
    html.w-mod-js:not(.w-mod-ix) [data-w-id="6c8de374-4931-126b-7fe8-085149d90937"] {
        opacity: 0;
    }
}
