/* --- CONFIGURAÇÕES GERAIS E VARIÁVEIS --- */
:root {
    --cor-primaria: #0077B6;
    /* Azul Horizonte */
    --cor-secundaria: #FF9770;
    /* Coral Tropical (Botões) */
    --cor-secundaria-hover: #FF7B00;
    /* Laranja Pôr do Sol (Hover) */
    --cor-destaque: #90E0EF;
    /* Verde Descoberta */
    --cor-fundo: #F4F4F9;
    /* Cinza Nuvem */
    --cor-link-hover: #00B4D8;
    /* Turquesa Oceano */
    --cor-texto: #333333;
    --cor-branco: #ffffff;

    /* Fontes */
    --fonte-principal: 'Poppins', sans-serif;
    --fonte-titulos: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-principal);
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
    font-size: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-family: var(--fonte-titulos);
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    background-color: var(--cor-secundaria);
    color: var(--cor-branco);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--cor-secundaria-hover);
    transform: translateY(-2px);
}

/* --- ANIMAÇÃO DE SCROLL --- */
.animated-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- CABEÇALHO --- */
header {
    background-color: var(--cor-branco);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 70px;
    /* Define a altura do logo. Ajuste se necessário. */
    width: auto;
    /* Mantém a proporção da imagem */
    display: block;
    /* Remove espaços extras que a imagem possa ter */
}

/* Esconde o botão do menu no desktop por padrão */
.menu-toggle {
    display: none;
}


header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header nav a {
    text-decoration: none;
    color: var(--cor-texto);
    font-weight: 600;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: var(--cor-link-hover);
}

/* --- SEÇÃO HERO --- */
#hero {
    background: linear-gradient(rgba(0, 119, 182, 0.3), rgba(0, 119, 182, 0.3)), url('img/img_hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--cor-branco);
    padding-top: 70px;
    /* Espaço para o header fixo */
}

#hero h1 {
    font-size: 3.5rem;
    color: var(--cor-branco);
    margin-bottom: 0.5rem;
}

#hero p {
    font-size: 1.2rem;
    font-weight: 300;
}

.hero-logo {
    width: 500px;
    height: auto;
    /* Mantém a proporção da imagem */
    margin-top: 30px;
    /* Adiciona um espaço entre o texto e o logo */
}


/* --- BARRA DE BUSCA --- */
#busca {
    background-color: var(--cor-branco);
    padding: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin: -50px auto 0;
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

#busca form {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--fonte-principal);
}

/* --- SEÇÕES DE CONTEÚDO (IDEIAS, DESTINOS, DIFERENCIAIS) --- */
.destinos-grid,
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.ideias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Diminuído para caber 4 colunas */
    gap: 30px;
    margin-top: 30px;
}


.ideia-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.ideia-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.ideia-card:hover img {
    transform: scale(1.1);
}

.ideia-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--cor-branco);
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.destino-card {
    background-color: var(--cor-branco);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.destino-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destino-info {
    padding: 20px;
}

.diferencial-item {
    text-align: center;
    padding: 20px;
}

/* --- ÍCONES DOS DIFERENCIAIS --- */
.diferencial-item i {
    font-size: 3rem;
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
}

/* --- QUEM SOMOS --- */
#quem-somos {
    background-color: var(--cor-branco);
}

.quem-somos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
}

.quem-somos-imagem img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quem-somos-texto p {
    margin-bottom: 1rem;
    text-align: justify;
}

.quem-somos-texto p:first-child {
    text-align: center;
    font-size: 22px;
    margin-bottom: 2rem;
}

.quem-somos-texto p:last-child {
    margin-bottom: 0;
}

/* --- RESPONSIVIDADE DO QUEM SOMOS --- */
@media (max-width: 768px) {
    .quem-somos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* --- SEÇÃO INGRESSOS --- */

@keyframes kenburns {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

#ingressos {
    position: relative;
    padding: 400px 0;
    text-align: center;
    color: var(--cor-branco);
    overflow: hidden;
}

.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel-background .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-background .slide.active {
    opacity: 1;
    animation: kenburns 7s linear forwards;
}

/* MUDANÇA CRUCIAL: O link agora é um overlay absoluto */
.ingressos-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    color: inherit;

    /* Novo: Usando flexbox para centralizar o conteúdo perfeitamente */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* O conteúdo interno não precisa mais de margens complexas */
.ingressos-content {
    max-width: 700px;
}

#ingressos h2 {
    font-size: 2.8rem;
    color: var(--cor-branco);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

#ingressos p {
    font-size: 1.1rem;
    margin: 1rem auto 2rem;
}

.btn-ingressos {
    background-color: var(--cor-destaque);
    color: var(--cor-primaria);
    font-weight: 700;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-ingressos:hover {
    background-color: #7acde0;
    color: var(--cor-primaria);
}


/* --- CONTATO --- */
/* --- FORMULÁRIO DE CONTATO (PERSONALIZAÇÃO) --- */
#contato form {
    max-width: 900px;
    margin: 30px auto 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--cor-primaria);
    font-size: 0.9rem;
    text-align: left;
}

