/* ==========================================================================
   CALATI MARCO — HERO CHI SIAMO
   File: /templates/travelkit/css/custom.css
   ========================================================================== */


/* ==========================================================================
   1. SEZIONE PRINCIPALE
   ========================================================================== */

.calati-about-hero {
    --calati-blue-dark: #061c32;
    --calati-accent: #30a9d6;
    --calati-accent-hover: #168fc2;
    --calati-white: #ffffff;
    --calati-content-width: 1320px;

    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--calati-blue-dark);
}


/* ==========================================================================
   2. RESET SP PAGE BUILDER
   ========================================================================== */

.calati-about-hero > .sppb-row-container,
.calati-about-hero > .sppb-container-inner,
.calati-about-hero .sppb-row,
.calati-about-hero .sppb-row-column,
.calati-about-hero .sppb-column,
.calati-about-hero .sppb-column-addons,
.calati-about-hero .sppb-addon-wrapper,
.calati-about-hero .sppb-addon,
.calati-about-hero .sppb-addon-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.calati-about-hero .sppb-row {
    margin-right: 0;
    margin-left: 0;
}

.calati-about-hero .sppb-row-column {
    padding-right: 0;
    padding-left: 0;
}


/* ==========================================================================
   3. HERO
   ========================================================================== */

.calati-hero-inner {
    position: relative;
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 760px;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 22, 40, 0.97) 0%,
            rgba(4, 31, 56, 0.88) 28%,
            rgba(5, 39, 69, 0.62) 52%,
            rgba(7, 43, 74, 0.28) 74%,
            rgba(7, 37, 62, 0.10) 100%
        ),
        url("/images/2026/04/02/902b05b7-4875-47fa-9e43-def21acd3e97-1.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* ==========================================================================
   4. OVERLAY
   ========================================================================== */

.calati-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 15, 30, 0.24) 0%,
            rgba(0, 15, 30, 0.02) 50%,
            rgba(0, 15, 30, 0.20) 100%
        );
}


/* ==========================================================================
   5. CONTENUTO
   ========================================================================== */

.calati-hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(520px, 0.95fr)
        minmax(320px, 1.05fr);

    align-items: center;
    gap: 70px;

    width: min(calc(100% - 80px), var(--calati-content-width));
    margin: 0 auto;
    padding: 145px 0 100px;
}


/* ==========================================================================
   6. TESTO
   ========================================================================== */

.calati-hero-copy {
    width: 100%;
    max-width: 670px;
}

.calati-hero-kicker {
    display: block;
    margin: 0 0 18px;

    color: var(--calati-accent);

    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.calati-hero-title {
    margin: 0;

    color: var(--calati-white);

    font-family: Verdana, Arial, sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 0.98;

    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.calati-hero-line {
    display: block;

    width: 52px;
    height: 3px;

    margin: 27px 0 21px;

    background-color: var(--calati-accent);
}

.calati-hero-text {
    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.94);

    font-family: Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}


/* ==========================================================================
   7. BOTTONE CTA
   ========================================================================== */

.calati-hero-button {
    display: inline-flex;
    align-items: stretch;
    justify-content: space-between;

    min-width: 250px;
    min-height: 54px;

    padding: 0;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1px;

    color: var(--calati-white);
    background-color: #087dbd;

    font-family: Verdana, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.015em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.calati-hero-button > span:first-child {
    display: flex;
    align-items: center;
    padding: 0 21px;
}

.calati-hero-button-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    flex: 0 0 50px;

    border-left: 1px solid rgba(255, 255, 255, 0.28);

    font-family: Arial, sans-serif;
    font-size: 23px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.calati-hero-button:hover,
.calati-hero-button:focus {
    color: var(--calati-white);
    background-color: var(--calati-accent-hover);
    border-color: var(--calati-accent-hover);
    text-decoration: none;
    transform: translateY(-2px);
}

.calati-hero-button:hover .calati-hero-button-arrow,
.calati-hero-button:focus .calati-hero-button-arrow {
    transform: translateX(3px);
}


/* ==========================================================================
   8. PLAYER
   ========================================================================== */

.calati-hero-video {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 300px;
}

.calati-video-play {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 112px;
    height: 112px;
    padding: 0;

    border: 2px solid rgba(255, 255, 255, 0.90);
    border-radius: 50%;

    color: var(--calati-white);
    background-color: rgba(2, 27, 49, 0.18);

    box-shadow:
        0 0 0 0 rgba(48, 169, 214, 0.35),
        0 15px 45px rgba(0, 0, 0, 0.15);

    cursor: pointer;

    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.calati-video-play:hover,
.calati-video-play:focus {
    border-color: var(--calati-white);
    background-color: rgba(48, 169, 214, 0.72);

    box-shadow:
        0 0 0 10px rgba(48, 169, 214, 0.14),
        0 18px 50px rgba(0, 0, 0, 0.25);

    transform: scale(1.06);
}

.calati-video-play-icon {
    display: block;

    width: 0;
    height: 0;

    margin-left: 7px;

    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 28px solid var(--calati-white);
}

/* ==========================================================================
   MODALE VIDEO — FIX CHIUSURA E Z-INDEX
   ========================================================================== */

.calati-video-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483000;

    display: none;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;
    padding: 70px 30px 30px;

    overflow-y: auto;

    pointer-events: none;
}

.calati-video-modal.is-open,
.calati-video-modal[aria-hidden="false"] {
    display: flex !important;
    pointer-events: auto;
}

.calati-video-modal[aria-hidden="true"] {
    display: none !important;
}


/* Sfondo scuro */

.calati-video-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;

    background: rgba(0, 13, 27, 0.95);

    cursor: pointer;
    pointer-events: auto;
}


/* Contenitore video */

.calati-video-modal-dialog {
    position: relative;
    z-index: 2;

    width: min(1100px, calc(100vw - 60px));
    margin: auto;

    pointer-events: auto;
}


/* Frame YouTube */

.calati-video-modal-frame {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.calati-video-modal-frame iframe {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* Pulsante chiusura */

.calati-video-modal-close {
    position: absolute;

    top: -56px;
    right: 0;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;

    color: #fff;
    background: #07375d;

    font-family: Arial, sans-serif;
    font-size: 31px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
    pointer-events: auto;

    appearance: none;
    -webkit-appearance: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.calati-video-modal-close:hover,
.calati-video-modal-close:focus {
    color: #fff;
    background: #30a9d6;
    border-color: #30a9d6;

    transform: scale(1.06);
}

.calati-video-modal-close:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 3px;
}


/* Blocco scroll pagina */

body.calati-video-is-open {
    overflow: hidden !important;
}


/* ==========================================================================
   TABLET E MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-video-modal {
        align-items: center;
        padding: 70px 16px 20px;
    }

    .calati-video-modal-dialog {
        width: 100%;
    }

    .calati-video-modal-close {
        top: 54px;
        right: 0;

        width: 44px;
        height: 44px;

        font-size: 29px;
    }
}


/* Schermi bassi */

@media (max-height: 600px) {

    .calati-video-modal {
        align-items: flex-start;
        padding-top: 64px;
    }

    .calati-video-modal-dialog {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .calati-video-modal-close {
        top: -52px;
    }
}


/* ==========================================================================
   10. DESKTOP MEDIO
   ========================================================================== */

@media (max-width: 1399.98px) {

    .calati-hero-content {
        width: min(calc(100% - 70px), 1180px);

        grid-template-columns:
            minmax(500px, 1fr)
            minmax(280px, 0.85fr);

        gap: 55px;
    }

    .calati-hero-title {
        font-size: clamp(42px, 4.2vw, 58px);
    }
}


/* ==========================================================================
   11. TABLET ORIZZONTALE
   ========================================================================== */

@media (max-width: 1199.98px) {

    .calati-hero-inner {
        min-height: 690px;
        background-position: 58% center;
    }

    .calati-hero-content {
        width: min(calc(100% - 56px), 1040px);

        grid-template-columns:
            minmax(450px, 1.1fr)
            minmax(230px, 0.65fr);

        gap: 38px;

        padding: 125px 0 80px;
    }

    .calati-hero-copy {
        max-width: 590px;
    }

    .calati-hero-title {
        font-size: clamp(43px, 5vw, 58px);
    }

    .calati-hero-text {
        font-size: 15px;
    }

    .calati-video-play {
        width: 98px;
        height: 98px;
    }

    .calati-video-play-icon {
        border-top-width: 16px;
        border-bottom-width: 16px;
        border-left-width: 25px;
    }
}


/* ==========================================================================
   12. TABLET VERTICALE
   ========================================================================== */

@media (max-width: 991.98px) {

    .calati-hero-inner {
        min-height: 680px;
        background-position: 62% center;
    }

    .calati-hero-content {
        width: calc(100% - 48px);

        grid-template-columns:
            minmax(400px, 1fr)
            minmax(170px, 0.45fr);

        gap: 24px;

        padding: 115px 0 70px;
    }

    .calati-hero-title {
        font-size: clamp(40px, 5.7vw, 52px);
    }

    .calati-video-play {
        width: 88px;
        height: 88px;
    }

    .calati-video-play-icon {
        border-top-width: 14px;
        border-bottom-width: 14px;
        border-left-width: 22px;
    }
}


/* ==========================================================================
   13. MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-hero-inner {
        min-height: 720px;
        align-items: flex-end;

        background-image:
            linear-gradient(
                180deg,
                rgba(2, 19, 36, 0.13) 0%,
                rgba(2, 19, 36, 0.25) 32%,
                rgba(2, 21, 40, 0.66) 60%,
                rgba(2, 20, 38, 0.96) 82%,
                rgba(2, 20, 38, 1) 100%
            ),
            url("/images/2026/04/02/902b05b7-4875-47fa-9e43-def21acd3e97-1.png");

        background-position: 64% center;
    }

    .calati-hero-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;

        width: calc(100% - 40px);

        gap: 34px;

        padding: 125px 0 42px;
    }

    .calati-hero-copy {
        width: 100%;
        max-width: none;
    }

    .calati-hero-kicker {
        margin-bottom: 13px;

        font-size: 11px;
        letter-spacing: 0.15em;
    }

    .calati-hero-title {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1;
    }

    .calati-hero-line {
        width: 44px;
        height: 2px;

        margin: 20px 0 16px;
    }

    .calati-hero-text {
        margin-bottom: 24px;

        font-size: 15px;
        line-height: 1.5;
    }

    .calati-hero-text br {
        display: none;
    }

    .calati-hero-button {
        width: 100%;
        min-width: 0;
        min-height: 52px;
    }

    .calati-hero-video {
        width: 100%;
        min-height: 0;
        justify-content: center;
    }

    .calati-video-play {
        width: 82px;
        height: 82px;
    }

    .calati-video-play-icon {
        margin-left: 5px;

        border-top-width: 13px;
        border-bottom-width: 13px;
        border-left-width: 21px;
    }

    .calati-video-modal {
        padding: 18px;
    }

    .calati-video-modal-dialog {
        width: 100%;
    }

    .calati-video-modal-close {
        top: -52px;
        right: 0;

        width: 42px;
        height: 42px;

        font-size: 28px;
    }
}


/* ==========================================================================
   14. MOBILE PICCOLO
   ========================================================================== */

@media (max-width: 479.98px) {

    .calati-hero-inner {
        min-height: 690px;
        background-position: 67% center;
    }

    .calati-hero-content {
        width: calc(100% - 32px);

        gap: 28px;

        padding-top: 115px;
        padding-bottom: 34px;
    }

    .calati-hero-title {
        font-size: clamp(33px, 10.5vw, 41px);
    }

    .calati-hero-text {
        font-size: 14px;
    }

    .calati-hero-button {
        font-size: 11px;
    }

    .calati-video-play {
        width: 76px;
        height: 76px;
    }
}
/* ==========================================================================
   CALATI MARCO — SEZIONE STORIA
   Versione con addon SP Page Builder
   ========================================================================== */


/* ==========================================================================
   1. SEZIONE
   ========================================================================== */

.calati-history-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 35%,
            rgba(48, 169, 214, 0.035) 0,
            rgba(48, 169, 214, 0) 34%
        ),
        #ffffff;
}


/* ==========================================================================
   2. CONTENITORE
   ========================================================================== */

.calati-history-section > .sppb-row-container,
.calati-history-section > .sppb-container-inner {
    width: min(calc(100% - 80px), 1320px);
    max-width: 1320px;

    margin-right: auto;
    margin-left: auto;
}


/* ==========================================================================
   3. RIGA
   ========================================================================== */

.calati-history-section .sppb-row {
    align-items: stretch;
}


/* ==========================================================================
   4. COLONNA SINISTRA
   Classe da applicare alla colonna: calati-history-heading
   ========================================================================== */

.calati-history-heading {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 260px;
    padding: 20px 40px 20px 90px;
}


/* ==========================================================================
   5. ANNO DECORATIVO GENERATO DAL CSS
   ========================================================================== */

.calati-history-heading::before {
    content: "1980";

    position: absolute;
    top: 20%;
    left: -6px;
    z-index: 0;

    color: rgba(7, 75, 125, 0.11);

    font-family: Verdana, Arial, sans-serif;
    font-size: clamp(75px, 9vw, 120px);
    font-weight: 700;
    line-height: 0.62;

    letter-spacing: -0.085em;

    transform: translateY(-50%) scaleX(1.12);
    transform-origin: left center;

    user-select: none;
    pointer-events: none;
}


/* ==========================================================================
   6. ADDON HEADING
   Classe da applicare all'addon Heading: calati-history-title
   ========================================================================== */

.calati-history-heading .sppb-addon-wrapper,
.calati-history-heading .sppb-addon,
.calati-history-heading .sppb-addon-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.calati-history-title {
    margin: 0;
}

.calati-history-title .sppb-addon-title,
.calati-history-title h1,
.calati-history-title h2,
.calati-history-title h3 {
    margin: 0;

    color: #07375d;

    font-family: Verdana, Arial, sans-serif;
    font-size: clamp(31px, 2.2vw, 42px);
    font-weight: 700;
    line-height: 1.13;

    letter-spacing: -0.04em;
    text-transform: uppercase;
}


/* ==========================================================================
   7. COLONNA DESTRA
   Classe da applicare alla colonna: calati-history-text-column
   ========================================================================== */

.calati-history-text-column {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 160px;
}


/* ==========================================================================
   8. ADDON TEXT BLOCK
   Classe da applicare all'addon: calati-history-content
   ========================================================================== */

.calati-history-content {
    position: relative;

    width: 100%;
    min-height: 160px;

    padding:
        12px
        20px
        12px
        58px;

    border-left: 3px solid #30a9d6;
}

.calati-history-content .sppb-addon-content {
    width: 100%;
}

.calati-history-content,
.calati-history-content p {
    color: #13273c;

    font-family: Verdana, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.calati-history-content p {
    max-width: 720px;
    margin: 0 0 21px;
}

.calati-history-content p:last-child {
    margin-bottom: 0;
}

.calati-history-content strong {
    color: #071f37;
    font-weight: 700;
}


/* ==========================================================================
   9. DESKTOP MEDIO
   ========================================================================== */

@media (max-width: 1199.98px) {

    .calati-history-section > .sppb-row-container,
    .calati-history-section > .sppb-container-inner {
        width: min(calc(100% - 56px), 1100px);
    }

    .calati-history-heading {
        padding-right: 40px;
        padding-left: 45px;
    }

    .calati-history-heading::before {
        left: -4px;
        font-size: clamp(75px, 9vw, 112px);
    }

    .calati-history-title .sppb-addon-title,
    .calati-history-title h1,
    .calati-history-title h2,
    .calati-history-title h3 {
        font-size: clamp(29px, 2.5vw, 37px);
    }

    .calati-history-content {
        padding-left: 42px;
    }

    .calati-history-content,
    .calati-history-content p {
        font-size: 14px;
    }
}


/* ==========================================================================
   10. TABLET
   ========================================================================== */

@media (max-width: 991.98px) {

    .calati-history-section > .sppb-row-container,
    .calati-history-section > .sppb-container-inner {
        width: calc(100% - 48px);
    }

    .calati-history-heading {
        min-height: 230px;

        padding:
            20px
            28px
            20px
            34px;
    }

    .calati-history-heading::before {
        left: -6px;

        font-size: 105px;

        transform:
            translateY(-50%)
            scaleX(1.10);
    }

    .calati-history-title .sppb-addon-title,
    .calati-history-title h1,
    .calati-history-title h2,
    .calati-history-title h3 {
        font-size: 29px;
    }

    .calati-history-text-column {
        min-height: 230px;
    }

    .calati-history-content {
        min-height: 230px;

        padding:
            8px
            0
            8px
            32px;
    }

    .calati-history-content,
    .calati-history-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* ==========================================================================
   11. MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-history-section > .sppb-row-container,
    .calati-history-section > .sppb-container-inner {
        width: calc(100% - 40px);
    }

    .calati-history-section .sppb-row {
        display: block;
    }

    .calati-history-heading {
        min-height: 190px;

        padding:
            10px
            0
            30px
            24px;
    }

    .calati-history-heading::before {
        top: 45%;
        left: -8px;

        font-size: 98px;

        color: rgba(7, 75, 125, 0.10);

        transform:
            translateY(-50%)
            scaleX(1.08);
    }

    .calati-history-title .sppb-addon-title,
    .calati-history-title h1,
    .calati-history-title h2,
    .calati-history-title h3 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.08;
    }

    .calati-history-text-column {
        display: block;
        min-height: 0;
    }

    .calati-history-content {
        min-height: 0;

        padding:
            30px
            0
            0
            22px;

        border-top: 2px solid #30a9d6;
        border-left: 0;
    }

    .calati-history-content,
    .calati-history-content p {
        max-width: none;

        font-size: 15px;
        line-height: 1.65;
    }

    .calati-history-content p {
        margin-bottom: 20px;
    }
}


/* ==========================================================================
   12. MOBILE PICCOLO
   ========================================================================== */

@media (max-width: 479.98px) {

    .calati-history-section > .sppb-row-container,
    .calati-history-section > .sppb-container-inner {
        width: calc(100% - 32px);
    }

    .calati-history-heading {
        min-height: 175px;
        padding-left: 18px;
    }

    .calati-history-heading::before {
        font-size: 86px;
    }

    .calati-history-title .sppb-addon-title,
    .calati-history-title h1,
    .calati-history-title h2,
    .calati-history-title h3 {
        font-size: 27px;
    }

    .calati-history-content {
        padding-left: 18px;
    }

    .calati-history-content,
    .calati-history-content p {
        font-size: 14px;
    }
}


/* ==========================================================================
   CALATI MARCO — FASCIA CARATTERISTICHE
   ========================================================================== */

.calati-company-features {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #07365f 0%,
            #062b4c 48%,
            #07365f 100%
        );
}

.calati-company-features > .sppb-row-container,
.calati-company-features > .sppb-container-inner {
    width: min(calc(100% - 80px), 1320px);
    max-width: 1320px;
    margin-inline: auto;
}

.calati-company-features > .sppb-row-container > .sppb-row,
.calati-company-features > .sppb-container-inner > .sppb-row {
    align-items: stretch;
}

/* Colonne principali */

.calati-company-features .calati-feature-column {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 110px;
    padding: 8px 34px;
}

.calati-company-features .calati-feature-column:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;

    width: 1px;

    background: rgba(48, 169, 214, 0.65);
}

