﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background-color: #0071bc; /* Azul do logotipo */
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px;
    }

.navbar-header .navbar-brand {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

.navbar-header .logo {
    height: 40px;
    margin-right: 10px;
}

.navbar-toggle {
    display: none;
    font-size: 24px;
    background-color: #0071bc;
    border: none;
    color: white;
    cursor: pointer;
}

.navbar-nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

    .navbar-nav .nav-item {
        margin-left: 20px;
    }

    .navbar-nav .nav-link {
        color: #fff;
        text-decoration: none;
    }

        .navbar-nav .nav-link:hover {
            text-decoration: underline;
        }

.navbar-contact {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

    .navbar-contact a {
        color: #fff;
        text-decoration: none;
    }

        .navbar-contact a:hover {
            text-decoration: underline;
        }

.hero {
    text-align: center;
    padding: 100px 20px 50px 20px;
    background-color: #f1f1f1;
    margin-top: 60px;
}

    .hero img {
        max-width: 100%;
        height: auto;
    }

.carousel-item {
    height: 400px;
}

    .carousel-item img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

.contact-info {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #f15a24; /* Laranja do logotipo */
    margin: 50px 0;
}

    .contact-info a {
        color: #0071bc; /* Azul do logotipo */
        text-decoration: none;
        font-size: 32px;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

.error-page {
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px; /* Ajuste para compensar a navbar fixa */
}

    .error-page h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }

    .error-page p {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .error-page img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .error-page a {
        font-size: 1.2em;
        color: #007bff;
        text-decoration: none;
    }

        .error-page a:hover {
            text-decoration: underline;
        }

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #0071bc; /* Azul do logotipo */
    color: white;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav {
        /* Cores base */
        : root

{
    --primary-blue: #0070c0; /* Azul da logo */
    --accent-orange: #f68b2b; /* Laranja da logo */
    --background-light: #f9f9f9;
    --text-dark: #333;
}

/* Navbar */
.navbar {
    background-color: var(--primary-blue);
}

.navbar-brand, .navbar-nav .nav-link, .navbar-contact a {
    color: white !important;
}

    .navbar-contact a:hover {
        color: var(--accent-orange);
    }

/* Hero Section */
.hero {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.btn-primary {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

    .btn-primary:hover {
        background-color: #e07a1e;
        border-color: #e07a1e;
    }

/* Services Section */
.services {
    background-color: var(--background-light);
}

.card-title {
    color: var(--primary-blue);
}

/* Contact Section */
.btn-success {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

    .btn-success:hover {
        background-color: #005a9e;
        border-color: #005a9e;
    }

/* Footer */
.footer {
    background-color: var(--primary-blue);
}

    .footer p, .footer a {
        color: white !important;
    }

        .footer a:hover {
            color: var(--accent-orange);
        }