.form-group-row {
    display: flex;
    gap: 15px;
}

.form-group-row .form-group {
    flex: 1;
}

.full-width {
    grid-column: 1 / -1;
}

#contato input,
#contato textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--fonte-principal);
    transition: all 0.3s ease;
}

#contato input:focus,
#contato textarea:focus {
    border-color: var(--cor-primaria);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 119, 182, 0.1);
}

#contato .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 15px 40px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* --- RODAPÉ --- */
footer {
    background-color: var(--cor-primaria);
    color: var(--cor-branco);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 200px;
    width: auto;
}

.footer-social a {
    color: var(--cor-branco);
    font-size: 3.5rem;
    /* Tamanho dos ícones */
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--cor-secundaria);
    transform: translateY(-3px);
}

.footer-address {
    font-size: 0.9rem;
    text-align: right;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--cor-secundaria);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVIDADE DO RODAPÉ --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        /* Empilha os itens verticalmente */
        gap: 30px;
    }

    .footer-address {
        text-align: center;
        /* Centraliza o endereço em telas pequenas */
    }
}


/* --- ESTILOS PARA PÁGINAS DE CONTEÚDO (EX: PRIVACIDADE) --- */
.page-content {
    padding: 120px 0 60px;
    /* Espaço extra no topo por causa do header fixo */
    background-color: var(--cor-branco);
}

.page-content .container {
    max-width: 800px;
    /* Limita a largura para melhor legibilidade */
}

.page-content h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.page-content p,
.page-content ul {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content ul {
    padding-left: 20px;
}

/* --- ============================================= --- */
/* --- ESTILOS PARA DISPOSITIVOS MÓVEIS (RESPONSIVO) --- */
/* --- ============================================= --- */
@media (max-width: 768px) {

    /* --- AJUSTES GERAIS --- */
    body {
        font-size: 16px;
        /* Reduz o tamanho da fonte base */
    }

    h1,
    h2,
    h3 {
        text-align: center;
        /* Centraliza todos os títulos */
    }

    section {
        padding: 40px 0;
    }

    /* --- CABEÇALHO E NAVEGAÇÃO MÓVEL --- */
    header .container {
        height: 60px;
        /* Header um pouco menor */
    }

    .logo img {
        height: 60px;
        /* Logo menor */
    }

    .menu-toggle {
        display: block;
        /* Mostra o botão hamburger */
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--cor-primaria);
        cursor: pointer;
        z-index: 1100;
        /* Garante que fique na frente */
    }

    header nav {
        position: absolute;
        top: 60px;
        /* Começa logo abaixo do header */
        left: 0;
        width: 100%;
        background-color: var(--cor-branco);
        max-height: 0;
        /* Começa escondido */
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    }

    header nav.nav-active {
        max-height: 300px;
        /* Altura suficiente para os links */
        border-top: 1px solid #eee;
    }

    header nav ul {
        flex-direction: column;
        /* Links em coluna */
        width: 100%;
        padding: 10px 0;
    }

    header nav li {
        width: 100%;
        text-align: center;
    }

    header nav a {
        padding: 15px 0;
        display: block;
        /* Ocupa toda a largura */
    }

    /* --- SEÇÃO HERO --- */
    #hero {
        height: 90vh;
    }

    #hero h1 {
        font-size: 2.2rem;
        /* Título menor */
    }

    #hero p {
        font-size: 1rem;
    }

    .hero-logo {
        width: 250px;
        /* Logo menor */
    }

    /* --- BARRA DE BUSCA (CORREÇÃO DA SOBREPOSIÇÃO) --- */
    #busca {
        margin-top: 0;
        /* REMOVE a margem negativa que causava o problema */
        border-radius: 0;
        /* Remove o arredondamento para um visual mais integrado */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    #busca form {
        flex-direction: column;
        /* Empilha os campos */
        align-items: stretch;
        /* Estica os campos */
        gap: 15px;
    }

    #busca .btn {
        width: 100%;
    }

    /* --- GRIDS (IDEIAS, DESTINOS, DIFERENCIAIS) --- */
    .ideias-grid,
    .destinos-grid,
    .diferenciais-grid {
        gap: 20px;
    }

    /* --- SEÇÃO INGRESSOS --- */
    #ingressos {
        padding: 250px 0;
        /* Apenas ajusta a altura da seção */
    }

    #ingressos h2 {
        font-size: 2rem;
        /* Título menor */
    }


    #ingressos h2 {
        font-size: 2rem;
        /* Título menor */
    }

    /* --- QUEM SOMOS --- */
    .quem-somos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* --- RODAPÉ --- */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-address {
        text-align: center;
    }
}

/* --- ESTILOS DE PREÇO (DINÂMICO) --- */
.preco-container {
    margin: 15px 0;
    padding: 10px;
    background-color: var(--cor-fundo);
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
}

.brl-price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cor-primaria);
    margin-top: 5px;
}


