﻿/* === Corpo del sito === */
body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* === Main === */
#fh5co-main {
    background-color: #ffffff;
    padding: 40px 0;
}

/* === Card === */
.fh5co-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

    .fh5co-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .fh5co-card img.card-img {
        width: 100%;
        height: auto;
        display: block;
    }

.fh5co-card-body {
    padding: 20px;
    text-align: left;
}

    .fh5co-card-body h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #000000;
    }

    .fh5co-card-body p {
        font-size: 14px;
        color: #222222;
        margin-bottom: 8px;
    }

    .fh5co-card-body .cta-link {
        color: #333333;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .fh5co-card-body .cta-link:hover {
            color: #0000CC;
        }

        .fh5co-card-body .cta-link::after {
            content: " →";
            color: #0000CC;
            font-weight: bold;
        }

/* === Header/Menu === */
#fh5co-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

    #fh5co-wrap a {
        color: #333333;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        #fh5co-wrap a:hover {
            color: #0000CC;
        }

/* === Hero e Overlay === */
#hero-background,
#overlay-section-blue {
    background-color: #ffffff;
    color: #333333;
    position: relative;
    z-index: 1;
}

    #hero-background img {
        display: block;
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
    }

/* === Sezione con immagine di sfondo === */
.fh5co-bg-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* === Bottoni === */
.btn-primary {
    background-color: #0000CC;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #000000;
        color: #ffffff;
    }

.btn-outline {
    border: 1px solid #0000CC;
    color: #0000CC;
    background-color: transparent;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background-color: #000000;
        color: #ffffff;
    }


/* === Social Icons Neri con Hover Blu === */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

    .social-icons a {
        display: inline-flex;
        width: 40px; /* dimensione uniforme */
        height: 40px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        background-color: #000000; /* sfondo nero */
        color: #ffffff; /* icona bianca */
        border: none;
    }

        /* Hover: blu brand */
        .social-icons a:hover {
            background-color: #0000CC; /* blu brand */
            color: #ffffff; /* icona bianca */
            border: 2px solid #0000CC;
        }


/* === Footer === */
footer {
    background-color: #f8f9fa;
    color: #333333;
    padding: 2rem 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

    footer h3, footer .title {
        color: #0000CC;
        margin-bottom: 0.3rem;
        font-weight: 600;
    }

    footer p {
        margin-bottom: 0.3rem;
    }

    footer a {
        color: #3366FF;
        text-decoration: none;
    }

        footer a:hover {
            color: #0033FF;
            text-decoration: underline;
        }

/* === Responsive Footer === */
@media (max-width: 768px) {
    footer .col-md-6 {
        margin-bottom: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    footer img {
        max-width: 120px;
        height: auto;
    }
}

/* === Titoli e testi === */

.section-title {
    text-align: center !important; /* centra il titolo */
    font-size: 2rem; /* dimensione coerente */
    font-weight: 700; /* grassetto pieno */
    color: #000000; /* nero */
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.9rem !important; /* più grande (≈22px) */
    line-height: 1.7 !important; /* più spazio tra le righe */
    color: #666666 !important; /* grigio più chiaro */
    text-align: justify;
}


.solution-highlight {
    font-weight: 700;
    color: #222222;
    text-decoration: underline;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 2px 4px;
}

.xsolution-highlight {
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 2px 4px;
}

.highlight {
    color: #000000;
    font-weight: 700;
    padding: 0 4px;
    border-radius: 3px;
}

/* === Immagini responsive === */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
}

/* === Icone === */
.icon-black {
    color: #000000 !important;
    margin-bottom: 15px;
    display: inline-block;
}

.fh5co-arrow i {
    color: #0000CC;
    transition: color 0.3s ease;
}

    .fh5co-arrow i:hover {
        color: #333333;
    }

/* Testo paragrafi più chiaro */
#fh5co-features p {
    color: #777777 !important; /* grigio più chiaro */
    text-align: justify; /* testo giustificato */
}

/* Heading */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    margin: 0 0 20px 0;
    padding: 0;
    color: #000000; /* nero pieno */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* grassetto */
}