/* Riga interna */

.calati-company-features .calati-feature-column > .sppb-column-addons,
.calati-company-features .calati-feature-column .sppb-inner-row {
    width: 100%;
}

.calati-company-features .calati-feature-column .sppb-row {
    align-items: center;
}

/* Icona */

.calati-feature-icon-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calati-feature-icon {
    margin: 0 !important;
    text-align: center;
}

.calati-feature-icon i,
.calati-feature-icon svg {
    color: #fff;
    fill: none;
    font-size: 46px;
}

/* Testi */

.calati-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calati-feature-title,
.calati-feature-title .sppb-addon-title {
    margin: 0 0 10px;

    color: #fff;

    font-family: Verdana, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;

    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.calati-feature-text,
.calati-feature-text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-family: Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.calati-feature-text p {
    margin: 0;
}

/* Tablet: 2 × 2 */

@media (max-width: 991.98px) {

    .calati-company-features > .sppb-row-container,
    .calati-company-features > .sppb-container-inner {
        width: calc(100% - 48px);
    }

    .calati-company-features .calati-feature-column {
        min-height: 120px;
        padding: 22px 30px;
    }

    .calati-company-features .calati-feature-column:nth-child(2)::after,
    .calati-company-features .calati-feature-column:nth-child(4)::after {
        display: none;
    }

    .calati-company-features .calati-feature-column:nth-child(-n+2) {
        border-bottom: 1px solid rgba(48, 169, 214, 0.35);
    }

    .calati-feature-title,
    .calati-feature-title .sppb-addon-title {
        font-size: 17px;
    }
}

/* Mobile: una colonna per elemento */

@media (max-width: 767.98px) {

    .calati-company-features > .sppb-row-container,
    .calati-company-features > .sppb-container-inner {
        width: calc(100% - 40px);
    }

    .calati-company-features .calati-feature-column {
        min-height: 0;
        padding: 25px 10px;
    }

    .calati-company-features .calati-feature-column::after {
        display: none !important;
    }

    .calati-company-features .calati-feature-column:not(:last-child) {
        border-bottom: 1px solid rgba(48, 169, 214, 0.38);
    }

    .calati-feature-icon-column {
        justify-content: flex-start;
    }

    .calati-feature-icon {
        text-align: left;
    }

    .calati-feature-icon i,
    .calati-feature-icon svg {
        font-size: 42px;
    }

    .calati-feature-title,
    .calati-feature-title .sppb-addon-title {
        font-size: 18px;
    }

    .calati-feature-text,
    .calati-feature-text p {
        font-size: 14px;
    }
}

/* ==========================================================================
   CALATI MARCO — QUALITÀ, COMPETENZA, INNOVAZIONE
   ========================================================================== */


/* ==========================================================================
   1. SEZIONE
   ========================================================================== */

.calati-values-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.calati-values-section > .sppb-row-container,
.calati-values-section > .sppb-container-inner {
    width: min(calc(100% - 80px), 1320px);
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
}

.calati-values-section .sppb-row {
    align-items: stretch;
}


/* ==========================================================================
   2. COLONNA INTRODUTTIVA
   ========================================================================== */

.calati-values-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px 42px 25px 0;
}


/* ==========================================================================
   3. SOPRATITOLO
   ========================================================================== */

.calati-values-kicker,
.calati-values-kicker .sppb-addon-title {
    margin: 0 0 24px;

    color: #30a9d6;

    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* ==========================================================================
   4. TITOLO PRINCIPALE
   ========================================================================== */

.calati-values-main-title,
.calati-values-main-title .sppb-addon-title {
    margin: 0;

    color: #07375d;

    font-family: Verdana, Arial, sans-serif;
    font-size: clamp(31px, 2.5vw, 43px);
    font-weight: 700;
    line-height: 1.15;

    letter-spacing: -0.04em;
    text-transform: uppercase;
}


/* ==========================================================================
   5. CARD
   ========================================================================== */

.calati-value-card {

    position: relative;

    aspect-ratio: 1 / 1;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    padding:
        74px
        32px
        30px;

    overflow: hidden;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    isolation: isolate;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


/* ==========================================================================
   6. BACKGROUND CARD
   Sostituire i percorsi con le immagini definitive
   ========================================================================== */

.calati-value-card--quality {
    background-image:
        linear-gradient(
            180deg,
            rgba(2, 18, 35, 0.78) 0%,
            rgba(2, 22, 42, 0.62) 42%,
            rgba(2, 20, 38, 0.84) 100%
        ),
}

.calati-value-card--competence {
    background-image:
        linear-gradient(
            180deg,
            rgba(2, 18, 35, 0.80) 0%,
            rgba(2, 22, 42, 0.66) 42%,
            rgba(2, 20, 38, 0.86) 100%
        ),
}

.calati-value-card--innovation {
    background-image:
        linear-gradient(
            180deg,
            rgba(2, 18, 35, 0.80) 0%,
            rgba(2, 22, 42, 0.64) 42%,
            rgba(2, 20, 38, 0.86) 100%
        ),
}


/* ==========================================================================
   7. NUMERI DECORATIVI
   ========================================================================== */

.calati-value-card::before {
    position: absolute;
    top: 23px;
    left: 24px;
    z-index: 2;

    color: rgba(255, 255, 255, 0.22);

    font-family: Verdana, Arial, sans-serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1;

    letter-spacing: -0.07em;

    pointer-events: none;
}

.calati-value-card--quality::before {
    content: "01";
}

.calati-value-card--competence::before {
    content: "02";
}

.calati-value-card--innovation::before {
    content: "03";
}


/* ==========================================================================
   8. CONTENUTI SOPRA IL BACKGROUND
   ========================================================================== */

.calati-value-card .sppb-column-addons,
.calati-value-card .sppb-addon-wrapper,
.calati-value-card .sppb-addon,
.calati-value-card .sppb-addon-content {
    position: relative;
    z-index: 2;
}


/* ==========================================================================
   9. TITOLO CARD
   ========================================================================== */

.calati-value-title,
.calati-value-title .sppb-addon-title {
    margin: 0 0 16px;

    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);

    font-family: Verdana, Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.15;

    letter-spacing: -0.02em;
    text-transform: uppercase;
}


/* ==========================================================================
   10. TESTO CARD
   ========================================================================== */

.calati-value-text,
.calati-value-text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.35);

    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.calati-value-text p {
    margin: 0;
}