/* --- ESTILOS DO CHATBOT --- */

.floating-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--cor-primaria), #0096c7);
    color: var(--cor-branco);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-chat-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .floating-chat-btn {
        display: flex;
    }
}

/* Janela do Chat (Glassmorphism) */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    height: 600px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 2100;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

/* Header do Chat (Estilo Dark da Imagem) */
.chat-header {
    background-color: #0b1a2a;
    color: var(--cor-branco);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar-header {
    width: 35px;
    height: 35px;
    background: var(--cor-link-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.header-right {
    display: flex;
    gap: 10px;
}

.header-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.header-btn:hover {
    color: #fff;
}

/* Área de Mensagens */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Mensagens com Avatares */
.message-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    max-width: 90%;
}

.message-row.user-row {
    margin-left: auto;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.bot-row .message-avatar {
    background-color: #0b1a2a;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-row .message-avatar {
    background-color: var(--cor-primaria);
    color: #fff;
    background-image: url('img/LogoAnimado.gif');
    /* Placeholder ou foto da Greici se disponível */
}

.chat-message {
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bot-message {
    background-color: #f1f3f5;
    color: #333;
    border-bottom-left-radius: 2px;
}

.user-message {
    background-color: #0b1a2a;
    color: #fff;
    border-bottom-right-radius: 2px;
}

/* Botão de WhatsApp dinâmico */
.chat-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: white !important;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.chat-wa-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

/* Área de Input (Fiel à imagem) */
.chat-input-container {
    padding: 15px 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.3);
}

.chat-input-pill {
    background: #fff;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.chat-input-pill input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: transparent;
}

.send-icon {
    background: var(--cor-link-hover);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.big-send-btn {
    background-color: #00d2b4;
    /* Teal vibrante da imagem */
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.big-send-btn:hover {
    background-color: #00bda2;
    transform: scale(1.02);
}

/* Pontinhos de Loading */
.loading-msg .dot {
    animation: blink 1.4s infinite both;
}

@keyframes blink {
    0% {
        opacity: .2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: .2;
    }
}

.dot:nth-child(2) {
    animation-delay: .2s;
}

.dot:nth-child(3) {
    animation-delay: .4s;
}

/* Pontinhos de Loading */
.loading-msg .dot {
    animation: blink 1.4s infinite both;
}

.loading-msg .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-msg .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

/* Responsividade do Chat */
@media (max-width: 480px) {
    .chat-widget {
        width: 100%;
        /* Tela cheia no mobile se quiser */
        height: 100%;
        bottom: 0;
        right: 0;
    }
}

/* --- CARROSSEL DE ROTEIROS --- */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px -40px 0;
    /* Margem negativa para os botões ficarem fora se houver espaço */
    padding: 0 40px;
}

.carousel-viewport {
    flex: 1;
    overflow: hidden;
    padding: 20px 5px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-track .destino-card {
    flex: 0 0 calc(33.333% - 20px);
    /* 3 cards por vez no desktop */
    min-width: 300px;
}

.carousel-control {
    background-color: var(--cor-branco);
    color: var(--cor-primaria);
    border: 2px solid var(--cor-primaria);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-control:hover {
    background-color: var(--cor-primaria);
    color: var(--cor-branco);
    transform: scale(1.1);
}

.carousel-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-control i {
    font-size: 1.2rem;
}

/* Detalhes extras do card roteiro */
.destino-info h4 {
    color: var(--cor-secundaria);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.destino-info .periodo {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cor-texto);
    margin-bottom: 10px;
    display: block;
}

.destino-info .inclui {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 20px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

/* --- AJUSTES RESPONSIVOS CARROSSEL --- */
@media (max-width: 1200px) {
    .carousel-wrapper {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
}

@media (max-width: 1024px) {
    .carousel-track .destino-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .carousel-track .destino-card {
        flex: 0 0 100%;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
    }
}

/* --- PÁGINAS INTERNAS (EX: EUROPA) --- */
.hero-interna {
    padding: 150px 0 80px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--cor-branco);
}

.hero-interna h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-interna p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.roteiros-lista {
    padding: 80px 0;
    background-color: var(--cor-fundo);
}

.roteiro-item {
    background-color: var(--cor-branco);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.roteiro-header {
    padding: 40px;
    background-color: var(--cor-primaria);
    color: var(--cor-branco);
}

.roteiro-header h2 {
    color: var(--cor-branco);
    margin-bottom: 10px;
    text-align: left;
}

.roteiro-header .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
    text-align: left;
}

.itinerario-detalhes {
    padding: 40px;
}

.dia {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dia:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.dia strong {
    display: block;
    color: var(--cor-primaria);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.dia p {
    font-size: 1rem;
    color: var(--cor-texto);
    line-height: 1.6;
}

.roteiro-footer {
    padding: 30px 40px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .hero-interna h1 {
        font-size: 2.5rem;
    }

    .roteiro-header,
    .itinerario-detalhes,
    .roteiro-footer {
        padding: 25px;
    }
}