/* Dimensioni titoli */
h1, .h1 {
    font-size: 2.2rem; /* ≈ 35px */
    line-height: 1.7;
    text-align: center; /* centrato */
}

h2, .h2 {
    font-size: 26px;
    line-height: 1.7;
    text-align: center; /* centrato */
}

h3, .h3 {
    font-size: 1.6rem; /* ≈ 25px */
    line-height: 1.7;
}

h4, .h4 {
    font-size: 1.3rem; /* ≈ 21px */
    line-height: 1.7;
}

h5, .h5 {
    font-size: 1.1rem; /* ≈ 18px */
    line-height: 1.7;
}

h6, .h6 {
    font-size: 1rem; /* ≈ 16px */
    line-height: 1.7;
}

.section-subtitle {
    font-size: 2rem;
    line-height: 1.7;
    color: #666666;
}
/* Titolo sidebar */
.sidebar-heading {
    font-family: 'Montserrat', sans-serif; /* o il font che usi nel resto del sito */
    font-size: 1.4rem; /* ≈ 22px, più grande e leggibile */
    font-weight: 700; /* grassetto */
    color: #000000; /* nero pieno */
    text-align: center; /* centrato */
    margin-bottom: 1rem; /* spazio sotto */
}

.section-list li {
    font-size: 1.9rem; /* ≈ 18px, più grande dei paragrafi normali */
    line-height: 1.7; /* più spazio tra le righe */
    color: #555555; /* grigio medio */
    text-align: left; /* allineamento a sinistra */
    margin-bottom: 0.8rem; /* spazio tra i punti */
}

.section-list .check-icon {
    color: #000000; /* blu brand per l’icona ✔ */
    margin-right: 8px;
    font-weight: bold;
}

/* Uniforma i titoli della sezione steps */
#fh5co-steps .section-title {
    font-family: 'Montserrat', sans-serif !important; /* stesso font degli altri */
    font-size: 2rem !important; /* ≈ 32px */
    font-weight: 700 !important; /* grassetto */
    color: #222222 !important; /* nero più chiaro */
    text-align: center !important; /* centrato */
    margin-bottom: 1.5rem;
}
/* Uniforma i titoli delle fasi */
.bs-wizard-stepnum h4 {
    font-family: 'Montserrat', sans-serif !important; /* stesso font dei titoli */
    font-size: 1.5rem !important; /* ≈ 21px */
    font-weight: 700 !important; /* grassetto */
    color: #222222 !important; /* nero più chiaro */
    text-align: center;
    margin-bottom: 10px;
}
/* Bottone TeamViewer */
.teamviewer-button {
    width: 120px;
    height: 60px;
    margin-left: auto; /* spinge a destra su desktop */
    position: relative;
}

    .teamviewer-button img {
        width: 100%;
        height: auto;
        border: none;
        display: block;
    }

    .teamviewer-button span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ffffff;
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 11px;
        font-weight: bold;
        text-align: center;
        line-height: 1.2em;
        background: rgba(0,0,0,0.4);
        padding: 2px 6px;
        border-radius: 3px;
    }

/* Responsive: su schermi piccoli il bottone va sotto il titolo */
@media (max-width: 768px) {
    .heading {
        flex-direction: column; /* titolo sopra, bottone sotto */
        align-items: center;
    }

    .teamviewer-button {
        margin: 10px 0 0 0; /* spazio sopra */
    }
}

#fh5co-testimonial h2 {
    text-align: center;
    margin: 0 auto; /* forza centratura */
    display: block;
}

.solutionsmall2 {
    font-size: 26px; /* grandezza testo */
    text-decoration: underline; /* sottolineatura */
    font-weight: bold; /* grassetto */
    color: white; /* colore bianco */
}

