/* Tipografia moderna e leve para o site inteiro */
html, body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Títulos e subtítulos com peso e contraste */
h1, h2, h3, h4, h5, h6 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: #1e3a8a; /* azul escuro elegante */
  line-height: 1.3;
  margin-bottom: 10px;
}

button, input, select, textarea {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== PAGINAÇÃO MODERNA (COMPATÍVEL COM SEU ASP) ===== */
.pagination.moderna {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 24px 0;
  margin: 28px auto;
}

/* Reset de estilos antigos */
.pagination.moderna li {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* Estilo base dos botões */
.pagination.moderna li a {
  display: inline-block;
  min-width: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f8fafc;
  color: #1f2937;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: all 0.25s ease;
}

/* Hover */
.pagination.moderna li a:hover {
  background: #00b7a8;
  color: #fff;
  border-color: #00b7a8;
  transform: translateY(-1px);
}

/* Página ativa */
.pagination.moderna li.active a {
  background: linear-gradient(135deg, #00b7a8, #008f7f);
  color: #fff !important;
  font-weight: 600;
  border: none;
  box-shadow: 0 3px 8px rgba(0, 183, 168, 0.25);
}

/* Botão desabilitado */
.pagination.moderna li.disabled a {
  background: #f3f4f6 !important;
  color: #9ca3af !important;
  border: 1px solid #e5e7eb !important;
  cursor: not-allowed !important;
  opacity: 0.8;
  pointer-events: none;
}

/* Botões “Anterior” e “Próximo” */
.pagination.moderna li:first-child a,
.pagination.moderna li:last-child a {
  min-width: 100px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Efeito ao clicar */
.pagination.moderna li a:active {
  transform: scale(0.96);
}

/* Responsividade */
@media (max-width: 600px) {
  .pagination.moderna {
    gap: 5px;
  }
  .pagination.moderna li a {
    padding: 8px 10px;
    font-size: 14px;
    min-width: 32px;
  }
}
/* Container principal do card */
.destino-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.destino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Imagem e overlay */
.destino-thumb {
  position: relative;
  overflow: hidden;
}
.destino-thumb img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #f0f0f0;
  transition: transform 0.4s ease;
}
.destino-card:hover img {
  transform: scale(1.05);
}

/* Overlay com texto no hover */
.destino-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.destino-card:hover .destino-overlay {
  opacity: 1;
}

/* Informações */
.destino-info {
  padding: 12px 10px 15px;
}
.destino-info h4 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #1e3a8a;
  margin: 0;
  font-weight: 600;
}
.destino-info small {
  color: #6b7280;
  font-size: 13px;
  display: block;
  margin-top: 3px;
}

/* Responsividade */
@media (max-width: 767px) {
  .destino-card {
    margin-bottom: 15px;
  }
}


/* ======== BLOCO PRINCIPAL ======== */
.destaque-carousel {
  margin-top: 40px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.section-header h2 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #1e3a8a;
  margin: 0;
}

/* ======== BOTÕES DE NAVEGAÇÃO ======== */
.carousel-controls {
  display: flex;
  gap: 6px;
}

.carousel-controls button {
  background: #00b7a8;
  border: none;
  color: #fff;
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.carousel-controls button:hover {
  background: #009688;
  transform: translateY(-2px);
}

/* ======== IMAGENS E LEGENDAS ======== */
.image-carousel ul.slides li {
  text-align: center;
}

.card-foto {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-foto img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.card-foto:hover img {
  transform: scale(1.05);
}
.card-foto:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Overlay ao passar o mouse */
.foto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.card-foto:hover .foto-overlay {
  opacity: 1;
}

/* ======== LEGENDA ======== */
.caption {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
}
/* PREMIUM: borda fina sem respiro extra */
article.box.premium{
  border:2px solid #f1c40f;
  box-shadow:0 0 15px rgba(241,196,15,.6);
  position:relative;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  padding:0;                 /* remove espaço em cima/baixo */
}

/* Centraliza o texto na faixa diagonal */
article.box.premium::before{
  content:"PREMIUM";
  position:absolute;
  top:12px;
  left:-42px;
  height:26px;               /* altura fixa da faixa */
  line-height:26px;          /* centraliza verticalmente o texto */
  padding:0 52px;            /* largura da faixa */
  background:#f39c12;
  color:#fff;
  font-weight:700;
  font-size:13px;
  letter-spacing:.5px;
  transform:rotate(-45deg);
  text-align:center;         /* centraliza horizontalmente */
  box-shadow:0 2px 6px rgba(0,0,0,.3);
  z-index:10;
}

/* Evita “sobrar” 3–4px abaixo da imagem (baseline) */
article.box figure img{
  display:block;
}

/* Se algum box não-premium também ganhou respiro,
   garanta que não há padding vertical neles: */
article.box{
  padding-top:0;
  padding-bottom:0;
}

/* === FAIXA ESCURA REFINADA (PADRÃO MODERNO) === */
.page-header-modern {
  background-color: #0b1d3a;
  padding: 12px 0 10px;
  border-bottom: 2px solid #0078d7;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.page-header-modern .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* título */
.page-header-title h1 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.2px;
}

/* breadcrumb */
.breadcrumb-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #c7d0db;
  justify-content: flex-end;
}

.breadcrumb-modern li {
  display: flex;
  align-items: center;
}

.breadcrumb-modern a {
  color: #c7d0db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-modern a:hover {
  color: #fff;
}

.breadcrumb-modern li::after {
  content: "/";
  margin: 0 5px;
  color: #4b5a70;
}

.breadcrumb-modern li:last-child::after {
  content: "";
}

.breadcrumb-modern .active span {
  color: #ffcc00;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-header-modern .container {
    align-items: flex-start;
    text-align: left;
  }

  .page-header-title h1 {
    font-size: 16px;
  }

  .breadcrumb-modern {
    font-size: 12px;
    justify-content: flex-start;
  }
}

/* ===== Card de anúncio moderno ===== */
.ad-card {
  display: flex;
  gap: 16px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e6eaef;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}
.ad-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.10);
}


