        /* Definindo as fontes Montserrat */
        @font-face {
            font-family: 'Montserrat';
            src: url('assets/fonts/Montserrat-Light.ttf') format('truetype');
            font-weight: 300;
            font-style: normal;
        }

        @font-face {
            font-family: 'Montserrat';
            src: url('assets/fonts/Montserrat-LightItalic.ttf') format('truetype');
            font-weight: 300;
            font-style: italic;
        }

        @font-face {
            font-family: 'Montserrat';
            src: url('assets/fonts/Montserrat-Italic.ttf') format('truetype');
            font-weight: 400;
            font-style: italic;
        }

        @font-face {
            font-family: 'Montserrat';
            src: url('assets/fonts/Montserrat-Bold.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
        }

        @font-face {
            font-family: 'Montserrat';
            src: url('assets/fonts/Montserrat-BoldItalic.ttf') format('truetype');
            font-weight: 700;
            font-style: italic;
        }

        :root {
            --primary-color: #005CA9;
            --secondary-color: #00A3E0;
            --dark-color: #1E2B3A;
            --light-color: #F5F7FA;
            --accent-color: #cccccc;
            /* #FF6B00; */
            --light-gray-color: #F6F7FB;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            color: #333;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .navbar-brand, .nav-link, .btn {
            font-family: 'Montserrat', sans-serif;
        }

        /* Header e Navegação */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand img {
            height: 40px;
        }

        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .nav-link.active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
        }

        .btn-primary:hover {
            background-color: #004a8a;
            border-color: #004a8a;
        }

        /* Hero Section */
        .hero-section {
            /*background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);*/
            background: var(--light-gray-color);
            /*color: white;*/

            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero-section .btn-light {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 4px;
        }

        .hero-section .btn-light:hover {
            background-color: #f0f0f0;
        }

        /* Seções */
        .section-title {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            font-size: 2.4rem;
        }

        .section-text {
            color: var(--dark-color);
            font-size: 0.9rem;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .feature-card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            margin-bottom: 30px;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Portal do Cliente */
        .portal-section {
            background-color: var(--light-color);
            padding: 80px 0;
        }

        .portal-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
        }

        .portal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* Contato */
        .contact-form {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-control {
            border-radius: 4px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 92, 169, 0.25);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            color: #b0b7c3;
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        .left {
            left: 0;
        }

        .right {
            left: 50%;
        }

        .left::after {
            right: -12px;
        }

        .right::after {
            left: -12px;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: white;
            border: 4px solid var(--primary-color);
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        @media screen and (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item::after {
                left: 18px;
            }

            .right {
                left: 0;
            }

        }

        .container-custom {
            min-height: 100vh;
        }

        .btn-custom {
            width: 240px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .btn-custom:hover {
            transform: translateX(5px);
        }

        .content-box {
            min-height: 300px;
            border-left: 3px solid #dee2e6;
            padding-left: 25px;
        }

        .text-content {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .text-content.show {
            opacity: 1;
        }

        .button-solucoes {
            background-color: var(--primary-color);
            color: white;
            font-weight: bold;
        }

        /* Configuração para fixar o link que fica encarregado de retornar a rolagem para o topo do site */
        .scrollToTop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            margin: 0;
            padding: 1rem;
            font-size: 10px;
            display: none !important;
        }

        /* Classe para configuração de exibir o link de rolar para o topo do site */
        .scrollToTop_True {
            display: block !important;
        }

        #whatsapp {
            display: block;
            width: 175px;
            height: 91px;
            position: fixed;
            z-index: 99999;
            left: 0px;
            bottom: 60px;
            background-image: url("../img/chamar-whatsapp.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .fundo_sistemas {
            background-color: #39a8dc !important;
            border-color: #39a8dc !important;
        }
        .botao_servicos {
            background-color: #39a8dc !important;
            border-color: #39a8dc !important;
            font-weight: bold !important;
        }