.form-wrapper {
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 30px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* Titolo del box */
.form-title {
    font-size: 1.6rem; /* ≈ 26px */
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #0066cc; /* linea blu sotto il titolo */
    padding-bottom: 10px;
}

/* Nota privacy */
.privacy-note {
    font-size: 0.75rem;
    text-align: justify;
    margin-top: 20px;
    color: #555;
}

.form-wrapper {
    border: 1px solid #dddddd; /* bordo grigio chiaro */
    border-radius: 8px; /* angoli arrotondati */
    padding: 30px; /* spazio interno */
    background-color: #f9f9f9; /* sfondo chiaro */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* ombra leggera */
    margin-bottom: 30px; /* spazio sotto */
}

.form-title {
    font-size: 1.6rem; /* ≈ 26px */
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #0066cc; /* linea blu sotto */
    padding-bottom: 10px;
}

#quizAnswer,
label[for="quizAnswer"] {
    font-weight: normal; /* niente grassetto */
}

.col-md-6 p a {
    color: #333333; /* colore base come il menu (scegli quello che usi) */
    text-decoration: none; /* niente sottolineatura */
    transition: color 0.3s; /* transizione morbida */
}

    .col-md-6 p a:hover {
        color: #0000CC; /* blu al passaggio del mouse blu Seven*/
    }


@media (max-width: 576px) {
    /* Titoli più compatti */
    h1, .h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    h2, .h2 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    h3, .h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    /* Liste più compatte */
    .section-list li {
        font-size: 1rem; /* ≈ 16px */
        line-height: 1.4;
        margin-bottom: 0.4rem; /* meno spazio tra le voci */
    }

    .check-icon {
        font-size: 0.9rem;
        margin-right: 6px;
    }

    /* Bottone TeamViewer più piccolo e centrato */
    .teamviewer-button {
        width: 100px;
        height: 50px;
        margin: 1rem auto; /* centrato sotto il titolo */
    }

        .teamviewer-button span {
            font-size: 10px;
            padding: 2px 4px;
        }
}
/* Regole base */
footer {
    background-color: #f8f9fa;
    color: #333333;
    padding: 2rem 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Regole aggiuntive per centrare il contenuto */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.logo-container {
    display: flex;
    align-items: center;
    padding: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

@media (max-width: 768px) {
    .logo {
        height: 30px;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px !important; /* forza la dimensione */
        line-height: 1.4;
    }

    h1 {
        font-size: 20px !important;
    }

    h2 {
        font-size: 18px !important;
    }

    p, label, input, textarea {
        font-size: 14px !important;
    }
}

/* === Responsive Mobile === */
@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
        line-height: 1.4;
        background-color: #ffffff; /* bianco puro */
        color: #333333; /* testo grigio */
        margin: 0;
        padding: 0;
    }

    h1 {
        font-size: 20px;
        color: #000000;
    }

    h2 {
        font-size: 18px;
        color: #000000;
    }

    p, label, input, textarea {
        font-size: 14px;
        color: #222222;
    }

    /* Card */
    .fh5co-card-body {
        padding: 15px;
    }

        .fh5co-card-body h3 {
            font-size: 20px;
        }

        .fh5co-card-body p {
            font-size: 13px;
        }

    /* Menu/Header */
    #fh5co-wrap a {
        display: inline-block;
        padding: 8px 10px;
        color: #333333;
    }

        #fh5co-wrap a:active,
        #fh5co-wrap a:active,
        #fh5co-wrap a:focus {
            background-color: #f8f9fa !important; /* prova */
            color: #0000CC !important;
        }

    /* Bottoni */
    .btn-primary, .btn-outline {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Footer */
    footer {
        font-size: 13px;
        padding: 1rem 0.5rem;
        background-color: #f8f9fa;
        color: #333333;
    }

        footer h3, footer .title {
            font-size: 15px;
            color: #0000CC;
        }
}
/*-----------------------------------------------------------*/
/* === Forza tema chiaro anche in dark mode === */
/* === Responsive Mobile con colori forzati === */
@media screen and (max-width: 480px) {
    body {
        background-color: #ffffff !important; /* bianco puro */
        color: #333333 !important; /* testo grigio */
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin: 0;
        padding: 0;
    }

    h1, h2, h3 {
        color: #000000 !important;
    }

    p, p.section-text {
        font-size: 14px !important;
        line-height: 1.4 !important;
        color: #222222 !important;
        max-width: 90% !important; /* centrato e più stretto */
        margin: 0 auto !important;
    }

    h2.section-title {
        font-size: 20px !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    /* Header/Menu */
    #fh5co-wrap {
        background: #f8f9fa !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }

        #fh5co-wrap a {
            color: #333333 !important;
        }

            #fh5co-wrap a:hover {
                color: #0000CC !important; /* blu brand */
            }

            #fh5co-wrap a:active,
            #fh5co-wrap a:focus {
                background-color: transparent !important; /* prova */
                color: #0000CC !important;
            }

    /* Bottoni */
    .btn-primary {
        background-color: #0000CC !important;
        color: #ffffff !important;
    }

        .btn-primary:hover {
            background-color: #000000 !important;
            color: #ffffff !important;
        }

    .btn-outline {
        border: 1px solid #0000CC !important;
        color: #0000CC !important;
        background-color: transparent !important;
    }

        .btn-outline:hover {
            background-color: #000000 !important;
            color: #ffffff !important;
        }

    /* Footer */
    footer {
        background-color: #f8f9fa !important;
        color: #333333 !important;
        font-size: 13px !important;
        padding: 1rem 0.5rem !important;
    }

        footer h3, footer .title {
            color: #0000CC !important;
        }

        footer a {
            color: #3366FF !important;
        }

            footer a:hover {
                color: #0033FF !important;
            }

    /* Social Icons */
    .social-icons a {
        background-color: #000000 !important;
        color: #ffffff !important;
    }

        .social-icons a:hover {
            background-color: #0000CC !important;
            color: #ffffff !important;
            border: 2px solid #0000CC !important;
        }
}

