.navbar-custom {
    color: black !important;
    padding-right: 5px;
}

html, body {
    overflow-x: hidden;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.navbar-custom .nav-link:hover {
    color: rgb(36, 36, 112) !important;
}

.btn-custom {
    color: rgb(255, 255, 255) !important;
    background-color: darkblue !important;
}

.btn-custom:hover {
    color: rgb(255, 255, 255) !important;
    background-color: rgb(0, 0, 102) !important;
}

.container {
    max-width: 1200px;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}

.marquee-inner {
  animation: scroll 25s linear infinite;
}

.marquee-inner:hover {
  animation-play-state: paused; 
}

.card {
  flex: 0 0 auto;
}

.card-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.secao-fundo {
    position: relative;
    width: 100%;
    min-height: 86vh;
    background-image: url("arquivos/fundo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 90%;
}

@media (max-width: 768px) {
    .secao-fundo {
        min-height: 70vh;
    }
}

.card-img-hover {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-img-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-img-hover img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.card-body h5 {
    font-weight: 600;
}

.card-body p {
    font-size: 0.95rem;
    color: #555;
}

body {
    padding-top: 80px;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.modal-body {
    padding: 0;
    position: relative;
}

.modal-img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.nav-prev {
    left: 10px;
}

.nav-next {
    right: 10px;
}

.navbar-inner,
.footer-inner {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 1600px) {
    .navbar-inner,
    .footer-inner {
        max-width: 1600px;
    }
}