:root {
  --cor-primaria: #005aa7;
  --cor-secundaria: #00b050;
  --cor-fundo: #f8f9fa;
  --cor-texto: #343a40;
  --sombra-leve: 0 4px 12px rgba(0, 0, 0, 0.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cor-fundo);
  margin: 0; padding: 0; color: var(--cor-texto);
  display: flex; flex-direction: column; min-height: 100vh;
}
main { flex: 1; }

/* --- CABEÇALHO, RODAPÉ E RESPONSIVIDADE (Sem alterações) --- */
.main-header {
    background: #ffffff; padding: 10px 20px; box-shadow: var(--sombra-leve);
    position: sticky; top: 0; z-index: 1000; width: 100%; box-sizing: border-box;
}
.header-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo img { max-height: 45px; }
.main-nav ul {
    margin: 0; padding: 0; list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}
.main-nav a {
    text-decoration: none; color: var(--cor-primaria); font-weight: 600; font-size: 16px;
    padding: 10px 5px; transition: color 0.3s ease; border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--cor-texto); border-bottom-color: var(--cor-primaria); }
.menu-toggle {
    display: none;
    background: none; border: none; font-size: 24px;
    color: var(--cor-primaria); cursor: pointer;
}
.main-footer { background-color: #1e2e3e; color: #d1d5db; padding: 50px 20px; }
/* ... (todo o restante do seu CSS do rodapé continua aqui, sem alterações) */

@media (max-width: 768px) {
    .main-nav { display: none; position: absolute; top: 65px; left: 0; background: #fff; width: 100%; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; align-items: flex-start; }
    .main-nav li { text-align: left; border-bottom: 1px solid #f0f0f0; width: 100%; }
    .main-nav a { display: block; padding: 15px 20px; border: none !important; width: 100%; box-sizing: border-box; }
    .menu-toggle { display: block; }
}

/* ===================================================================== */
/* ====== VISUAL DOS CARDS E CARROSSÉIS ====== */
/* ===================================================================== */

/* --- Título da Seção (AGORA COM EFEITO) --- */
section.estado {
    padding: 20px 0;
    margin-bottom: 50px; /* Aumentei a margem para dar mais respiro */
    background: transparent;
    box-shadow: none;
}
section.estado h2 {
    font-size: 25px; /* Um pouco maior para mais destaque */
    font-weight: 700;
    color: #333;
    text-align: center; /* Garante o alinhamento central */
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    border: none;
    /* A MÁGICA ACONTECE AQUI */
    display: flex;
    align-items: center;
    gap: 20px; /* Espaço entre as linhas e o texto */
}
/* Cria a linha da esquerda */
section.estado h2::before {
    content: '';
    height: 2px; /* Espessura da linha */
    background: linear-gradient(to left, var(--cor-primaria), transparent); /* Gradiente suave */
    flex-grow: 1; /* Faz a linha ocupar o espaço disponível */
    opacity: 0.5;
}
/* Cria a linha da direita */
section.estado h2::after {
    content: '';
    height: 2px;
    background: linear-gradient(to right, var(--cor-primaria), transparent);
    flex-grow: 1;
    opacity: 0.5;
}


/* --- A MOLDURA DO CARROSSEL --- */
.carrossel-frame {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* --- O CARROSSEL (SWIPER) DENTRO DA MOLDURA --- */
.swiper-container {
    padding: 10px;
    margin: 0 45px;
    overflow: hidden;
}

/* --- AS SETAS, AGORA FORA DA MOLDURA --- */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: var(--cor-primaria) !important;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--cor-primaria);
    color: white !important;
    transform: translateY(-50%) scale(1.1);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 16px !important; }
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

/* --- PAGINAÇÃO (BOLINHAS) --- */
.swiper-pagination {
    position: static;
    margin-top: 20px;
}
.swiper-pagination-bullet-active { background-color: var(--cor-primaria) !important; }

/* --- O CARD REFINADO E COMPACTO --- */
.card-pacote {
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.card-pacote:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.card-img { position: relative; }
.card-img img { height: 150px; width: 100%; object-fit: cover; }
.card-img::after {
    content: attr(data-label);
    position: absolute; top: 10px; right: 10px;
    background-color: #ff6a1a; color: white;
    padding: 4px 10px; font-size: 12px; font-weight: 600;
    border-radius: 20px; text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.card-topo { padding: 12px; }
.card-topo h2 { font-size: 17px; font-weight: 700; color: #262626; margin: 0 0 8px 0; }
.card-topo small { font-size: 13px; color: #595959; }
.toggle-lista { padding: 0 12px 10px; font-size: 13px; font-weight: 600; color: var(--cor-primaria); cursor: pointer; }
.card-lista { max-height: 0; overflow: hidden; background-color: #f8f9fa; padding: 0 12px; transition: max-height 0.4s ease-out, padding 0.4s ease-out; }
.card-lista.lista-visivel { max-height: 400px; padding: 12px; }
.card-lista li { line-height: 1.4; gap: 10px; margin: 8px 0; font-size: 14px;}
.card-lista i { color: var(--cor-secundaria); font-size: 14px; }
.card-preco { padding: 12px; border-top: 1px solid #f0f0f0; margin-top: auto; }
.preco-label-container { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.card-preco .label { font-size: 12px; font-weight: 400; color: #595959; }
.acomodacao-label { font-size: 11px; font-weight: 600; color: var(--cor-primaria); background-color: #eef5fc; padding: 3px 8px; border-radius: 5px; text-transform: capitalize; }
.card-preco .avista { font-size: 13px; color: #595959; }
.card-preco .ou { font-size: 12px; color: #8c8c8c; margin: 2px 0; }
.card-preco .valor { font-size: 24px; font-weight: 700; line-height: 1.1; }
.parcelamento-obs { display: block; font-size: 13px; color: #595959; margin-top: -2px; }
.btn-reservar {
    text-transform: none;
    border-radius: 8px; margin: 16px 12px 12px; padding: 10px;
    width: calc(100% - 24px); box-sizing: border-box; font-size: 14px;
    text-align: center; color: #fff; text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

@media (max-width: 991px) {
    .swiper-button-next, .swiper-button-prev { display: none; }
    .swiper-container { margin: 0; }
}

/* --- AJUSTE PARA PREÇO ÚNICO --- */
.card-preco.single-price .avista {
    font-size: 24px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 2px;
}

/* --- BOTÃO COM A COR DO WHATSAPP --- */
.btn-reservar {
    background-color: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn-reservar:hover {
    background-color: #1EBE5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}