/* ==========================================================================
   11. EFFETTO HOVER DESKTOP
   ========================================================================== */

.calati-value-card::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(48, 169, 214, 0) 50%,
            rgba(48, 169, 214, 0.16) 100%
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.calati-value-card {
    transition: transform 0.3s ease;
}

.calati-value-card:hover {
    transform: translateY(-5px);
}

.calati-value-card:hover::after {
    opacity: 1;
}


/* ==========================================================================
   12. DESKTOP MEDIO
   ========================================================================== */

@media (max-width: 1199.98px) {

    .calati-values-section > .sppb-row-container,
    .calati-values-section > .sppb-container-inner {
        width: min(calc(100% - 56px), 1100px);
    }

    .calati-values-intro {
        padding-right: 28px;
    }

    .calati-values-main-title,
    .calati-values-main-title .sppb-addon-title {
        font-size: clamp(28px, 2.8vw, 37px);
    }

    .calati-value-card {
        min-height: 410px;

        padding:
            88px
            26px
            32px;
    }

    .calati-value-title,
    .calati-value-title .sppb-addon-title {
        font-size: 17px;
    }

    .calati-value-text,
    .calati-value-text p {
        font-size: 12px;
    }
}


/* ==========================================================================
   13. TABLET
   ========================================================================== */

@media (max-width: 991.98px) {

    .calati-values-section > .sppb-row-container,
    .calati-values-section > .sppb-container-inner {
        width: calc(100% - 48px);
    }

    .calati-values-intro {
        width: 100%;
        min-height: 0;

        padding:
            0
            0
            42px;
    }

    .calati-values-kicker,
    .calati-values-kicker .sppb-addon-title {
        margin-bottom: 14px;
    }

    .calati-values-main-title,
    .calati-values-main-title .sppb-addon-title {
        max-width: 520px;
        font-size: 34px;
    }

    .calati-value-card {
        min-height: 390px;

        padding:
            82px
            24px
            30px;
    }

    .calati-value-card::before {
        top: 22px;
        left: 22px;

        font-size: 42px;
    }

    .calati-value-title,
    .calati-value-title .sppb-addon-title {
        font-size: 17px;
    }

    .calati-value-text,
    .calati-value-text p {
        font-size: 12px;
        line-height: 1.5;
    }
}


/* ==========================================================================
   14. MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-values-section > .sppb-row-container,
    .calati-values-section > .sppb-container-inner {
        width: calc(100% - 40px);
    }

    .calati-values-intro {
        padding-bottom: 32px;
    }

    .calati-values-main-title,
    .calati-values-main-title .sppb-addon-title {
        font-size: clamp(29px, 8vw, 38px);
        line-height: 1.1;
    }

    .calati-value-card {
        min-height: 360px;

        margin-bottom: 18px;

        padding:
            78px
            28px
            30px;

        background-position: center center;
    }

    .calati-value-card:last-child {
        margin-bottom: 0;
    }

    .calati-value-card::before {
        top: 22px;
        left: 25px;

        font-size: 40px;
    }

    .calati-value-title,
    .calati-value-title .sppb-addon-title {
        font-size: 20px;
    }

    .calati-value-text,
    .calati-value-text p {
        max-width: 390px;

        font-size: 14px;
        line-height: 1.6;
    }

    .calati-value-card:hover {
        transform: none;
    }
}


/* ==========================================================================
   15. MOBILE PICCOLO
   ========================================================================== */

@media (max-width: 479.98px) {

    .calati-values-section > .sppb-row-container,
    .calati-values-section > .sppb-container-inner {
        width: calc(100% - 32px);
    }

    .calati-values-main-title,
    .calati-values-main-title .sppb-addon-title {
        font-size: 28px;
    }

    .calati-value-card {
        min-height: 330px;

        padding:
            72px
            22px
            26px;
    }

    .calati-value-text,
    .calati-value-text p {
        font-size: 13px;
    }
}


/* ==========================================================================
   CALATI MARCO — HERO CERTIFICAZIONI
   ========================================================================== */


/* ==========================================================================
   1. SEZIONE
   ========================================================================== */

.calati-certifications-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 430px;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(2, 18, 35, 0.98) 0%,
            rgba(3, 28, 52, 0.92) 32%,
            rgba(4, 34, 62, 0.58) 57%,
            rgba(4, 28, 52, 0.16) 100%
        ),
        url("/images/calati/certificazioni/certificazioni-hero.webp");

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* ==========================================================================
   2. RESET SP PAGE BUILDER
   ========================================================================== */

.calati-certifications-hero > .sppb-row-container,
.calati-certifications-hero > .sppb-container-inner,
.calati-certifications-hero .sppb-row,
.calati-certifications-hero .sppb-row-column,
.calati-certifications-hero .sppb-column,
.calati-certifications-hero .sppb-column-addons {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0;
}


/* ==========================================================================
   3. CONTENITORE INTERNO
   ========================================================================== */

.calati-certifications-hero .sppb-column-addons {
    width: min(calc(100% - 80px), 1320px);

    margin-right: auto;
    margin-left: auto;

    padding:
        125px
        0
        75px;
}


/* ==========================================================================
   4. SOPRATITOLO
   ========================================================================== */

.calati-certifications-kicker,
.calati-certifications-kicker .sppb-addon-title {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 16px;

    margin: 0 0 22px;

    color: #30a9d6;

    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calati-certifications-kicker .sppb-addon-title::after {
    content: "";

    display: block;

    width: 46px;
    height: 2px;

    background: #30a9d6;
}


/* ==========================================================================
   5. TITOLO
   ========================================================================== */

.calati-certifications-title,
.calati-certifications-title .sppb-addon-title {
    max-width: 640px;

    margin: 0 0 22px;

    color: #ffffff;

    font-family: Verdana, Arial, sans-serif;
    font-size: clamp(48px, 4vw, 68px);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.045em;
    text-transform: uppercase;
}


/* ==========================================================================
   6. TESTO INTRODUTTIVO
   ========================================================================== */

.calati-certifications-intro,
.calati-certifications-intro p {
    max-width: 620px;

    margin: 0;

    color: rgba(255, 255, 255, 0.95);

    font-family: Verdana, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}

.calati-certifications-intro p {
    margin: 0;
}


/* ==========================================================================
   7. DESKTOP MEDIO
   ========================================================================== */

@media (max-width: 1199.98px) {

    .calati-certifications-hero {
        min-height: 410px;
        background-position: 58% center;
    }

    .calati-certifications-hero .sppb-column-addons {
        width: min(calc(100% - 56px), 1100px);

        padding:
            115px
            0
            68px;
    }

    .calati-certifications-title,
    .calati-certifications-title .sppb-addon-title {
        font-size: clamp(44px, 5vw, 60px);
    }
}


/* ==========================================================================
   8. TABLET
   ========================================================================== */

@media (max-width: 991.98px) {

    .calati-certifications-hero {
        min-height: 390px;
        background-position: 64% center;
    }

    .calati-certifications-hero .sppb-column-addons {
        width: calc(100% - 48px);

        padding:
            105px
            0
            60px;
    }

    .calati-certifications-title,
    .calati-certifications-title .sppb-addon-title {
        font-size: clamp(42px, 6vw, 54px);
    }

    .calati-certifications-intro,
    .calati-certifications-intro p {
        max-width: 520px;
        font-size: 16px;
    }
}


/* ==========================================================================
   9. MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-certifications-hero {
        min-height: 480px;
        align-items: flex-end;

        background-image:
            linear-gradient(
                180deg,
                rgba(2, 18, 35, 0.24) 0%,
                rgba(2, 20, 39, 0.56) 45%,
                rgba(2, 18, 35, 0.97) 78%,
                rgba(2, 18, 35, 1) 100%
            ),
            url("/images/calati/certificazioni/certificazioni-hero.webp");

        background-position: 68% center;
    }

    .calati-certifications-hero .sppb-column-addons {
        width: calc(100% - 40px);

        padding:
            150px
            0
            45px;
    }

    .calati-certifications-kicker,
    .calati-certifications-kicker .sppb-addon-title {
        margin-bottom: 16px;

        font-size: 11px;
    }

    .calati-certifications-kicker .sppb-addon-title::after {
        width: 34px;
    }

    .calati-certifications-title,
    .calati-certifications-title .sppb-addon-title {
        margin-bottom: 18px;

        font-size: clamp(40px, 12vw, 54px);
    }

    .calati-certifications-intro,
    .calati-certifications-intro p {
        max-width: none;

        font-size: 15px;
        line-height: 1.6;
    }
}


/* ==========================================================================
   10. MOBILE PICCOLO
   ========================================================================== */

@media (max-width: 479.98px) {

    .calati-certifications-hero .sppb-column-addons {
        width: calc(100% - 32px);

        padding-bottom: 38px;
    }

    .calati-certifications-title,
    .calati-certifications-title .sppb-addon-title {
        font-size: 38px;
    }

    .calati-certifications-intro,
    .calati-certifications-intro p {
        font-size: 14px;
    }
}

/* ==========================================================================
   CALATI MARCO — PAGINA CERTIFICAZIONI
   ========================================================================== */


/* ==========================================================================
   1. LAYOUT GENERALE
   ========================================================================== */

.calati-certifications-layout {
    position: relative;
    padding: 72px 0 100px;
    overflow: visible !important;
    background-color: #ffffff;
}

.calati-certifications-layout > .sppb-row-container {
    overflow: visible !important;
}

.calati-certifications-layout >
.sppb-row-container >
.sppb-row {
    align-items: flex-start !important;
    overflow: visible !important;
}

.calati-certifications-layout .sppb-row-column,
.calati-certifications-layout .sppb-column {
    overflow: visible !important;
}

.calati-cert-content {
    min-height: 200px;
    padding-left: 28px;
}


/* ==========================================================================
   2. SIDEBAR
   ========================================================================== */

/* ==========================================================================
   CERTIFICAZIONI — MENU LATERALE SCORREVOLE VIA JAVASCRIPT
   ========================================================================== */

.calati-certifications-layout {
    position: relative;
    overflow: visible !important;
}

.calati-certifications-layout > .sppb-row-container,
.calati-certifications-layout > .sppb-row-container > .sppb-row,
.calati-certifications-layout .sppb-row-column,
.calati-certifications-layout .sppb-column {
    overflow: visible !important;
}

.calati-certifications-layout >
.sppb-row-container >
.sppb-row {
    align-items: stretch !important;
}


/* Wrapper esterno della colonna sinistra */

.calati-cert-sidebar-column {
    position: relative !important;
}


/* Sidebar nello stato normale */

.calati-cert-sidebar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;

    width: 100%;
    height: auto !important;

    overflow: hidden !important;

    border: 1px solid #dce4ec !important;
    border-radius: 4px;

    background-color: #ffffff !important;
}


/* Sidebar fissata durante lo scorrimento */

.calati-cert-sidebar.is-fixed {
    position: fixed !important;
    top: 110px !important;

    z-index: 100;

    margin: 0 !important;
}


/* Sidebar arrivata alla fine della sezione */

.calati-cert-sidebar.is-bottom {
    position: absolute !important;

    top: auto !important;
    right: 12px !important;
    bottom: 0 !important;
    left: 12px !important;

    width: auto !important;
}


