
/* Estilo Geral */
body {
    background-color: #FFFAEE;
    font-family: Arial, sans-serif;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #343a40;
}

/* Estilização do card */
.card {
    width: 100%;

    margin: 0 auto;
    border-radius: 0px 0px 25px 25px;
    padding: 15 0px 15px 15px;
    background: #e8f3f3;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative; /* Garante que cada card fique na sua posição */
}

/* Imagem Principal */
.main-image {
    width: 100%;
    height: 350px; /* Ajuste conforme necessário */
    object-fit: cover;
    border-radius: 10px;
}
/* Tarja de desconto */
.desconto-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    padding: 5px 10px;
    background: #28a745;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

/* Estilização das Imagens Secundárias */
.secondary-images-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}


/* Ajustes individuais para imagens secundárias */
.secondary-image {
    width: 100%;
    height: 150px; /* Define uma altura fixa */
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}


.secondary-image:hover {
    transform: scale(1.1);
}

/* Ajuste para que a seção não fique escondida */
.image-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: start;
}

.pacotes-titulo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #2a5d78;
    padding: 15px;
    text-align: center;
    border-radius: 25px 25px 0px 0px;
    margin-bottom: 0px;
    clear: both;
    flex-wrap: wrap; /* Permite que o título expanda para baixo */
}
.pacotes-titulo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    display: block;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 90%; /* Mantém dentro do container */
    white-space: normal; /* Permite a quebra automática */
    line-height: 1.2; /* Define o espaçamento entre linhas */
}


.titulo-principal {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.descricao-intro {
    font-size: 1.1rem;
    color: #222c34;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
/* Estilização da galeria de imagens */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-container a img {
    transition: transform 0.3s ease-in-out;
}

.gallery-container a img:hover {
    transform: scale(1.1);
}

/* Mapa responsivo */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

/* Botão de reserva estilizado */
.btn-reserva {
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .secondary-images-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .secondary-image {
        width: 48%;
        height: 120px;
    }
}

/* Estilização do texto */
.titulo-viagem {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}

.resumo-viagem {
    font-size: 16px;
    color: #222c34;
    text-align: justify;
}

/* Estilização do preço */

.mt-3 {
    text-align: center; /* Centraliza todas as informações */
}

.seta-grande {
    font-size: 1.5rem; /* Aumenta o tamanho da seta */
    font-weight: bold;
    display: inline-block; /* Mantém alinhado corretamente */
    margin: 0 5px; /* Adiciona um pequeno espaçamento */
}

.fw-bold span {
    font-weight: normal; /* Mantém "De" e "Por" com peso normal */
    color: #000; /* Define a cor preta */
}
.text-danger {
    font-size: 1.2rem;
    font-weight: bold;
}

.text-success {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Botão de ver mais */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-contato {
    background-color: #2a5d78;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out, transform 0.2s;
    border: none;
}

.btn-contato:hover {
    background-color: #1f4c5e;
    transform: scale(1.05);
}


