        /* ---------- TOPBAR ---------- */

        .topbar {
            background: #0c5a2b;
            color: white;
            font-size: 13px;
            padding: 8px 0;
        }

        .topbar a {
            color: white;
            margin-left: 12px;
        }

        /* ---------- LOGOBAR ---------- */

        .logobar {
            background: #f3f3f3;
            padding: 22px 0;
        }

        .logo img {
            max-height: 90px;
            padding: 3px;
        }

        /* CONTACT BOX */

        .header-info {
            display: flex;
            gap: 40px;
            justify-content: flex-end;
            align-items: center;
        }

        .info-box {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .info-icon {
            width: 42px;
            height: 42px;
            border: 2px dashed #2e8b57;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: #2e8b57;
            font-size: 18px;
        }

        .info-text strong {
            display: block;
            font-size: 14px;
        }

        .info-text span,
        .info-text a {
            font-size: 13px;
            color: #555;
            text-decoration: none;
        }

        /* ---------- NAVBAR ---------- */

        .navbar-main {
            background: #2c343d;
            color: white;
        }

        .navbar-main ul {
            display: flex;
            gap: 40px;
            list-style: none;
            margin: 0;
            padding: 1px;
            font-size: 17px;
        }

        .navbar-main a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        /* CTA */

        .cta-btn {
            background: #0c5a2b;
            padding: 12px 22px;
            font-weight: 600;
            color: white;
            text-decoration: none;
            clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
        }

        /* STICKY */

        .sticky {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        /* ---------- MOBILE ---------- */

        .mobile-header {
            display: none;
        }

        @media(max-width:992px) {

            .header-info {
                display: none;
            }

            .navbar-main ul {
                display: none;
            }

            .mobile-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .mobile-logo img {
                height: 55px;
            }

        }

        /* ---------- SIDEBAR MENU ---------- */

        .sidebar-menu {

            position: fixed;

            top: 0;

            left: -280px;

            width: 280px;

            height: 100%;

            background: white;

            z-index: 2000;

            transition: 0.3s;

            padding: 25px;

            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);

        }

        .sidebar-menu.active {
            left: 0;
        }

        .sidebar-menu ul {
            list-style: none;
            padding: 0;
        }

        .sidebar-menu li {
            margin: 15px 0;
        }

        .sidebar-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }

        .overlay {

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: rgba(0, 0, 0, 0.4);

            display: none;

            z-index: 1500;

        }

        .overlay.active {
            display: block;
        }

        @media(max-width:992px) {
            .logobar {
                display: none;
            }
        }

        /* SIDEBAR */

        .sidebar-menu {

            position: fixed;

            top: 0;

            left: -320px;

            width: 320px;

            height: 100%;

            background: white;

            z-index: 2000;

            transition: 0.3s;

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

            display: flex;

            flex-direction: column;

        }

        /* HEADER MENU */

        .mobile-menu-header {

            background: #0c5a2b;

            padding: 25px;

            text-align: center;
border-radius: 0.5em;
        }

        .mobile-menu-logo {
            height: 100%;
            width: 100%;
            padding: 3px;

        }

        /* LINKS */

        .mobile-menu-links {

            list-style: none;

            padding: 20px;

            margin: 0;

        }

        .mobile-menu-links li {

            margin-bottom: 12px;

        }

        .mobile-menu-links a {

            display: flex;

            align-items: center;

            gap: 14px;

            padding: 14px;

            border-radius: 8px;

            text-decoration: none;

            font-size: 18px;

            font-weight: 600;

            color: #333;

            background: #f5f5f5;

        }

        .mobile-menu-links a i {

            font-size: 20px;

            color: #0c5a2b;

        }

        /* CTA */

        .mobile-menu-cta {

            margin-top: auto;

            padding: 20px;

            display: flex;

            flex-direction: column;

            gap: 12px;

        }

        .mobile-call {

            background: #2d3640;

            color: white;

            padding: 14px;

            text-align: center;

            border-radius: 8px;

            font-weight: 600;

            text-decoration: none;

        }

        .mobile-ritiro {

            background: #0c5a2b;

            color: white;

            padding: 14px;

            text-align: center;

            border-radius: 8px;

            font-weight: 600;

            text-decoration: none;

        }

        /* OPEN */

        .sidebar-menu.active {
            left: 0;
        }