/* Il contenitore interno non deve essere sticky */

.calati-cert-sidebar > .sppb-column-addons {
    position: static !important;
    top: auto !important;

    width: 100%;

    overflow: visible !important;

    border: 0 !important;
    background: transparent !important;
}


/* Tablet e mobile */

@media (max-width: 991.98px) {

    .calati-cert-sidebar,
    .calati-cert-sidebar.is-fixed,
    .calati-cert-sidebar.is-bottom {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
    }
}


/* ==========================================================================
   TABLET E MOBILE — STICKY DISATTIVATO
   ========================================================================== */

@media (max-width: 991.98px) {

    .calati-certifications-layout
    .sppb-row-column:has(> .calati-cert-sidebar) {
        height: auto !important;
        min-height: 0 !important;
    }

    .calati-cert-sidebar {
        position: relative !important;
        top: auto !important;

        height: auto !important;
        min-height: 0 !important;
    }
}

/* ==========================================================================
   3. CONTENUTO FEATURE BOX
   ========================================================================== */

.calati-cert-menu-item .sppb-addon-content {
    position: relative;

    min-height: 145px;

    padding:
        28px
        48px
        26px
        108px;
}


/* Collegamento */

.calati-cert-menu-item a {
    color: inherit;
    text-decoration: none;
}

.calati-cert-menu-item a:hover,
.calati-cert-menu-item a:focus {
    color: inherit;
    text-decoration: none;
}


/* Icona del Feature Box */

.calati-cert-menu-item .sppb-icon,
.calati-cert-menu-item .sppb-img-container {
    position: absolute;

    top: 30px;
    left: 26px;

    width: 58px;
    height: 70px;

    margin: 0 !important;
}

.calati-cert-menu-item .sppb-icon i {
    color: #123768;
    font-size: 48px;
}

.calati-cert-menu-item .sppb-img-container img,
.calati-cert-menu-item img {
    width: 58px;
    height: 70px;

    object-fit: contain;
}


/* Titolo */

.calati-cert-menu-item .sppb-addon-title {
    margin: 0 0 7px;

    color: #102f59;

    font-size: 17px;
    font-weight: 800;
    line-height: 1.28;

    text-transform: uppercase;
}


/* Descrizione */

.calati-cert-menu-item .sppb-addon-text,
.calati-cert-menu-item .sppb-addon-text p,
.calati-cert-menu-item .sppb-media-content,
.calati-cert-menu-item .sppb-media-content p {
    margin: 0;

    color: #263e5b;

    font-size: 13px;
    line-height: 1.5;
}



/* Hover */

.calati-cert-menu-item:hover::after {
    right: 18px;
    color: #0864e8;
}

/* Attiva */

.calati-cert-menu-item.active::after,
.calati-cert-menu-item.is-active::after {
    right: 16px;
    color: #0864e8;
    transform: translateY(-50%) scale(1.08);
}


/* ==========================================================================
   4. STATI MENU
   ========================================================================== */

.calati-cert-menu-item:hover {
    background-color: #f7faff;
}

.calati-cert-menu-item.active,
.calati-cert-menu-item.is-active {
    background-color: #f7faff !important;
    box-shadow: inset 5px 0 0 #0864e8;
}

.calati-cert-menu-item.active::before,
.calati-cert-menu-item.is-active::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    border: 1px solid #0864e8;

    pointer-events: none;
}


/* ==========================================================================
   5. SEZIONE CATEGORIA
   ========================================================================== */

.calati-cert-section {
    position: relative;

    padding: 0 0 76px;

    scroll-margin-top: 125px;
}


/* ==========================================================================
   6. INTESTAZIONE CATEGORIA
   ========================================================================== */

.calati-cert-category-icon {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.calati-cert-category-icon img {
    width: 62px;
    height: 72px;

    object-fit: contain;
}


/* Titolo categoria */

.calati-cert-category-title {
    position: relative;

    margin: 0 0 30px;
    padding-bottom: 24px;
}

.calati-cert-category-title::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 58px;
    height: 2px;

    background-color: #0864e8;
}

.calati-cert-category-title h2,
.calati-cert-category-title .sppb-addon-title {
    margin: 0;

    color: #0c2a4b;

    font-size: clamp(28px, 2.35vw, 36px);
    font-weight: 800;
    line-height: 1.08;

    letter-spacing: -0.025em;
    text-transform: uppercase;
}


/* Descrizione categoria */

.calati-cert-category-description {
    max-width: 760px;
    margin-bottom: 28px;
}

.calati-cert-category-description,
.calati-cert-category-description p {
    margin-top: 0;

    color: #344a63;

    font-size: 15px;
    line-height: 1.65;
}


/* ==========================================================================
   7. DIVIDER CATEGORIA
   ========================================================================== */

.calati-cert-category-divider {
    margin: 22px 0 30px;
}

.calati-cert-category-divider .sppb-divider {
    border-color: #d7dee6 !important;
}


/* Supporto nel caso in cui la classe sia applicata direttamente al divider */

.sppb-divider.calati-cert-category-divider {
    border-color: #d7dee6 !important;
}


/* ==========================================================================
   8. SCHEDA DOCUMENTO PDF
   ========================================================================== */

.calati-cert-document {
    position: relative;

    min-height: 86px;

    margin: 0 0 5px !important;
    padding: 14px 18px !important;

    border: 1px solid #dfe5eb;
    border-radius: 7px;

    background-color: #ffffff;

    box-shadow:
        0 3px 12px
        rgba(13, 42, 69, 0.025);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.calati-cert-document > .sppb-container-inner {
    width: 100%;
}

.calati-cert-document > .sppb-container-inner > .sppb-row,
.calati-cert-document > .sppb-row,
.calati-cert-document .sppb-row {
    min-height: 56px;
    align-items: center;
}

.calati-cert-document:hover {
    border-color: rgba(8, 100, 232, 0.45);

    box-shadow:
        0 9px 24px
        rgba(13, 42, 69, 0.08);

    transform: translateY(-2px);
}


/* ==========================================================================
   9. ICONA PDF
   ========================================================================== */

.calati-cert-document-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;

    margin: 0 !important;
}

.calati-cert-document-icon .sppb-addon-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calati-cert-document-icon i {
    color: #075c9a;
    font-size: 36px;
}


/* ==========================================================================
   10. TESTI DOCUMENTO
   ========================================================================== */

.calati-cert-document-title {
    margin: 0 0 4px !important;
}

.calati-cert-document-title h3,
.calati-cert-document-title .sppb-addon-title {
    margin: 0;

    color: #0c2a4b;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.calati-cert-document-description,
.calati-cert-document-description p {
    margin: 0 !important;

    color: #52657a;

    font-size: 13px;
    line-height: 1.45;
}

.calati-cert-document-meta {
    margin: 3px 0 0 !important;
}

.calati-cert-document-meta,
.calati-cert-document-meta p {
    margin-bottom: 0 !important;

    color: #52657a;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;

    letter-spacing: 0;
    text-transform: uppercase;
}


/* ==========================================================================
   11. DOWNLOAD PDF
   ========================================================================== */

.calati-cert-download {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;

    min-height: 56px;

    margin: 0 !important;
    padding-left: 22px;

    border-left: 1px solid #e3e8ee;
}

.calati-cert-download .sppb-addon-content {
    width: 100%;
}

.calati-cert-download .sppb-button-wrapper {
    width: 100%;
}

.calati-cert-download .sppb-btn {
    position: relative;

    display: flex !important;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    min-height: 44px;

    padding: 4px 0 4px 45px !important;

    border: 0 !important;
    border-radius: 0 !important;

    color: #005cdf !important;
    background: transparent !important;

    box-shadow: none !important;

    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.2;

    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    white-space: normal;
}

.calati-cert-download .sppb-btn::before {
    content: "\2193";

    position: absolute;

    top: 50%;
    left: 4px;

    width: 29px;
    height: 29px;

    border-bottom: 2px solid #0864e8;

    color: #0864e8;

    font-size: 28px;
    font-weight: 300;
    line-height: 22px;
    text-align: center;

    transform: translateY(-58%);
}

.calati-cert-download .sppb-btn:hover,
.calati-cert-download .sppb-btn:focus {
    border: 0 !important;

    color: #0c2a4b !important;
    background: transparent !important;

    box-shadow: none !important;
}


/*
 * Nasconde l’eventuale icona impostata nell’addon Button:
 * viene utilizzata la freccia generata dal CSS.
 */

.calati-cert-download .sppb-btn i {
    display: none;
}


/* ==========================================================================
   12. TABLET
   ========================================================================== */

@media (max-width: 991.98px) {

    .calati-cert-content {
        padding-left: 10px;
    }

    /*
     * Su tablet verticale il menu non è sticky,
     * per evitare che occupi troppo spazio in altezza.
     */

    .calati-cert-menu-item .sppb-addon-content {
        padding-left: 94px;
    }

    .calati-cert-download {
        padding-left: 14px;
    }
}


/* ==========================================================================
   13. MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-certifications-layout {
        padding: 45px 0 70px;
    }

    .calati-cert-content {
        margin-top: 35px;
        padding-left: 0;
    }


    /* Colonna nel flusso normale */

    .calati-cert-sidebar {
        position: relative !important;
        top: auto !important;

        display: block;

        width: 100%;

        margin-bottom: 44px;

        overflow: visible !important;
    }


    /*
     * Le Feature Box diventano uno scroller orizzontale.
     */

    .calati-cert-sidebar > .sppb-column-addons {
        position: relative !important;
        top: auto !important;

        display: flex;

        width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        border: 1px solid #dce4ec;
        border-radius: 4px;

        background-color: #ffffff;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .calati-cert-sidebar >
    .sppb-column-addons::-webkit-scrollbar {
        display: none;
    }

    .calati-cert-sidebar .sppb-addon-wrapper {
        flex: 0 0 245px;
    }

    .calati-cert-sidebar .calati-cert-menu-item {
        height: 100%;

        border-right: 1px solid #dce4ec;
        border-bottom: 0;
    }

    .calati-cert-sidebar
    .sppb-addon-wrapper:last-child
    .calati-cert-menu-item {
        border-right: 0;
    }


    /* Feature Box mobile */

    .calati-cert-menu-item .sppb-addon-content {
        min-height: 128px;

        padding:
            22px
            38px
            20px
            82px;
    }

    .calati-cert-menu-item .sppb-icon,
    .calati-cert-menu-item .sppb-img-container {
        top: 24px;
        left: 18px;

        width: 48px;
        height: 58px;
    }

    .calati-cert-menu-item .sppb-img-container img,
    .calati-cert-menu-item img {
        width: 48px;
        height: 58px;
    }

    .calati-cert-menu-item .sppb-addon-title {
        font-size: 14px;
    }

    .calati-cert-menu-item .sppb-addon-text,
    .calati-cert-menu-item .sppb-addon-text p,
    .calati-cert-menu-item .sppb-media-content,
    .calati-cert-menu-item .sppb-media-content p {
        font-size: 12px;
    }


    /* Categoria */

    .calati-cert-section {
        padding-bottom: 60px;
        scroll-margin-top: 90px;
    }

    .calati-cert-category-icon img {
        width: 54px;
        height: 62px;

        margin-bottom: 18px;
    }

    .calati-cert-category-title {
        margin-bottom: 22px;
        padding-bottom: 19px;
    }

    .calati-cert-category-title h2,
    .calati-cert-category-title .sppb-addon-title {
        font-size: 27px;
    }

    .calati-cert-category-description,
    .calati-cert-category-description p {
        font-size: 15px;
    }


    /* Documento PDF */

    .calati-cert-document {
        padding: 20px !important;
        border-radius: 9px;
    }

    .calati-cert-document >
    .sppb-container-inner >
    .sppb-row,
    .calati-cert-document > .sppb-row,
    .calati-cert-document .sppb-row {
        min-height: 0;
    }

    .calati-cert-document-icon {
        justify-content: flex-start;
        margin-bottom: 15px !important;
    }

    .calati-cert-document-title h3,
    .calati-cert-document-title .sppb-addon-title {
        font-size: 17px;
    }


    /* Download mobile */

    .calati-cert-download {
        justify-content: flex-start;

        min-height: 42px;

        margin-top: 18px !important;
        padding: 14px 0 0;

        border-top: 1px solid #e3e8ee;
        border-left: 0;
    }

    .calati-cert-download .sppb-btn {
        min-height: 34px;
        padding-left: 44px !important;
    }
}


/* ==========================================================================
   CALATI MARCO — CORREZIONE FOOTER FULL WIDTH E COLONNE
   ========================================================================== */


/* ==========================================================================
   1. RENDE FULL WIDTH LA POSIZIONE HELIX SP-BOTTOM
   ========================================================================== */

#sp-bottom {
    width: 100%;
    margin: 0;
    padding: 0 !important;
    background: transparent;
}