/* Titoli desktop */
h2.section-title {
    font-size: 26px !important;
    font-weight: 600 !important;
    color: #222222 !important;
}

/* Paragrafi desktop */
p, p.section-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #222222 !important;
}
/* Footer note desktop */
.footer-note {
    font-size: 0.9rem !important; /* circa 14-15px */
    color: #222222 !important;
    margin-top: -20px !important;
    text-align: center;
}

    .footer-note span {
        font-size: 0.7rem !important; /* credits più piccoli */
    }

/* Footer note mobile */
@media screen and (max-width: 480px) {
    .footer-note {
        font-size: 0.75rem !important; /* circa 12px */
    }

        .footer-note span {
            font-size: 0.65rem !important; /* credits ancora più piccoli */
        }
}

/* forzatura menu */
#fh5co-wrap {
    background: #f8f9fa !important; /* grigio chiaro */
    border-bottom: 1px solid #e0e0e0 !important;
}

    #fh5co-wrap a {
        color: #333333 !important;
    }

        #fh5co-wrap a:hover {
            color: #0000CC !important; /* blu brand */
        }

        #fh5co-wrap a:active,
        #fh5co-wrap a:focus {
            background-color: #f8f9fa !important; /* prova */
            color: #0000CC !important;
        }


/* === Barra solo per mobile === */
@media screen and (max-width: 480px) {
    #fh5co-wrap, .navbar {
        background-color: #f8f9fa !important; /* colore chiaro */
        color: #333333 !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }

        #fh5co-wrap a, .navbar a {
            color: #333333 !important;
            text-decoration: none !important;
        }

            #fh5co-wrap a:hover, .navbar a:hover {
                color: #0000CC !important; /* blu brand */
            }
}
/* Sidebar più stretta su mobile */
@media screen and (max-width: 480px) {
    #fh5co-sidebar {
        max-width: 90% !important; /* non occupa tutto lo schermo */
        margin: 0 auto !important; /* centrato */
    }

        #fh5co-sidebar .sidebar-box {
            padding: 10px !important;
        }
}

:root {
    color-scheme: only light !important;
}

@media screen and (max-width: 480px) {
    #fh5co-sidebar {
        order: -1; /* porta la sidebar sopra */
    }
}
/* === Navbar chiara: desktop e mobile === */