.ad-card.premium,
.ad-card.boxpremium {
  border-color: #f59e0b;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
  background:
    radial-gradient(48% 80% at 0% 0%, rgba(245,158,11,.10) 0%, rgba(245,158,11,0) 70%),
    #fff;
}
/* Selo Premium visível acima da imagem */
.ad-card .badge-premium {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5; /* garante que fica acima da imagem */
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .4px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  display: none;
}
.ad-card.premium .badge-premium,
.ad-card.boxpremium .badge-premium {
  display: inline-flex;
}


/* Imagem */
.ad-figure {
  flex: 0 0 270px;
  max-width: 270px;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f5f8;
  position: relative;
}
.ad-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.ad-card:hover .ad-figure img { transform: scale(1.04); }

/* Conteúdo */
.ad-details {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 8px 16px;
  width: 100%;
}

/* Título e localização */
.ad-title {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
}
.ad-title a {
  color: inherit; text-decoration: none;
}
.ad-title a:hover { text-decoration: underline; }
.ad-sub {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #63708a;
}

/* Amenities (mantém seus ícones) */
.ad-amenities { display: flex; gap: 8px; align-items: center; }
.ad-amenities i { font-size: 14px; color: #0ea5e9; }

/* Estrelas (usa sua estrutura existente) */
.five-stars-container {
  position: relative;
  display: inline-block;
  width: 96px;  /* 5 estrelas x 19px + gaps */
  height: 18px;
  background: url('/images/stars-empty.svg') repeat-x 0 0 / 19px 18px;
  vertical-align: middle;
  margin-right: 6px;
}
.five-stars {
  display: block;
  height: 18px;
  background: url('/images/stars-full.svg') repeat-x 0 0 / 19px 18px;
}
.review { font-size: 12px; color: #64748b; }

/* Chamada / descrição curta */
.ad-call {
  grid-column: 1 / -1;
  font-size: 13px; color: #374151;
}

/* Ações */
.ad-actions {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.btn-modern {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 0; cursor: pointer;
  text-decoration: none; font-weight: 700; font-size: 14px;
  letter-spacing: .3px; color: #fff;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  box-shadow: 0 6px 14px rgba(2,132,199,.16);
}
.btn-modern:hover { transform: translateY(-1px); }

.btn-details {
  background: linear-gradient(135deg, #0284c7, #0891b2);
}
.btn-details:hover {
  box-shadow: 0 10px 16px rgba(8,145,178,.28);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5c);
  box-shadow: 0 6px 14px rgba(37, 211, 102, .20);
}
.btn-whatsapp:hover {
  box-shadow: 0 10px 16px rgba(37, 211, 102, .28);
}
.btn-whatsapp svg { width: 18px; height: 18px; }

/* Responsivo */
@media (max-width: 900px) {
  .ad-details { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ad-card {

    padding: 12px;
  }
  .ad-figure {
    flex-basis: 42%;
    max-width: 42%;
    height: 150px;
  }
}
@media (max-width: 490px) {
  .ad-card { flex-direction: column; }
  .ad-figure { max-width: 100%; height: 180px; }
}

/* === FAIXA ESCURA REFINADA (PADRÃO MODERNO) === */
.page-header-modern {
  background-color: #0b1d3a;
  padding: 12px 0 10px;
  border-bottom: 2px solid #0078d7;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.page-header-modern .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* título */
.page-header-title h1 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.2px;
}

/* breadcrumb */
.breadcrumb-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #c7d0db;
  justify-content: flex-end;
}

.breadcrumb-modern li {
  display: flex;
  align-items: center;
}

.breadcrumb-modern a {
  color: #c7d0db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-modern a:hover {
  color: #fff;
}

.breadcrumb-modern li::after {
  content: "/";
  margin: 0 5px;
  color: #4b5a70;
}

.breadcrumb-modern li:last-child::after {
  content: "";
}

.breadcrumb-modern .active span {
  color: #ffcc00;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-header-modern .container {
    align-items: flex-start;
    text-align: left;
  }

  .page-header-title h1 {
    font-size: 16px;
  }

  .breadcrumb-modern {
    font-size: 12px;
    justify-content: flex-start;
  }
}

/* Container geral (links + botão de envio lado a lado) */
.gallery-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 25px;
}

/* Filtros */
.gallery-filter-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: #f1f5f9;
  color: #334155;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .3px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.filter-btn:hover {
  background: #0284c7;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(2,132,199,0.25);
}