#sp-bottom > .container,
#sp-bottom > .container-fluid {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#sp-bottom > .container > .container-inner,
#sp-bottom > .container-fluid > .container-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#sp-bottom .container-inner > .row {
    width: 100%;
    margin: 0 !important;
}

#sp-bottom #sp-bottom1 {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 !important;
}

#sp-bottom #sp-bottom1 > .sp-column,
#sp-bottom #sp-bottom1 .sp-module,
#sp-bottom #sp-bottom1 .sp-module-content,
#sp-bottom #sp-bottom1 .mod-sppagebuilder,
#sp-bottom #sp-bottom1 .sp-page-builder,
#sp-bottom #sp-bottom1 .page-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}


/* ==========================================================================
   2. SEZIONE FOOTER A TUTTA LARGHEZZA
   ========================================================================== */

#sp-bottom .cm-footer-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(10, 140, 255, 0.16) 0,
            rgba(10, 140, 255, 0) 34%
        ),
        linear-gradient(
            110deg,
            #02162b 0%,
            #052844 48%,
            #031a32 100%
        ) !important;
}


/*
   Lo sfondo è full width.
   Solo i contenuti interni restano centrati.
*/

#sp-bottom .cm-footer-main > .sppb-container-inner,
#sp-bottom .cm-footer-main > .sppb-row-container {
    width: min(calc(100% - 80px), 1480px) !important;
    max-width: 1480px !important;

    margin-right: auto !important;
    margin-left: auto !important;

    padding: 78px 0 74px !important;
}


/* ==========================================================================
   3. CORREZIONE STRUTTURA DELLE QUATTRO COLONNE
   ========================================================================== */

/*
   Non impostiamo più le percentuali sulla .sppb-column interna.
*/

.cm-footer-main .cm-footer-contact-column,
.cm-footer-main .cm-footer-company,
.cm-footer-main .cm-footer-resources,
.cm-footer-main .cm-footer-social {
    width: 100% !important;
    max-width: none !important;
    flex-basis: auto !important;
}


/*
   La riga reale diventa una griglia.
   Le larghezze vengono applicate ai veri wrapper delle colonne.
*/

@media (min-width: 992px) {

    #sp-bottom .cm-footer-main .sppb-row {
        display: grid !important;

        grid-template-columns:
            minmax(0, 31fr)
            minmax(0, 23fr)
            minmax(0, 27fr)
            minmax(0, 19fr);

        column-gap: 52px;
        align-items: start;

        margin: 0 !important;
    }

    #sp-bottom .cm-footer-main .sppb-row > .sppb-row-column {
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        flex: none !important;

        margin: 0 !important;
        padding: 0 !important;
    }
}


/* ==========================================================================
   4. LOGO — RIPRISTINA DIMENSIONE CORRETTA
   ========================================================================== */

.cm-footer-main .cm-footer-logo {
    width: 100%;
    margin-bottom: 42px !important;
}

.cm-footer-main .cm-footer-logo .sppb-addon-content,
.cm-footer-main .cm-footer-logo .sppb-addon-single-image-container {
    width: 100%;
}

.cm-footer-main .cm-footer-logo img {
    display: block;

    width: 100% !important;
    max-width: 355px !important;
    height: auto !important;

    margin: 0 !important;
}


/* ==========================================================================
   5. CONTATTI — IMPEDISCE LE INTERRUZIONI ASSURDE
   ========================================================================== */

.cm-footer-main .cm-footer-contact {
    width: 100%;
    min-width: 0;

    padding-left: 52px;
}

.cm-footer-main .cm-footer-contact .sppb-addon-content {
    width: 100%;
    max-width: 330px;

    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
}

.cm-footer-main .cm-footer-contact p {
    margin: 0 !important;
}

.cm-footer-main .cm-footer-contact a {
    white-space: nowrap;
}


/* Indirizzo: i due paragrafi restano sulle due righe previste */

.cm-footer-main .cm-footer-contact-address p {
    white-space: nowrap;
}


/* ==========================================================================
   6. MENU — EVITA CHE LE VOCI SI STRINGANO TROPPO
   ========================================================================== */

.cm-footer-main .cm-footer-nav,
.cm-footer-main .cm-footer-nav nav,
.cm-footer-main .cm-footer-nav ul {
    width: 100% !important;
    min-width: 0;
}

.cm-footer-main .cm-footer-nav li > a {
    width: auto !important;
    max-width: 100%;

    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}


/* Le voci brevi non devono spezzarsi */

.cm-footer-company .cm-footer-nav li > a {
    white-space: nowrap;
}


/* ==========================================================================
   7. TITOLO RISORSE UTILI SU UNA SOLA RIGA
   ========================================================================== */

@media (min-width: 1200px) {

    .cm-footer-resources .cm-footer-title .sppb-addon-title {
        white-space: nowrap;
    }
}


/* ==========================================================================
   8. TABLET — DUE COLONNE
   ========================================================================== */

@media (min-width: 768px) and (max-width: 991.98px) {

    #sp-bottom .cm-footer-main .sppb-row {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 56px 42px;

        margin: 0 !important;
    }

    #sp-bottom .cm-footer-main .sppb-row > .sppb-row-column {
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        flex: none !important;

        padding: 0 !important;
    }

    #sp-bottom .cm-footer-main > .sppb-container-inner,
    #sp-bottom .cm-footer-main > .sppb-row-container {
        width: calc(100% - 56px) !important;
        padding: 65px 0 60px !important;
    }
}


/* ==========================================================================
   9. MOBILE — UNA COLONNA
   ========================================================================== */

@media (max-width: 767.98px) {

    #sp-bottom .cm-footer-main > .sppb-container-inner,
    #sp-bottom .cm-footer-main > .sppb-row-container {
        width: calc(100% - 40px) !important;
        padding: 54px 0 50px !important;
    }

    #sp-bottom .cm-footer-main .sppb-row {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;

        margin: 0 !important;
    }

    #sp-bottom .cm-footer-main .sppb-row > .sppb-row-column {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        flex: none !important;

        padding: 0 !important;
    }

    .cm-footer-main .cm-footer-logo img {
        max-width: 290px !important;
    }

    .cm-footer-main .cm-footer-contact-address p {
        white-space: normal;
    }
}

/* ==========================================================================
   FOOTER — FIX COLORI E ALLINEAMENTO PULSANTE
   ========================================================================== */


/* ==========================================================================
   1. FORZA IL COLORE BIANCO SU TUTTI I TESTI DEL FOOTER
   ========================================================================== */

#sp-bottom .cm-footer-main,
#sp-bottom .cm-footer-main p,
#sp-bottom .cm-footer-main span,
#sp-bottom .cm-footer-main div,
#sp-bottom .cm-footer-main nav,
#sp-bottom .cm-footer-main ul,
#sp-bottom .cm-footer-main li {
    color: rgba(255, 255, 255, 0.90) !important;
}


/* Titoli delle colonne */

#sp-bottom .cm-footer-main .cm-footer-title,
#sp-bottom .cm-footer-main .cm-footer-title .sppb-addon-title,
#sp-bottom .cm-footer-main .cm-footer-title h1,
#sp-bottom .cm-footer-main .cm-footer-title h2,
#sp-bottom .cm-footer-main .cm-footer-title h3,
#sp-bottom .cm-footer-main .cm-footer-title h4,
#sp-bottom .cm-footer-main .cm-footer-title h5,
#sp-bottom .cm-footer-main .cm-footer-title h6 {
    color: #ffffff !important;

    font-family: Inter, Arial, sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;

    text-transform: uppercase !important;
}


/* Testi dei contatti */

#sp-bottom .cm-footer-main .cm-footer-contact,
#sp-bottom .cm-footer-main .cm-footer-contact p,
#sp-bottom .cm-footer-main .cm-footer-contact .sppb-addon-content {
    color: rgba(255, 255, 255, 0.90) !important;
}


/* Link dei contatti */

#sp-bottom .cm-footer-main .cm-footer-contact a {
    color: rgba(255, 255, 255, 0.90) !important;
}

#sp-bottom .cm-footer-main .cm-footer-contact a:hover,
#sp-bottom .cm-footer-main .cm-footer-contact a:focus {
    color: #30a9d6 !important;
}


/* Voci dei due menu Navigation */

#sp-bottom .cm-footer-main .cm-footer-nav li > a,
#sp-bottom .cm-footer-main .cm-footer-nav ul > li > a,
#sp-bottom .cm-footer-main .cm-footer-nav nav ul li a {
    color: rgba(255, 255, 255, 0.90) !important;

    font-family: Inter, Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
}

#sp-bottom .cm-footer-main .cm-footer-nav li > a:hover,
#sp-bottom .cm-footer-main .cm-footer-nav li > a:focus {
    color: #ffffff !important;
}


/* ==========================================================================
   2. RIPRISTINA LE LINEE BLU SOTTO I TITOLI
   ========================================================================== */

#sp-bottom .cm-footer-main .cm-footer-title {
    position: relative;

    margin: 0 0 45px !important;
    padding: 0 0 21px !important;
}

#sp-bottom .cm-footer-main .cm-footer-title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 58px;
    height: 4px;

    border-radius: 5px;

    background-color: #0a8cff;
}


/* ==========================================================================
   3. RIPRISTINA LE FRECCE BLU DEI MENU
   ========================================================================== */

#sp-bottom .cm-footer-main .cm-footer-nav li > a {
    position: relative;

    display: inline-flex !important;
    align-items: center;

    min-height: 27px;

    padding: 0 0 0 29px !important;

    background: transparent !important;
    text-decoration: none !important;
}

#sp-bottom .cm-footer-main .cm-footer-nav li > a::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 2px;

    display: block;

    width: 8px;
    height: 8px;

    border-top: 2px solid #0a8cff;
    border-right: 2px solid #0a8cff;

    transform:
        translateY(-50%)
        rotate(45deg);

    transition: transform 0.25s ease;
}

#sp-bottom .cm-footer-main .cm-footer-nav li > a:hover::before {
    transform:
        translate(4px, -50%)
        rotate(45deg);
}


/* ==========================================================================
   4. ALLINEA IL PULSANTE CON IL TESTO DEI CONTATTI
   ========================================================================== */

/*
   I testi partono 52 px più a destra per lasciare spazio alle icone.
   Spostiamo quindi anche l'addon Button dello stesso valore.
*/

#sp-bottom .cm-footer-main .cm-footer-contact-column
.sppb-addon-wrapper.addon-root-button {
    width: calc(100% - 52px);

    margin-top: 34px !important;
    margin-left: 52px !important;
}


/* Wrapper interno del pulsante */

#sp-bottom .cm-footer-main .cm-footer-contact-column
.sppb-button-wrapper {
    width: 100%;

    margin: 0 !important;

    text-align: left !important;
}


/* Pulsante */

#sp-bottom .cm-footer-main
.cm-footer-contact-column a.cm-footer-private,
#sp-bottom .cm-footer-main
.cm-footer-contact-column .cm-footer-private.sppb-btn {
    display: flex !important;
    align-items: center;
    justify-content: space-between;

    width: 100% !important;
    max-width: 345px !important;
    min-height: 62px;

    margin: 0 !important;
    padding: 14px 58px 14px 25px !important;

    border: 1px solid #188fff !important;
    border-radius: 8px !important;

    color: #ffffff !important;
    background:
        linear-gradient(
            105deg,
            #0879ee 0%,
            #2780ff 100%
        ) !important;

    font-family: Inter, Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 500 !important;

    text-align: left !important;
    text-decoration: none !important;
}


/* Freccia del pulsante */

#sp-bottom .cm-footer-main
.cm-footer-contact-column a.cm-footer-private::after,
#sp-bottom .cm-footer-main
.cm-footer-contact-column .cm-footer-private.sppb-btn::after {
    content: "→";

    position: absolute;
    top: 50%;
    right: 25px;

    color: #ffffff !important;

    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;

    transform: translateY(-53%);
}


