body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.navbar, .footer {
    background-color: #003f8e;
    color: white;
}

/* Ajuste para o botão de menu no canto inferior direito */
.navbar-toggler {
    position: absolute;
    bottom: 10px; /* Alinha na parte inferior */
    right: 10px; /* Alinha na direita */
    background-color: #ea6d27;
    border: none;
   
    padding: 8px;
}

.navbar-toggler:hover {
    background-color: #d95a21;
}

/* Offcanvas para o lado direito */
.offcanvas-end {
    background-color: #003f8e;
    color: white;
    width: 50%;
}

.offcanvas-end .offcanvas-header {
    border-bottom: 2px solid #ea6d27;
}

.offcanvas-end .nav-link {
    color: #ffffff;
    font-weight: bold;
    margin: 5px 0;
    padding: 10px;
    background-color: #ea6d27;
    border-radius: 5px;
    text-align: center;
    display: block;
}

.offcanvas-end .nav-link:hover {
    background-color: #d95a21;
    color: #ffffff;
}



.navbar {
    background-color: #003f8e;
    height: 160px;
}

.text-center.mx-auto img {
    height: 250px;
    max-width: 100%;
    margin: auto;
    position: relative;
    top: -50px;
}
.navbar-toggler-icon {
    color: white;
}

.btn-primary, .btn-warning {
    background-color: #ea6d27;
    border-color: #ea6d27;
}

.highlight {
    color: #ea6d27;
    font-weight: bold;
}

.banner {
    background-color: #003f8e;
    color: white;
}

.separator {
    width: 100%;
    height: 5px;
    background-color: #ea6d27;
    margin: 20px 0;
}

.section-title {
    color: #003f8e;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}
.card-title{
    color: #ea6d27;
}

.section-subtitle {
    color: #ea6d27;
    font-size: 20px;
}

.offcanvas-start {
    background-color: #003f8e;
    color: white;
    width: 50%;
}

.offcanvas-header {
    border-bottom: 2px solid #ea6d27;
}

.offcanvas-body .nav-link {
    color: #ffffff;
    font-weight: bold;
    margin: 5px 0;
    padding: 10px;
    background-color: #ea6d27;
    border-radius: 5px;
    text-align: center;
    display: block;
}

.offcanvas-body .nav-link:hover {
    background-color: #d95a21;
    color: #ffffff;
}


.img-fluid {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    width: 80%;
}

.form-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.footer .nav-link,
.footer .list-unstyled li {
    text-align: left;
}

.footer .list-unstyled {
    padding-left: 0;
}

.footer .list-inline-item {
    margin: 5px;
}

.footer h5 {
    text-align: left;
    margin-bottom: 10px;
}

.footer .list-inline {
    padding-left: 0;
}

.footer .list-inline-item a {
    color: white;
    text-decoration: none;
}

.footer .list-inline-item a:hover {
    color: #d95a21;
}

.footer-gradient {
    background: linear-gradient(180deg, transparent, #003f8e);
    height: 50px;
    width: 100%;
}
.galeria-scroll {
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
}

/* Scroll customizado */
.galeria-scroll::-webkit-scrollbar {
    width: 8px;
}
.galeria-scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px }