.filter-btn.active {
  background: #10b981;
  color: #fff;
  box-shadow: 0 3px 10px rgba(16,185,129,0.25);
}

/* Botão laranja */
.photo-upload-btn-inline form {
  margin: 0;
}

.btn-upload {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 10px rgba(234,88,12,0.25);
  white-space: nowrap;

  /* Correção do desalinhamento */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1; /* reduz altura interna */
  vertical-align: middle;
}

.btn-upload:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(234,88,12,0.35);
}



/* --- GRID PADRÃO --- */
.modern-gallery-item {
  margin-bottom: 25px;
}

/* --- CARD PRINCIPAL --- */
.gallery-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.25s ease-in-out;
  text-align: center;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* --- IMAGEM --- */
.gallery-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 10px 0 0;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-thumb img {
  transform: scale(1.05);
}

/* --- DETALHES --- */
.gallery-details {
  padding: 12px 10px 16px;
}

.gallery-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 5px 0;
}

.gallery-location {
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* --- EFEITO PREMIUM (opcional) --- */
.gallery-card.premium {
  border: 2px solid #f59e0b;
  box-shadow: 0 4px 14px rgba(245,158,11,0.25);
}

/* MENU LATERAL MODERNO */
.sidebar-modern {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 20px;
}

.sidebar-modern h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #0078d7;
  padding-bottom: 5px;
}

.sidebar-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cards .card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f7f9fb;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all .2s;
}

.sidebar-cards .card:hover {
  background: #0078d7;
  color: #fff;
  transform: translateX(3px);
}

.sidebar-cards .card i {
  font-size: 18px;
  color: inherit;
}

/* ==== BOTÕES MODERNOS ==== */
.btn-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  gap: 8px;
}

.btn-modern i {
  font-size: 15px;
}