/* ==========================================================================
   5. MOBILE
   ========================================================================== */
 
@media (max-width: 767.98px) {

    #sp-bottom .cm-footer-main .cm-footer-title .sppb-addon-title {
        font-size: 20px !important;
    }

    #sp-bottom .cm-footer-main .cm-footer-contact-column
    .sppb-addon-wrapper.addon-root-button {
        width: calc(100% - 43px);
        margin-left: 43px !important;
    }

    #sp-bottom .cm-footer-main
    .cm-footer-contact-column a.cm-footer-private,
    #sp-bottom .cm-footer-main
    .cm-footer-contact-column .cm-footer-private.sppb-btn {
        max-width: 345px !important;
        min-height: 58px;

        font-size: 16px !important;
    }
}


/* Titolo prima colonna allineato al testo dei contatti */

#sp-bottom .cm-footer-main .cm-footer-contact-title {
    margin: 0 0 34px 52px !important;
}

#sp-bottom .cm-footer-main .cm-footer-contact-title .sppb-addon-title,
#sp-bottom .cm-footer-main .cm-footer-contact-title h1,
#sp-bottom .cm-footer-main .cm-footer-contact-title h2,
#sp-bottom .cm-footer-main .cm-footer-contact-title h3,
#sp-bottom .cm-footer-main .cm-footer-contact-title h4,
#sp-bottom .cm-footer-main .cm-footer-contact-title h5,
#sp-bottom .cm-footer-main .cm-footer-contact-title h6 {
    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-family: Inter, Arial, sans-serif !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;

    text-transform: uppercase;
}

/* Riduce la distanza verticale tra i contatti */

#sp-bottom .cm-footer-main .cm-footer-contact-column
.sppb-addon-wrapper.addon-root-text-block {
    margin-top: 0 !important;
    margin-bottom: 13px !important;
}

#sp-bottom .cm-footer-main .cm-footer-contact {
    margin: 0 !important;
}


/* Indirizzo leggermente più distanziato dal telefono */

#sp-bottom .cm-footer-main .cm-footer-contact-address {
    margin-bottom: 19px !important;
}


/* Telefono ed email più compatti */

#sp-bottom .cm-footer-main .cm-footer-contact-phone,
#sp-bottom .cm-footer-main .cm-footer-contact-email,
#sp-bottom .cm-footer-main .cm-footer-contact-web {
    margin-bottom: 10px !important;
}


/* ==========================================================================
   FOOTER — SOCIAL
   ========================================================================== */

#sp-bottom .cm-footer-main .cm-footer-social-item {
    margin: 0 0 16px !important;
}

#sp-bottom .cm-footer-main .cm-footer-social-item .sppb-addon-content,
#sp-bottom .cm-footer-main .cm-footer-social-item .sppb-feature-box-title {
        display:flex;
    align-items:center;

    min-height:40px;

    margin:0 !important;
}
}

#sp-bottom .cm-footer-main .cm-footer-social-item a{
    display:flex;
    align-items:center;      /* centra verticalmente */
    gap:16px;
}

#sp-bottom .cm-footer-main .cm-footer-social-item .sppb-icon,
#sp-bottom .cm-footer-main .cm-footer-social-item .sppb-icon-container,
#sp-bottom .cm-footer-main .cm-footer-social-item .sppb-feature-box-title-icon{

    width:40px;
    height:40px;
    flex:0 0 44px;

   /* border:2px solid #0a8cff; */
    border-radius:9px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    line-height:1;

    padding:0;
    margin:0;
}


/* Titolo */

#sp-bottom .cm-footer-main .cm-footer-social-item
.sppb-feature-box-title,
#sp-bottom .cm-footer-main .cm-footer-social-item
.sppb-feature-box-title a {
     display:flex;
    align-items:center;

    min-height:44px;

    margin:0 !important;
    padding:0 !important;

    font-size:17px;
    line-height:1;

    color:#fff;
}


/* Hover */

#sp-bottom .cm-footer-main .cm-footer-social-item:hover a,
#sp-bottom .cm-footer-main .cm-footer-social-item a:hover {
    color: #ffffff !important;
    transform: translateX(3px);
}

#sp-bottom .cm-footer-main .cm-footer-social-item:hover .sppb-icon,
#sp-bottom .cm-footer-main .cm-footer-social-item:hover
.sppb-icon-container,
#sp-bottom .cm-footer-main .cm-footer-social-item:hover
.sppb-feature-box-title-icon {
    border-color: #30a9d6;
    background-color: #0a8cff !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER — RIFINITURA SOCIAL
   ========================================================================== */


/* Riduce leggermente lo spazio tra le quattro colonne */

@media (min-width: 992px) {

    #sp-bottom .cm-footer-main .sppb-row {
        column-gap: 36px !important;
    }
}


/* Addon social più compatto */

#sp-bottom .cm-footer-main .cm-footer-social-item {
    width: 100%;
    margin: 0 0 10px !important;
    overflow: visible;
}


/* Link: niente zoom o spostamento laterale */

#sp-bottom .cm-footer-main .cm-footer-social-item a {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;

    width: auto;
    max-width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    color: rgba(255, 255, 255, 0.90) !important;

    font-family: Inter, Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;

    white-space: nowrap;
    text-decoration: none !important;

    transform: none !important;
    scale: none !important;

    transition:
        color 0.2s ease,
        opacity 0.2s ease !important;
}


/* Elimina qualsiasi ingrandimento ereditato dall'addon */

#sp-bottom .cm-footer-main .cm-footer-social-item:hover,
#sp-bottom .cm-footer-main .cm-footer-social-item:hover a,
#sp-bottom .cm-footer-main .cm-footer-social-item a:hover,
#sp-bottom .cm-footer-main .cm-footer-social-item a:focus {
    color: #ffffff !important;

    transform: none !important;
    scale: none !important;
}


/* Contenitore icona */

#sp-bottom .cm-footer-main .cm-footer-social-item .sppb-icon,
#sp-bottom .cm-footer-main .cm-footer-social-item .sppb-icon-container,
#sp-bottom .cm-footer-main .cm-footer-social-item
.sppb-feature-box-title-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    color: #ffffff !important;
    background: transparent !important;

    font-size: 14px !important;
    line-height: 1 !important;

    transform: none !important;

    transition:
        color 0.2s ease,
        opacity 0.2s ease !important;
}


/* Nessun movimento dell'icona in hover */

#sp-bottom .cm-footer-main .cm-footer-social-item:hover .sppb-icon,
#sp-bottom .cm-footer-main .cm-footer-social-item:hover
.sppb-icon-container,
#sp-bottom .cm-footer-main .cm-footer-social-item:hover
.sppb-feature-box-title-icon {
    color: #0a8cff !important;
    background: transparent !important;

    transform: none !important;
}


/* Titolo social grande come le altre voci del footer */

#sp-bottom .cm-footer-main .cm-footer-social-item
.sppb-feature-box-title,
#sp-bottom .cm-footer-main .cm-footer-social-item
.sppb-feature-box-title a {
    display: flex !important;
    align-items: center;

    min-height: 24px;

    margin: 0 !important;
    padding: 0 !important;

    color: rgba(255, 255, 255, 0.90) !important;

    font-family: Inter, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;

    white-space: nowrap;
    text-decoration: none !important;

    transform: none !important;
}


/* Riduce leggermente lo spazio sotto il footer principale */

#sp-bottom .cm-footer-main > .sppb-container-inner,
#sp-bottom .cm-footer-main > .sppb-row-container {
    padding-bottom: 54px !important;
}


/* ==========================================================================
   HEADER STICKY — STATO AFFIDABILE
   ========================================================================== */

#sp-header {
    background-color: transparent !important;

    transition:
        background-color 0.22s ease,
        box-shadow 0.22s ease !important;
}


/* Stato quando la pagina è scorsa */

#sp-header.calati-header-scrolled {
    background-color: rgba(0, 0, 0, 0.94) !important;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.18) !important;
}


/* Riduce eventuali transizioni troppo lente del template */

#sp-header,
#sp-header .container,
#sp-header .container-inner {
    transition-duration: 0.22s !important;
}


/* Mobile */

@media (max-width: 991.98px) {

    #sp-header.calati-header-scrolled {
        background-color: rgba(0, 0, 0, 0.97) !important;
    }
}


/* ==========================================================================
        SEZIONE 45 ANNI - PAGINA CHI SIAMO
   ========================================================================== */
   
   /* =========================================================
   CALATI MARCO
   45° ANNIVERSARIO
   ========================================================= */

.calati-45-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 !important;

    background:
        linear-gradient(
            110deg,
            #0b416f 0%,
            #07365f 45%,
            #052d51 100%
        ) !important;

    color: #ffffff;
}


/* ---------------------------------------------------------
   RIGA
   --------------------------------------------------------- */

.calati-45-section > .sppb-row-container > .sppb-row {
    display: flex;
    align-items: center;
}


/* =========================================================
   LOGO
   ========================================================= */

.calati-45-logo {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 390px;

    padding-right: 42px;
}


/* linea verticale */

.calati-45-logo::after {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background: rgba(255,255,255,.35);
}


.calati-45-logo .sppb-addon-single-image-container {
    width: 100%;
    text-align: center;
}


.calati-45-logo img {
    display: block;

    width: 100% !important;
    max-width: 290px !important;
    height: auto !important;

    margin: 0 auto;
}


/* =========================================================
   TESTO CENTRALE
   ========================================================= */

.calati-45-copy {
    padding: 5px 48px;
}


/* data + location */

.calati-45-meta {
    margin-bottom: 24px;
}

.calati-45-meta,
.calati-45-meta *,
.calati-45-meta .sppb-addon-title {

    color: #20a8ee !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    line-height: 1.3 !important;

    letter-spacing: .03em !important;

    text-transform: uppercase;
}


/* titolo */

.calati-45-title {
    position: relative;

    margin-bottom: 32px;
    padding-bottom: 24px;
}


.calati-45-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 52px;
    height: 3px;

    background: #20a8ee;
}


.calati-45-title .sppb-addon-title {

    margin: 0 !important;

    color: #ffffff !important;

    font-size: 31px !important;
    font-weight: 800 !important;

    line-height: 1.12 !important;

    letter-spacing: -.02em !important;

    text-transform: uppercase;
}


/* testo */

.calati-45-text,
.calati-45-text *,
.calati-45-text p,
.calati-45-text p[style] {

    color: rgba(255,255,255,.92) !important;

    font-family: inherit !important;

    font-size: 15px !important;
    font-weight: 400 !important;

    line-height: 1.65 !important;

    letter-spacing: 0 !important;
}


.calati-45-text p {
    margin: 0 !important;
}


/* =========================================================
   VIDEO
   ========================================================= */

.calati-45-video {
    padding-left: 15px;
}


.calati-45-video .sppb-video-block {

    overflow: hidden;

    border-radius: 6px;

    background: #021b30;

    box-shadow:
        0 20px 45px rgba(0,0,0,.24),
        0 3px 8px rgba(0,0,0,.15);
}