/* Barra principale */
#fh5co-wrap {
    background-color: #f8f9fa !important; /* grigio chiaro */
    border-bottom: 1px solid #e0e0e0 !important;
}

    /* Link barra */
    #fh5co-wrap a {
        color: #333333 !important; /* grigio scuro */
        background-color: transparent !important;
        text-decoration: none !important;
        transition: color 0.3s, background-color 0.3s;
    }

        /* Hover link */
        #fh5co-wrap a:hover {
            color: #0000CC !important; /* blu brand */
            background-color: transparent !important;
        }

        /* Active / focus link */
        #fh5co-wrap a:active,
        #fh5co-wrap a:focus,
        #fh5co-wrap li.active > a,
        #fh5co-wrap li.current-menu-item > a {
            color: #0000CC !important; /* blu brand */
            background-color: #f8f9fa !important; /* sfondo chiaro */
            outline: none !important;
        }

/* Menu mobile */
@media (max-width: 768px) {
    #fh5co-mobile-menu,
    #fh5co-mobile-menu-ul {
        background-color: #f8f9fa !important;
    }

        #fh5co-mobile-menu a {
            color: #333333 !important;
            background-color: transparent !important;
        }

            #fh5co-mobile-menu a:hover,
            #fh5co-mobile-menu a:active,
            #fh5co-mobile-menu a:focus {
                color: #0000CC !important;
                background-color: transparent !important;
                outline: none !important;
            }

    /* Hamburger icon */
    .js-fh5co-nav-toggle .fh5co-nav-white i,
    .js-fh5co-nav-toggle.fh5co-nav-white.active i {
        background-color: #333333 !important;
    }
}

@media screen and (max-width: 480px) {
    /* Forza tema chiaro */
    :root {
        color-scheme: light !important;
    }

    /* Barra superiore chiara */
    .navbar, #fh5co-wrap {
        background-color: #f8f9fa !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }

        /* Link della navbar */
        .navbar a, #fh5co-wrap a {
            color: #333 !important;
        }

            .navbar a:hover, #fh5co-wrap a:hover {
                color: #0000CC !important;
            }

    /* Toggle hamburger su mobile */
    .navbar-toggler {
        background-color: transparent !important;
        border: none !important;
    }

    .navbar-toggler-icon {
        background-image: none !important; /* rimuove icona blu di default */
        width: 24px;
        height: 2px;
        background-color: #333; /* linea scura */
        display: block;
        position: relative;
    }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: "";
            width: 24px;
            height: 2px;
            background-color: #333;
            display: block;
            position: absolute;
            left: 0;
        }

        .navbar-toggler-icon::before {
            top: -6px;
        }

        .navbar-toggler-icon::after {
            top: 6px;
        }
}

/*/* Nasconde il menu desktop e mostra solo quello mobile sotto 992px */
@media (max-width: 991px) {
    #fh5co-header-section {
        display: none !important; /* Nasconde il menu desktop */
    }

    #fh5co-mobile-menu {
        display: block !important; /* Mostra il menu mobile */
    }
}

/* Mostra il menu desktop su desktop e nasconde quello mobile */
@media (min-width: 992px) {
    #fh5co-header-section {
        display: block !important; /* Mostra il menu desktop */
    }

    #fh5co-mobile-menu {
        display: none !important; /* Nasconde il menu mobile */
    }
}

@media (max-width: 768px) {
    footer {
        background-color: #fff; /* colore di sfondo */
    }

        footer .footer-title {
            color: #000 !important;
        }

        footer .footer-text {
            color: #000 !important;
            font-size: 12px;
            text-align: center;
        }

        footer .footer-link {
            color: #0033FF !important;
            text-decoration: none;
        }

            footer .footer-link:hover {
                text-decoration: underline;
            }
}

/* #f8f9fa grigio chiaro header e footer*/
/* #F2F2F2 grigio pelo piu scuro */
/* #0000CC;  blu seven net */
/* #4276F8 !important; blu bottone dello scroll */