.modal {
	display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(255 255 255);
}
.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto !important;
	background-color: transparent;
	vertical-align: top;
	margin: 10px 0px 0px 0px;
}
#modalImage {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
}
/* Estilo para as miniaturas */
.modal-thumbnails {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 50px;
  overflow-x: auto;
  white-space: nowrap;
  text-align: center;
}
.modal-thumbnails img {
  height: 50px;
  width: auto;
  margin-right: 5px;
  cursor: pointer;
  border: 2px solid transparent;
}
.modal-thumbnails img.active {
  border-color: #fff;
}
.modal-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    overflow-y: hidden;
    overflow-x: auto;
}

.thumbnail-container {
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumbnail-container.active {
    border-color: #007bff; /* Cor da borda para a miniatura ativa */
}

.thumbnail-container img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}
#modalRoomImage {
	max-width: 450px;
    height: auto;
    display: block;
    position: relative;
    margin: 90px auto 0px auto;
    border-radius: 6px;
}
.close {
    position: absolute;
    top: 0px;
    right: 15px;
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 999999;
}
.close:hover,
.close:focus {
  color: #ff2626;
  text-decoration: none;
  cursor: pointer;
}
/* Contêiner principal */
.marquee-container {
	width: 100%;
	height: 200px; /* Altura fixa */
	overflow: hidden; /* Esconde o conteúdo que ultrapassa */
	position: relative;
	background-color: transparent; /* Fundo transparente */
}
/* Contêiner principal */
.marquee-container {
	width: 100%;
	height: 200px; /* Altura fixa */
	overflow: hidden; /* Esconde o conteúdo que ultrapassa */
	position: relative;
	background-color: transparent; /* Fundo transparente */
}

/* Contêiner do conteúdo que rola */
.marquee-content {
	display: flex;
	align-items: center;
	height: 100%;
}

/* Cada item do parceiro */
.marquee-item {
	flex: 0 0 auto;
	margin: 0 20px; /* Espaçamento entre os itens */
	text-align: center;
}

/* Estilo da imagem e do texto */
.logo__carousel__item {
	display: flex;
	flex-direction: column; /* Disposição vertical */
	align-items: center; /* Centraliza horizontalmente */
}
.logo__carousel__item img {
	max-width: 130px; /* Largura máxima da imagem */
	height: auto;
}
.logo__carousel__item small {
	display: block;
	text-align: center;
	margin-top: 10px;
	height: 70px; /* Altura reservada para o texto */
	line-height: 1.2;
	color: #999; /* Cor cinza claro */
}
.btn-primary {
    background-color: #750F01 !important;
    border-color:#be1801 !important;
}
.btn-primary:hover {
    background-color: #bf1a02 !important;
    border-color:#be1801 !important;
}
/* Animação de rolagem */
@keyframes marquee {
	0% {
		transform: translateX(100%); /* Começa à direita */
	}
	100% {
		transform: translateX(-100%); /* Move para a esquerda */
	}
}

/* Classe para habilitar a animação */
.marquee-content.animate {
	animation: marquee 20s linear infinite;
}

/* Centralizar os itens quando não há animação */
.marquee-container.center .marquee-content {
	justify-content: center; /* Centraliza os itens horizontalmente */
}

.qCaract{
	font-size: 1.7rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 0px 10px 4px 0px;
}
@media only screen and (max-width: 991px) {
	.modal-content {
        display: block;
        width: 95% !important;
        margin: -30px 0px auto 0px;
	}
	#modalRoomImage {
		max-width: 100% !important;
	}
}