.calati-45-video iframe {
    display: block;

    width: 100%;

    border: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .calati-45-section {
        padding: 60px 0 !important;
    }


    .calati-45-logo {
        min-height: 330px;
        padding-right: 28px;
    }


    .calati-45-logo img {
        max-width: 230px !important;
    }


    .calati-45-copy {
        padding: 5px 30px;
    }


    .calati-45-title .sppb-addon-title {
        font-size: 25px !important;
    }


    .calati-45-text,
    .calati-45-text *,
    .calati-45-text p {
        font-size: 14px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .calati-45-section {
        padding: 48px 0 52px !important;
    }


    .calati-45-section > .sppb-row-container > .sppb-row {
        display: block;
    }


    /* logo */

    .calati-45-logo {
        min-height: 0;

        padding: 0 0 35px;
        margin-bottom: 35px;

        justify-content: center;
    }


    .calati-45-logo::after {

        top: auto;
        right: 20%;
        bottom: 0;
        left: 20%;

        width: auto;
        height: 1px;
    }


    .calati-45-logo img {
        max-width: 230px !important;
    }


    /* copy */

    .calati-45-copy {
        padding: 0;
        margin-bottom: 35px;
    }


    .calati-45-meta {
        margin-bottom: 18px;
    }


    .calati-45-title {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }


    .calati-45-title .sppb-addon-title {
        font-size: 27px !important;
    }


    .calati-45-text,
    .calati-45-text *,
    .calati-45-text p {
        font-size: 15px !important;
    }


    /* video */

    .calati-45-video {
        padding-left: 0;
    }

}


/* =========================================================
   MOBILE PICCOLO
   ========================================================= */

@media (max-width: 479.98px) {

    .calati-45-section {
        padding: 40px 0 45px !important;
    }


    .calati-45-logo img {
        max-width: 195px !important;
    }


    .calati-45-title .sppb-addon-title {
        font-size: 24px !important;
    }


    .calati-45-meta,
    .calati-45-meta *,
    .calati-45-meta .sppb-addon-title {
        font-size: 12px !important;
    }

}

@media (max-width: 767.98px) {

    /* Titolo prima colonna footer */
    .cm-footer-contact-title,
    .cm-footer-contact-title .sppb-addon-title {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }

    /* Bottone Area riservata */
    .cm-footer-contact-column .sppb-btn,
    .cm-footer-contact-column .btn,
    .cm-footer-contact-column .sppb-addon-button-group {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .cm-footer-contact-column .sppb-addon-button-group {
        text-align: left !important;
    }

    .cm-footer-contact-column .sppb-btn {
        width: 100% !important;
        max-width: 100% !important;
    }

}

@media (max-width: 767.98px) {

    /* =====================================================
       FOOTER — ALLINEAMENTO ESATTO TITOLO
       ===================================================== */

    #sppb-addon-wrapper-41ee7973-8567-49e1-a527-2f46c6c0d1ea,
    #sppb-addon-41ee7973-8567-49e1-a527-2f46c6c0d1ea,
    #sppb-addon-41ee7973-8567-49e1-a527-2f46c6c0d1ea .cm-footer-contact-title,
    #sppb-addon-41ee7973-8567-49e1-a527-2f46c6c0d1ea .sppb-addon-title {
        width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;

        text-align: left !important;
    }


    /* =====================================================
       FOOTER — ALLINEAMENTO ESATTO PULSANTE
       ===================================================== */

    #sppb-addon-wrapper-e22a3815-9093-4b3b-abfd-c57dd984d0f6,
    #sppb-addon-e22a3815-9093-4b3b-abfd-c57dd984d0f6,
    #sppb-addon-e22a3815-9093-4b3b-abfd-c57dd984d0f6 .sppb-button-wrapper {
        width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;

        text-align: left !important;
    }

    #btn-e22a3815-9093-4b3b-abfd-c57dd984d0f6 {
        display: flex !important;

        width: 100% !important;
        max-width: none !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        box-sizing: border-box;
    }

}

/* =========================================================
   FOOTER MOBILE — FIX DEFINITIVO TITOLO + BOTTONE
   ========================================================= */

@media (max-width: 767.98px) {

    /* TITOLO CALATI MARCO SRL */
    .cm-footer-contact-title {
        width: 100% !important;
        max-width: none !important;

        margin: 0 0 20px 0 !important;
        padding: 0 !important;

        text-align: left !important;
    }

    .cm-footer-contact-title .sppb-addon-title {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;
    }


    /* WRAPPER BOTTONE */
    .cm-footer-contact-column .sppb-button-wrapper {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;
    }


    /* AREA RISERVATA */
    .cm-footer-private {
        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        box-sizing: border-box !important;
    }

}
/* ==========================================================================
   CALATI MARCO — MODIFICHE CONSOLIDATE 31/08/2026
   Questo blocco raccoglie in forma unica le modifiche sviluppate oggi.
   ========================================================================== */


/* ==========================================================================
   1. TYPOGRAPHY — PUBLIC SANS
   ========================================================================== */

html,
body,
input,
textarea,
select,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
label,
small,
strong,
.sppb-addon,
.sppb-addon-title,
.sppb-addon-content,
.sppb-btn,
.sp-megamenu-parent,
.com-miaapp {
    font-family: "Public Sans", Arial, sans-serif !important;
}


/* ==========================================================================
   2. LARGE DESKTOP / 4K
   ========================================================================== */

@media (min-width: 1920px) {
    .container,
    .sppb-row-container {
        max-width: 1680px !important;
    }
}

@media (min-width: 2560px) {
    .container,
    .sppb-row-container {
        max-width: 2100px !important;
    }
}


/* ==========================================================================
   3. CATALOGO — LARGE DESKTOP / 4K
   ========================================================================== */

@media (min-width: 1920px) {

    body.menu-catalogo .com-miaapp__body > .container-fluid,
    body.menu-catalogo .com-miaapp main.container-fluid {
        max-width: 1760px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 40px;
        padding-right: 40px;
    }

    body.menu-catalogo .product-detail-layout,
    body.menu-catalogo .product-detail-wrapper,
    body.menu-catalogo .detail-wrapper {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 2560px) {

    body.menu-catalogo .com-miaapp__body > .container-fluid,
    body.menu-catalogo .com-miaapp main.container-fluid {
        max-width: 2200px;
        padding-left: 60px;
        padding-right: 60px;
    }

    body.menu-catalogo .product-detail-layout,
    body.menu-catalogo .product-detail-wrapper,
    body.menu-catalogo .detail-wrapper {
        max-width: 1900px;
    }
}


/* ==========================================================================
   4. HOME — MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    #section-id-3870a0bd-c862-4d09-8b55-ccc7f9b9c69d {
        min-height: 650px !important;
        padding: 110px 20px 55px !important;
        background-position: 58% center !important;
        background-size: cover !important;
    }

    #section-id-3870a0bd-c862-4d09-8b55-ccc7f9b9c69d > .sppb-row-overlay {
        background-color: rgba(0, 0, 0, .58) !important;
    }

    #sppb-addon-c737fa37-206b-4476-9eca-3a842fc7adef {
        padding: 0 !important;
    }

    #sppb-addon-wrapper-c737fa37-206b-4476-9eca-3a842fc7adef {
        margin: 0 !important;
    }

    #sppb-addon-c737fa37-206b-4476-9eca-3a842fc7adef
    .sppb-addon-header .sppb-addon-title {
        max-width: 560px;
        margin: 0 auto !important;
        font-size: clamp(30px, 8vw, 40px) !important;
        line-height: 1.12 !important;
        text-align: center;
    }

    #sppb-addon-d82aed43-3cda-4990-b376-81a22ec176a1 {
        padding: 22px 0 28px !important;
    }

    #sppb-addon-d82aed43-3cda-4990-b376-81a22ec176a1
    .sppb-addon-content {
        max-width: 500px;
        margin: 0 auto;
        font-size: 16px !important;
        line-height: 1.5 !important;
        text-align: center;
    }

    #sppb-addon-45fe1441-3018-4419-98f5-4c08369e3af0
    .sppb-addon-button-group {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    #sppb-addon-45fe1441-3018-4419-98f5-4c08369e3af0
    .sppb-btn {
        width: 100%;
        margin: 6px 0 !important;
        padding: 13px 18px !important;
        font-size: 15px !important;
    }

    #section-id-6e31efb1-fc9d-4a91-9056-cc265df4fd7d {
        padding: 50px 18px !important;
        margin-top: 0 !important;
    }

    #sppb-addon-1e60be5a-ec4a-4c8d-9132-5e33c554073a {
        padding: 0 !important;
    }

    #sppb-addon-1e60be5a-ec4a-4c8d-9132-5e33c554073a
    .sppb-addon-title {
        font-size: 28px !important;
        line-height: 1.18 !important;
    }

    #sppb-addon-1e60be5a-ec4a-4c8d-9132-5e33c554073a
    .sppb-addon-content {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }

    /* Card categorie home */
    #sppb-addon-e550a205-520d-45ff-898c-05b7d7431418,
    #sppb-addon-6d7f4820-19d1-4e8d-b819-7fce9d5f8eec,
    #sppb-addon-e43a6a55-e23c-4e92-a9cc-fd08574331a6,
    #sppb-addon-455cc517-0b96-4b98-bedb-25e43dd4f2d1,
    #sppb-addon-cf775f13-0b0c-49fa-b6e0-5a1f362a2880,
    #sppb-addon-c1b46e24-3954-4a3e-b014-1cf4fc351727,
    #sppb-addon-994d8bca-3b84-4ff1-8d42-045046f09fa4,
    #sppb-addon-dfb2ada5-e712-42e9-9e62-0dfe39a033ed,
    #sppb-addon-56c11c87-7696-4f78-86dd-7d300a928188,
    #sppb-addon-032b02e9-d2b6-44cb-84c3-88a4dc6c4bf6,
    #sppb-addon-a1798ed7-2922-479a-86bf-8e1a3abe3dba,
    #sppb-addon-a990a042-17b5-4de9-9b90-41877fd54833 {
        min-height: 300px;
        padding: 95px 25px !important;
        background-position: center center !important;
    }
}


/* ==========================================================================
   5. HEADER / OFFCANVAS — MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    #sp-header {
        min-height: 74px !important;
    }

    #sp-header .container,
    #sp-header .container-inner {
        min-height: 74px !important;
    }

    #sp-header .logo-image,
    #sp-header .logo-image-phone {
        height: 56px !important;
        max-width: 270px !important;
    }

    #sp-header .burger-icon,
    #sp-header .offcanvas-toggler {
        margin-left: auto !important;
    }

    #sp-header .offcanvas-toggler {
        width: 52px !important;
        height: 52px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Non forziamo la larghezza dell'offcanvas:
       Helix deve gestire autonomamente width/transform. */

    .offcanvas-menu .offcanvas-inner {
        padding: 26px 22px !important;
    }

    .offcanvas-menu .menu > li > a,
    .offcanvas-menu .menu > li > span {
        padding: 12px 0 !important;
        font-size: 17px !important;
        line-height: 1.3 !important;
    }
}