.btn-modern.orange {
  background: linear-gradient(90deg, #ff6a00, #ff9100);
}

.btn-modern.orange:hover {
  background: linear-gradient(90deg, #ff7c1a, #ffa733);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255,145,0,0.3);
}

.btn-modern.green {
  background: linear-gradient(90deg, #31b849, #57d671);
}

.btn-modern.green:hover {
  background: linear-gradient(90deg, #42c15b, #6ce283);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(87,214,113,0.3);
}

/* Responsivo */
@media (max-width: 600px) {
  .btn-modern {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* --- Rodapé Moderno --- */
#footer-modern {
  background: #f8fafc;
  color: #334155;
  font-family: 'Arial', sans-serif;
}

/* Parte superior */
.footer-main {
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.footer-title {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #1e293b;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #475569;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0ea5e9;
}

/* Botões */
.footer-btn {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-weight: 700;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.footer-btn:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(234,88,12,0.25);
}

.footer-btn-outline {
  background: transparent;
  color: #334155;
  border: 1px solid #94a3b8;
  font-weight: 600;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.footer-btn-outline:hover {
  background: #e2e8f0;
}

/* Parte inferior */
.footer-bottom {
  background: #f1f5f9;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #e2e8f0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 28px;
}

.footer-copy {
  margin: 0;
  color: #64748b;
}

.footer-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #94a3b8;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #0f172a;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-top-btn:hover {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}

.search-modern {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  margin-bottom: 25px;
}

.search-modern h5 {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.search-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .3s;
}

.search-input:focus-within {
  box-shadow: 0 0 0 3px rgba(0,120,215,0.3);
}

.search-input input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 15px;
  outline: none;
}

.search-input button {
  background: linear-gradient(90deg, #0078d7, #00b5f1);
  border: none;
  color: white;
  padding: 10px 14px;
  cursor: pointer;
  transition: opacity .2s;
}

.search-input button:hover {
  opacity: 0.9;
}

  .adsense-mobile-only {
    display: none;
  }

  @media (max-width: 768px) {
    .adsense-mobile-only {
      display: block;
      min-height: 250px; /* Altura reservada */
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
/* === FAIXA ESCURA REFINADA (PADRÃO MODERNO) === */
.page-header-modern {
  background-color: #0b1d3a;
  padding: 12px 0 10px;
  border-bottom: 2px solid #0078d7;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.page-header-modern .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* título */
.page-header-title h1 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.2px;
}

/* breadcrumb */
.breadcrumb-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #c7d0db;
  justify-content: flex-end;
}

.breadcrumb-modern li {
  display: flex;
  align-items: center;
}

.breadcrumb-modern a {
  color: #c7d0db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-modern a:hover {
  color: #fff;
}

.breadcrumb-modern li::after {
  content: "/";
  margin: 0 5px;
  color: #4b5a70;
}

.breadcrumb-modern li:last-child::after {
  content: "";
}

.breadcrumb-modern .active span {
  color: #ffcc00;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-header-modern .container {
    align-items: flex-start;
    text-align: left;
  }

  .page-header-title h1 {
    font-size: 16px;
  }

  .breadcrumb-modern {
    font-size: 12px;
    justify-content: flex-start;
  }
}


.hero-localidade {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-image {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* camada escura sutil para legibilidade */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}

/* bloco do texto */
.hero-caption {
  position: relative;
  z-index: 2;
  padding: 30px 40px;
  color: #f8fafc;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* título */
.hero-caption h1 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: 0.5px;
}

/* subtítulo */
.hero-caption p {
  font-size: 16px;
  font-weight: 400;
  color: #e2e8f0;
  margin: 0;
}

/* responsivo */
@media (max-width: 768px) {
  .hero-image {
    height: 260px;
  }
  .hero-caption {
    padding: 20px;
  }
  .hero-caption h1 {
    font-size: 22px;
  }
  .hero-caption p {
    font-size: 14px;
  }
}



/* --- Área das abas --- */
.tabs-modern {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #e5e7eb;
  flex-wrap: wrap;
}

/* --- Itens individuais --- */
.tabs-modern li {
  margin: 0;
}

/* --- Links das abas --- */
.tabs-modern a {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  transition: all 0.25s ease;
}

/* --- Efeito hover --- */
.tabs-modern a:hover {
  background: #f1f5f9;
  color: #1d4ed8;
}

/* --- Aba ativa --- */
.tabs-modern .active a {
  background: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
  transform: translateY(1px);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
}

/* --- Remove espaço entre abas e conteúdo --- */
.tab-content {
  margin-top: -1px; /* elimina o espaço */
  padding: 25px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* --- Tipografia unificada --- */
.tab-content,
.tabs-modern,
.tab-content h1,
.tab-content h2,
.tab-content h3,
.tab-content p,
.tab-content li,
.tab-content a {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e293b;
  font-size: 15px;
  line-height: 1.6;
}



/* --- Padroniza conteúdo vindo do banco --- */
.conteudo-padrao2 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-top: 15px;
}

/* Remove heranças antigas */
.conteudo-padrao2 * {
  font-family: inherit !important;
  color: inherit !important;
  line-height: inherit;
  font-size: inherit;
}

/* Parágrafos */
.conteudo-padrao2 p {
  margin-bottom: 15px;
}

/* Títulos dentro do conteúdo */
.conteudo-padrao2 h1,
.conteudo-padrao2 h2,
.conteudo-padrao2 h3,
.conteudo-padrao2 h4 {
  color: #1e3a8a !important;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* Links */
.conteudo-padrao2 a {
  color: #2563eb !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.conteudo-padrao2 a:hover {
  color: #1e40af !important;
  text-decoration: underline;
}

/* Listas */
.conteudo-padrao2 ul,
.conteudo-padrao2 ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

/* Imagens */
.conteudo-padrao2 img {
  border-radius: 6px;
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  display: block;
}

/* Tabelas (caso existam) */
.conteudo-padrao2 table {
  border-collapse: collapse;
  width: 100%;
  margin: 15px 0;
  border: 1px solid #e5e7eb;
}
.conteudo-padrao2 th,
.conteudo-padrao2 td {
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
}
.conteudo-padrao2 th {
  background: #f3f4f6;
  font-weight: 600;
}
.conteudo-padrao2 [style] {
  all: unset;
  display: inline;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

/* === FAIXA ESCURA REFINADA === */
.page-header-modern {
  background-color: #0b1d3a;
  padding: 12px 0 10px; /* Faixa mais fina */
  border-bottom: 2px solid #0078d7;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.page-header-modern .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Alinha tudo à direita */
  text-align: right;
}

/* TÍTULO */
.page-header-title h1 {
  font-size: 18px; /* Menor e mais leve */
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.2px;
}

/* BREADCRUMB */
.breadcrumb-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #c7d0db;
  justify-content: flex-end; /* Breadcrumb à direita */
}

.breadcrumb-modern li {
  display: flex;
  align-items: center;
}

.breadcrumb-modern a {
  color: #c7d0db;
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb-modern a:hover {
  color: #fff;
}

.breadcrumb-modern li::after {
  content: "/";
  margin: 0 5px;
  color: #4b5a70;
}

.breadcrumb-modern li:last-child::after {
  content: "";
}

.breadcrumb-modern .active span {
  color: #ffcc00;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-header-modern .container {
    align-items: flex-start;
    text-align: left;
  }

  .page-header-title h1 {
    font-size: 16px;
  }

  .breadcrumb-modern {
    font-size: 12px;
    justify-content: flex-start;
  }
}
/* ==== CARD DE HOTEL AJUSTADO ==== */
.hotel-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 18px;
  transition: all .2s ease;
  position: relative;
}

/* Parte superior (imagem e info) */
.hotel-top {
  display: flex;
  padding: 14px;
  gap: 14px;
}

/* Imagem */
.hotel-thumb {
  flex: 0 0 110px;
  height: 85px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f7fa;
}

.hotel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.hotel-card:hover .hotel-thumb img {
  transform: scale(1.05);
}

/* Info */
.hotel-info {
  flex: 1;
}

.hotel-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e2a3a;
  margin: 0 0 2px;
}

.hotel-location {
  font-size: 12px;
  color: #6b7a90;
  margin-bottom: 6px;
}

.hotel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.hotel-label {
  color: #7a8ba1;
  text-transform: uppercase;
  font-size: 11px;
}

.hotel-price {
  color: #009a3e;
  font-weight: 700;
  font-size: 15px;
}

/* Avaliação */
.hotel-rating {
  margin-top: 4px;
}

/* Descrição */
.hotel-desc {
  font-size: 13px;
  color: #444;
  padding: 0 14px 8px;
  line-height: 1.4;
}

/* ==== Anúncio ==== */
.hotel-ads {
  padding: 0 14px 12px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
  background: #fafafa;
  overflow: hidden;
  min-height: 110px;
}

.hotel-ads ins {
  display: block !important;
  width: 100% !important;
  min-height: 90px !important;
  max-height: 150px !important;
  overflow: hidden;
}

/* Botão voltar – força o estilo mesmo com o tema travelo */
li.pull-right > a.btn-back-modern,
li.pull-right > a.btn-back-modern:link,
li.pull-right > a.btn-back-modern:visited {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;

  padding: 10px 22px !important;
  border: 0 !important;
  border-radius: 50px !important;

  /* cor FORÇADA */
  background: linear-gradient(135deg, #f59e0b, #d97706) !important; /* laranja */
  background-color: #f59e0b !important; /* fallback */
  color: #ffffff !important;

  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  text-shadow: none !important;

  box-shadow: 0 3px 8px rgba(0,0,0,0.25) !important;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease !important;

  -webkit-appearance: none !important;
  appearance: none !important;
}

li.pull-right > a.btn-back-modern:hover,
li.pull-right > a.btn-back-modern:focus {
  background: linear-gradient(135deg, #d97706, #b45309) !important; /* laranja mais escuro */
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 12px rgba(0,0,0,0.35) !important;
  outline: none !important;
}

.btn-back-modern i { font-size: 14px; }

/* Caso o tema aplique estilos por classes genéricas “.button”, “.btn”, etc.,
   esta regra neutraliza apenas no nosso botão */
.btn-back-modern.button,
.btn-back-modern.btn,
.btn-back-modern.yellow-bg,
.btn-back-modern.white-color {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: #ffffff !important;
}

/* ====== CONTAINER PRINCIPAL ====== */
.tab-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  overflow: hidden;
  margin-top: 25px;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ====== MENU DE ABAS ====== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f8fafc;
  border-bottom: 2px solid #e5e9f0;
}

.tabs li {
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
}

.tabs li a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
}

.tabs li a i {
  margin-right: 6px;
  color: #0ea5e9;
}

.tabs li:hover a {
  background: #eef3f8;
  color: #1e293b;
}

.tabs li.active a {
  background: #fff;
  color: #0284c7;
  border-bottom: 3px solid #0284c7;
}

/* ====== CONTEÚDO ====== */
.tab-content {
  padding: 25px;
  background: #fff;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content h2 {
  font-size: 18px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 10px;
}

.tab-content label {
  font-weight: 600;
  color: #334155;
}

.tab-content ul li {
  margin-bottom: 6px;
}

/* ====== ANIMAÇÃO ====== */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(8px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
  }
  .tabs li a {
    text-align: left;
    padding: 12px 15px;
  }
}


.hotel-info-card {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-top: 20px;
  overflow: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
}

.hotel-info-column {
  flex: 1;
  min-width: 300px;
  padding: 25px;
  border-right: 1px solid #f0f0f0;
}

.hotel-info-column:last-child {
  border-right: none;
}

.hotel-info-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hotel-info-column ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #334155;
}

.hotel-info-column label {
  font-weight: 700;
  color: #0284c7;
  display: inline-block;
  width: 140px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.hotel-info-column a {
  color: #0284c7;
  text-decoration: none;
}

.hotel-info-column a:hover {
  text-decoration: underline;
}

.info-success {
  background: #22c55e;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
  margin-top: 4px;
}

.whatsapp-mini {
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 18px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  margin-top: 12px;
  transition: all 0.25s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
}

.whatsapp-btn img {
  height: 24px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .hotel-info-card {
    flex-direction: column;
  }
  .hotel-info-column {
    border-right: none;
    border-bottom: 1px solid #f1f1f1;
  }
  .hotel-info-column:last-child {
    border-bottom: none;
  }
}

/* === FAIXA ESCURA REFINADA (PADRÃO MODERNO) === */
.page-header-modern {
  background-color: #0b1d3a;
  padding: 12px 0 10px;
  border-bottom: 2px solid #0078d7;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.page-header-modern .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* título */
.page-header-title h1 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.2px;
}

/* breadcrumb */
.breadcrumb-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #c7d0db;
  justify-content: flex-end;
}

.breadcrumb-modern li {
  display: flex;
  align-items: center;
}

.breadcrumb-modern a {
  color: #c7d0db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-modern a:hover {
  color: #fff;
}

.breadcrumb-modern li::after {
  content: "/";
  margin: 0 5px;
  color: #4b5a70;
}

.breadcrumb-modern li:last-child::after {
  content: "";
}

.breadcrumb-modern .active span {
  color: #ffcc00;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-header-modern .container {
    align-items: flex-start;
    text-align: left;
  }

  .page-header-title h1 {
    font-size: 16px;
  }

  .breadcrumb-modern {
    font-size: 12px;
    justify-content: flex-start;
  }
}