body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin-top: 60px; /* compensa o espaço do header fixo */
}

header .navbar {
    transition: background-color 0.3s ease;
}

header .navbar-brand img {
    margin-right: 10px;
}

header .nav-link {
    color: rgba(255, 255, 255, 0.75);
}

header .nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

header .navbar-toggler-icon {
    background-color: rgba(255, 255, 255, 0.75);
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

footer ul.list-inline {
    margin-top: 20px;
    padding-inline-start: 0;
}

footer ul.list-inline li {
    margin: 0 10px;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Estilos para o Carrossel */

.carousel-item {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: white;
}

.carousel-caption h5 {
    font-size: 2.5rem;
}

.carousel-caption p {
    font-size: 1.25rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.75);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
}

.carousel-control-prev-icon:before,
.carousel-control-next-icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 3px;
}

.carousel-control-next-icon:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Estilos para o Carrossel */

.carousel-item {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: white;
}

.carousel-caption h5 {
    font-size: 2.5rem;
}

.carousel-caption p {
    font-size: 1.25rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.75);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
}

.carousel-control-prev-icon:before,
.carousel-control-next-icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 3px;
}

.carousel-control-next-icon:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.dropdown-menu {
    background-color: #343a40;
}

.dropdown-item {
    color: #ffffff;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #495057;
    color: #F9A318;
}

#banner .carousel-inner {
    height: 500px; /* ajuste conforme necessário */
}

#banner .carousel-inner .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