/* ==========================================================================
   6. CHI SIAMO — FEATURES MOBILE 2 × 2
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-company-features {
        padding: 28px 14px !important;
    }

    .calati-company-features > .sppb-row-container,
    .calati-company-features > .sppb-container-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .calati-company-features > .sppb-row-container > .sppb-row,
    .calati-company-features > .sppb-container-inner > .sppb-row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .calati-company-features > .sppb-row-container > .sppb-row > .sppb-row-column,
    .calati-company-features > .sppb-container-inner > .sppb-row > .sppb-row-column {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
        margin-bottom: 12px !important;
    }

    .calati-company-features .calati-feature-column {
        display: flex !important;
        height: 100% !important;
        min-height: 150px !important;
        padding: 20px 10px !important;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 8px;
        text-align: center !important;
    }

    .calati-company-features .calati-feature-column::after {
        display: none !important;
    }

    .calati-company-features .calati-feature-column:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,.14) !important;
    }

    .calati-company-features .calati-feature-column .sppb-row,
    .calati-company-features .calati-feature-column .sppb-inner-row,
    .calati-company-features .calati-feature-column .sppb-nested-row {
        display: block !important;
    }

    .calati-company-features .calati-feature-column .sppb-row-column,
    .calati-company-features .calati-feature-icon-column,
    .calati-company-features .calati-feature-copy {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .calati-feature-icon-column {
        justify-content: center !important;
        margin-bottom: 10px !important;
    }

    .calati-feature-icon {
        text-align: center !important;
    }

    .calati-feature-icon i,
    .calati-feature-icon svg {
        font-size: 36px !important;
    }

    .calati-feature-copy {
        align-items: center !important;
        text-align: center !important;
    }

    .calati-feature-title,
    .calati-feature-title .sppb-addon-title {
        margin: 0 0 7px !important;
        font-size: 16px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .calati-feature-text,
    .calati-feature-text p {
        margin: 0 !important;
        font-size: 12.5px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
}


/* ==========================================================================
   7. CHI SIAMO — QUALITÀ / COMPETENZA / INNOVAZIONE
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-values-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .calati-values-section > .sppb-row-container,
    .calati-values-section > .sppb-container-inner {
        width: 100% !important;
        max-width: 100% !important;
    }

    .calati-values-section > .sppb-row-container > .sppb-row,
    .calati-values-section > .sppb-container-inner > .sppb-row {
        row-gap: 16px !important;
    }

    .calati-values-section > .sppb-row-container > .sppb-row > .sppb-row-column,
    .calati-values-section > .sppb-container-inner > .sppb-row > .sppb-row-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 0 !important;
    }

    .calati-values-intro {
        margin-bottom: 12px !important;
    }

    .calati-values-section .calati-value-card {
        min-height: 300px !important;
        margin-bottom: 0 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }
}


/* ==========================================================================
   8. CHI SIAMO — 45° ANNIVERSARIO MOBILE CENTRATO
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-45-section {
        text-align: center !important;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .calati-45-logo,
    .calati-45-copy,
    .calati-45-video {
        text-align: center !important;
    }

    .calati-45-logo img {
        display: block !important;
        width: auto !important;
        max-width: 240px !important;
        margin: 0 auto 28px !important;
    }

    .calati-45-copy {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .calati-45-title,
    .calati-45-title .sppb-addon-title {
        max-width: 500px;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .calati-45-title .sppb-addon-title {
        font-size: 30px !important;
        line-height: 1.12 !important;
    }

    .calati-45-title::after {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .calati-45-text,
    .calati-45-text .sppb-addon-content,
    .calati-45-text p {
        max-width: 520px;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    .calati-45-meta,
    .calati-45-meta .sppb-addon-content,
    .calati-45-meta .sppb-addon-title,
    .calati-45-meta p {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .calati-45-video {
        width: 100% !important;
        margin-top: 28px !important;
    }

    .calati-45-video-addon {
        width: 100% !important;
        max-width: 560px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .calati-45-video iframe,
    .calati-45-video video {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 16 / 9;
        height: auto !important;
        border: 0;
    }
}


/* ==========================================================================
   9. CERTIFICAZIONI — MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    .calati-certifications-layout {
        padding-top: 28px !important;
        padding-bottom: 45px !important;
    }

    .calati-certifications-layout .sppb-row-container {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .calati-cert-sidebar-column,
    .calati-cert-sidebar-column > .sppb-column,
    .calati-cert-sidebar-column .sppb-column-addons,
    .calati-cert-sidebar {
        position: static !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        overflow: visible !important;
    }

    .calati-cert-sidebar {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        margin-bottom: 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    .calati-cert-sidebar .sppb-addon-wrapper,
    .calati-cert-sidebar .sppb-addon,
    .calati-cert-sidebar .sppb-addon-content,
    .calati-cert-menu-item {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: none !important;
        transform: none !important;
    }

    .calati-cert-menu-item {
        position: relative !important;
        background: #ffffff !important;
        border: 1px solid #dce3e9 !important;
        border-left: 4px solid #159bd7 !important;
        border-radius: 6px !important;
        overflow: hidden !important;
        box-shadow: none !important;
    }

    .calati-cert-menu-item p,
    .calati-cert-menu-item .sppb-addon-text,
    .calati-cert-menu-item .sppb-addon-text-block {
        display: none !important;
    }

    .calati-cert-menu-item a {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        min-height: 58px !important;
        padding: 12px 48px 12px 18px !important;
        margin: 0 !important;
        color: #12395c !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        text-align: left !important;
        text-decoration: none !important;
    }

    .calati-cert-menu-item i,
    .calati-cert-menu-item svg {
        display: none !important;
    }

    .calati-cert-menu-item::after {
        content: "›";
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-52%);
        color: #159bd7;
        font-size: 26px;
        line-height: 1;
        pointer-events: none;
    }

    .calati-cert-menu-item.active,
    .calati-cert-menu-item.is-active {
        background: #159fd5 !important;
        border-color: #159fd5 !important;
        border-left-color: #0877ba !important;
    }

    .calati-cert-menu-item.active a,
    .calati-cert-menu-item.is-active a {
        color: #ffffff !important;
    }

    .calati-cert-menu-item.active::after,
    .calati-cert-menu-item.is-active::after {
        color: #ffffff !important;
    }

    .calati-cert-content {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin: 28px 0 0 !important;
        padding: 0 !important;
    }

    .calati-cert-section {
        margin: 0 0 22px !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .calati-cert-section .sppb-addon-title {
        margin: 0 !important;
        color: #12395c !important;
        font-size: 30px !important;
        font-weight: 800 !important;
        line-height: 1.12 !important;
    }

    .calati-cert-section::after {
        content: "";
        display: block;
        width: 86px;
        height: 3px;
        margin-top: 22px;
        background: #159bd7;
    }

    .calati-cert-content p,
    .calati-cert-content .sppb-addon-content {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .calati-cert-content .sppb-addon-wrapper {
        max-width: 100% !important;
    }

    .calati-cert-content .calati-cert-document,
    .calati-cert-content .calati-cert-row {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


/* ==========================================================================
   10. CATALOGO + PAGINA PRODOTTO — MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    body.menu-catalogo .com-miaapp__body,
    body.menu-catalogo main.container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    body.menu-catalogo .breadcrumb {
        margin-top: 8px !important;
        margin-bottom: 20px !important;
        font-size: 13px !important;
    }

    body.menu-catalogo h1,
    body.menu-catalogo .page-title {
        font-size: 28px !important;
        line-height: 1.15 !important;
        margin-bottom: 20px !important;
    }

    body.menu-catalogo .catalog-filters,
    body.menu-catalogo .filters-wrapper {
        margin-bottom: 22px !important;
    }

    body.menu-catalogo input[type="search"],
    body.menu-catalogo input[type="text"],
    body.menu-catalogo select {
        min-height: 46px !important;
        font-size: 15px !important;
    }

    body.menu-catalogo .row {
        row-gap: 18px;
    }

    body.menu-catalogo .product-card,
    body.menu-catalogo .card {
        height: 100%;
        margin-bottom: 0 !important;
    }

    body.menu-catalogo .product-card img,
    body.menu-catalogo .card img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }

    body.menu-catalogo .product-card .card-body,
    body.menu-catalogo .card .card-body {
        padding: 16px !important;
    }

    body.menu-catalogo .product-card h3,
    body.menu-catalogo .card h3 {
        font-size: 18px !important;
        line-height: 1.2 !important;
    }

    body.menu-catalogo .product-detail-layout,
    body.menu-catalogo .product-detail-wrapper {
        display: block !important;
    }

    body.menu-catalogo .product-detail-layout > *,
    body.menu-catalogo .product-detail-wrapper > * {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    body.menu-catalogo .product-gallery,
    body.menu-catalogo .product-images {
        margin-bottom: 28px !important;
    }

    body.menu-catalogo .product-gallery img,
    body.menu-catalogo .product-images img {
        display: block;
        width: 100% !important;
        height: auto !important;
        margin: 0 auto;
        object-fit: contain;
    }

    body.menu-catalogo .product-detail-layout h1,
    body.menu-catalogo .product-detail-wrapper h1 {
        font-size: 30px !important;
        line-height: 1.1 !important;
        margin-bottom: 18px !important;
    }

    body.menu-catalogo .product-detail-layout p,
    body.menu-catalogo .product-detail-wrapper p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    body.menu-catalogo .documentation,
    body.menu-catalogo .product-documentation {
        margin-top: 30px !important;
    }

    body.menu-catalogo .documentation .card,
    body.menu-catalogo .product-documentation .card {
        margin-bottom: 14px !important;
    }

    body.menu-catalogo .reserved-area,
    body.menu-catalogo .area-riservata {
        margin-top: 28px !important;
    }
}


/* ==========================================================================
   11. MOBILE — RIFINITURE GENERALI
   ========================================================================== */

@media (max-width: 767.98px) {

    .sppb-section {
        scroll-margin-top: 85px;
    }

    .sppb-addon-title {
        overflow-wrap: anywhere;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .sppb-btn,
    .btn {
        max-width: 100%;
        white-space: normal;
        line-height: 1.25;
    }

    iframe[src*="google"],
    iframe[src*="maps"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    .back-to-top,
    #sp-scroll-up,
    .scrollup {
        right: 16px !important;
        bottom: 18px !important;
    }
}


/* ==========================================================================
   12. FOOTER / SP-BOTTOM — MOBILE
   Allineamento e compattazione definitiva
   ========================================================================== */

@media (max-width: 767.98px) {

    #sp-bottom .cm-footer-main {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    #sp-bottom .cm-footer-main > .sppb-container-inner,
    #sp-bottom .cm-footer-main > .sppb-row-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #sp-bottom .cm-footer-main > .sppb-container-inner > .sppb-row,
    #sp-bottom .cm-footer-main > .sppb-row-container > .sppb-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        row-gap: 24px !important;
    }

    #sp-bottom .cm-footer-main
    > .sppb-container-inner
    > .sppb-row
    > .sppb-row-column,
    #sp-bottom .cm-footer-main
    > .sppb-row-container
    > .sppb-row
    > .sppb-row-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #sp-bottom .cm-footer-main .cm-footer-column,
    #sp-bottom .cm-footer-main .cm-footer-contact-column {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    #sp-bottom .cm-footer-main .cm-footer-column .sppb-column-addons,
    #sp-bottom .cm-footer-main .cm-footer-contact-column .sppb-column-addons,
    #sp-bottom .cm-footer-main .cm-footer-column .sppb-addon-wrapper,
    #sp-bottom .cm-footer-main .cm-footer-contact-column .sppb-addon-wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Titolo CALATI MARCO SRL:
       annulla il margin-left:52px presente nel CSS originale. */
    #sp-bottom .cm-footer-main .cm-footer-contact-title {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 24px 0 !important;
        padding: 0 !important;
        text-align: left !important;
    }

    #sp-bottom .cm-footer-main .cm-footer-contact-title .sppb-addon-title,
    #sp-bottom .cm-footer-main .cm-footer-contact-title h1,
    #sp-bottom .cm-footer-main .cm-footer-contact-title h2,
    #sp-bottom .cm-footer-main .cm-footer-contact-title h3,
    #sp-bottom .cm-footer-main .cm-footer-contact-title h4,
    #sp-bottom .cm-footer-main .cm-footer-contact-title h5,
    #sp-bottom .cm-footer-main .cm-footer-contact-title h6 {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
    }

    #sp-bottom .cm-footer-main .cm-footer-contact,
    #sp-bottom .cm-footer-main .cm-footer-contact .sppb-addon-content,
    #sp-bottom .cm-footer-main .cm-footer-contact p {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }

    /* Pulsante AREA RISERVATA:
       annulla il margin-left:43px/52px presente nel CSS originale. */
    #sp-bottom .cm-footer-main .cm-footer-contact-column
    .sppb-addon-wrapper.addon-root-button {
        width: 100% !important;
        max-width: 100% !important;
        margin: 24px 0 0 0 !important;
        padding: 0 !important;
    }

    #sp-bottom .cm-footer-main .cm-footer-contact-column
    .sppb-button-wrapper {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
    }

    #sp-bottom .cm-footer-main
    .cm-footer-contact-column a.cm-footer-private,
    #sp-bottom .cm-footer-main
    .cm-footer-contact-column .cm-footer-private.sppb-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 58px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    #sp-bottom .cm-footer-main .cm-footer-title,
    #sp-bottom .cm-footer-main .cm-footer-nav,
    #sp-bottom .cm-footer-main .cm-footer-social {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
}


/* ==========================================================================
   13. FOOTER JOOMLA BOTTOM — MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {

    #sp-footer {
        padding-top: 30px !important;
        padding-bottom: 22px !important;
    }

    #sp-footer .container,
    #sp-footer .container-inner {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    #sp-footer .row {
        row-gap: 20px !important;
    }

    #sp-footer .sp-module {
        margin: 0 !important;
        padding: 0 !important;
    }

    #sp-footer .sp-module-title {
        margin: 0 0 10px !important;
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    #sp-footer p {
        margin: 0 0 6px !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    #sp-footer ul {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    #sp-footer li {
        margin: 0 0 6px !important;
        padding: 0 !important;
    }

    #sp-footer a {
        font-size: 14px !important;
        line-height: 1.45 !important;
    }
}


/* ==========================================================================
   FINE MODIFICHE CONSOLIDATE 31/08/2026
   ========================================================================== */


.article-author-information {
    display: none;
}

.related-article-list-container {
    display: none;
}

.article-details
Specificity: (0,1,0)
 {
    position: relative;
    margin-top: 40px;
}

body .sppb-btn.sppb-btn-xs, body .btn.sppb-btn-xs {
    font-size: 18px;
    padding: 8px 24px;
}

.article-info {
    display: none;
}

.article-ratings {
    display: none;
}

nav.pagenavigation {
    display: none;
}