/*
Theme Name: Caminhos de Tiradentes
Theme URI: https://caminhosdetiradentes.com.br/
Author: Caminhos de Tiradentes
Description: Tema WordPress personalizado para o site Caminhos de Tiradentes, convertido da versão HTML e preparado para edição pelo painel do WordPress.
Version: 1.0.0
Text Domain: caminhos-tiradentes
*/

/* CSS RESET & VARIABLES
   ALTERE AQUI: todas as cores principais do site, fonte e paleta visual geral.
   Toda mudança feita em :root afeta vários elementos ao mesmo tempo.
*/
:root {
  --verde-floresta: #1E3A2F;
  --creme: #F3EDE0;
  --terracota: #D56B3F;
  --amarelo-areia: #D8B46A;
  --preto: #151515;
  --branco: #FFFFFF;
  --fonte-principal: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fonte-principal);
}

body {
  background-color: var(--creme);
  color: var(--preto);
  line-height: 1.6;
}

/* HEADER & NAVBAR
   ALTERE AQUI: o fundo do topo do site, a barra fixa e o estilo do menu.
   Os itens do menu estão em .nav-links a e .logo.
*/
header {
  background-color: var(--verde-floresta);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--creme);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.85;
}

.logo span {
  color: var(--terracota);
}

/* LOGO (IMAGEM)
   ALTERE AQUI: o tamanho da logo no cabeçalho.
   O filtro deixa a arte (originalmente preta) branca, para aparecer bem
   sobre o fundo verde-escuro do header, ao lado do nome em texto.
   Para trocar a imagem, basta substituir o arquivo images/logo.webp
   mantendo o mesmo nome.
*/
.logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--creme);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--amarelo-areia);
}

/* HERO SECTION
   ALTERE AQUI: a imagem principal, a altura, a sobreposição de cor e o comportamento da seção inicial.
   Se quiser trocar a foto ou o efeito de escurecimento, mude a propriedade background da classe .hero.
*/
.hero {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(rgba(30, 58, 47, 0.5), rgba(21, 21, 21, 0.7)), 
              url('images/placeholder.svg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  color: var(--creme);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--creme);
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--creme);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--terracota);
  color: var(--creme);
}

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

.btn-whatsapp {
  background-color: #25D366;
  color: var(--branco);
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
}

/* CARD FLUTUANTE HERO
   ALTERE AQUI: o bloco flutuante à direita da seção principal.
   Este cartão controla o texto de destaque, a descrição e o selo inferior.
*/
.hero-card-wrapper {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: rgba(243, 237, 224, 0.95);
  backdrop-filter: blur(5px);
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  max-width: 280px;
  border: 1px solid var(--amarelo-areia);
}

.hero-card-rating {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--verde-floresta);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.hero-card-text {
  font-size: 0.95rem;
  color: var(--preto);
  margin-bottom: 1rem;
}

.hero-card-badge {
  display: inline-block;
  background-color: var(--amarelo-areia);
  color: var(--preto);
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* GLOBAL SECTIONS */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--verde-floresta);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-weight: 800;
}

/* CATEGORIAS
   ALTERE AQUI: o layout da grade de categorias (quantos blocos aparecem por linha e o espaço entre eles).
   Cada .category-card representa um item de menu visual.
*/
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background-color: var(--verde-floresta);
  color: var(--creme);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid transparent;
}

.category-card:hover {
  background-color: var(--terracota);
  transform: translateY(-5px);
}

.category-icon {
  font-size: 2rem;
}

/* CARROSSEL DE FOTOS
   ALTERE AQUI: altura das fotos, cor das setas/bolinhas e comportamento do carrossel.
   As fotos em si (src) são trocadas direto no HTML, dentro de cada .carousel-slide.
*/
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 480px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(21, 21, 21, 0.5);
  color: var(--branco);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.carousel-arrow:hover {
  background: var(--terracota);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--branco);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}

.carousel-dot.active {
  background-color: var(--amarelo-areia);
  border-color: var(--amarelo-areia);
}

@media (max-width: 768px) {
  .carousel-slide {
    height: 280px;
  }
}

/* QUEM SOMOS
   ALTERE AQUI: a foto da equipe, o texto da história e os números de destaque (.about-stat).
*/
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  min-height: 340px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.about-content p {
  margin-bottom: 1.2rem;
  color: #333;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stat {
  background-color: var(--branco);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  min-width: 140px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.about-stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--terracota);
}

.about-stat-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.3rem;
}

/* TOURS / PASSEIOS
   ALTERE AQUI: o grid dos cards de passeio e todos os estilos internos do cartão.
   Os títulos, horários, descrição, preços e botão estão aqui.
*/
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tour-card {
  background-color: var(--branco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}

.tour-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--terracota);
  color: var(--creme);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title {
  font-size: 1.3rem;
  color: var(--verde-floresta);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.tour-schedule {
  color: var(--terracota);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.tour-details {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.tour-description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.tour-price-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.tour-price-label {
  font-size: 0.75rem;
  color: #777;
}

.tour-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--verde-floresta);
}

/* MONTE SUA EXPERIÊNCIA
   ALTERE AQUI: a caixa interativa que muda de acordo com o tempo de viagem.
   O estilo dos botões e do bloco de resultado estão neste bloco.
*/
.planner-section {
  background-color: var(--verde-floresta);
  color: var(--creme);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.planner-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--creme);
}

.planner-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.planner-btn {
  background: transparent;
  border: 2px solid var(--amarelo-areia);
  color: var(--creme);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
}

.planner-btn.active, .planner-btn:hover {
  background-color: var(--amarelo-areia);
  color: var(--preto);
}

.planner-result {
  background-color: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
  border: 1px dashed var(--amarelo-areia);
  font-size: 1.1rem;
}

/* GUIA / FAQ
   ALTERE AQUI: as perguntas e respostas frequentes.
   Cada .guide-card (com a classe extra .faq-card) é um item da grade.
*/
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.guide-card {
  background-color: var(--branco);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--verde-floresta);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.faq-card {
  text-align: left;
}

.faq-card h4 {
  color: var(--verde-floresta);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.faq-card p {
  color: #555;
  font-weight: 400;
  font-size: 0.9rem;
}

/* FULL WIDTH CTA
   ALTERE AQUI: o bloco grande de chamada para ação, com imagem de fundo e texto principal.
   É a seção que costuma anunciar a última decisão do visitante.
*/
.full-cta {
  background: linear-gradient(rgba(30, 58, 47, 0.7), rgba(30, 58, 47, 0.7)), 
              url('images/placeholder.svg') center/cover no-repeat;
  padding: 8rem 2rem;
  text-align: center;
  color: var(--creme);
}

.full-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 800;
}

/* CONTATO
   ALTERE AQUI: endereço, e-mail, telefone e redes sociais.
   Reaproveita o visual de .category-card, com a classe extra .contato-card.
*/
.contato-card {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FOOTER
   ALTERE AQUI: o rodapé do site, como fundo escuro, endereço, telefones e texto final.
*/
footer {
  background-color: var(--preto);
  color: var(--creme);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* LOGO NO RODAPÉ
   ALTERE AQUI: o tamanho da logo exibida no rodapé, acima do endereço.
   Usa o mesmo filtro branco da logo do header, já que o fundo do rodapé é escuro.
*/
.footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1rem;
}

footer p {
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   PÁGINAS INDIVIDUAIS DE CADA PASSEIO (tour-*.html)
   ALTERE AQUI: tudo relacionado às páginas de detalhe de cada passeio.
   ========================================================================== */

/* BREADCRUMB
   ALTERE AQUI: o caminho de navegação no topo de cada página de passeio.
*/
.breadcrumb {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 0 2rem;
  font-size: 0.9rem;
  color: #777;
}

.breadcrumb a {
  color: var(--verde-floresta);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--terracota);
}

/* BANNER DO PASSEIO
   ALTERE AQUI: a foto de capa, o título e o preço em destaque de cada passeio.
*/
.tour-hero {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding: 0 2rem;
}

.tour-hero-image {
  height: 340px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.tour-hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--terracota);
  color: var(--creme);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-hero-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tour-hero-title {
  font-size: 2.2rem;
  color: var(--verde-floresta);
  font-weight: 800;
  text-transform: uppercase;
  max-width: 650px;
}

.tour-hero-price {
  text-align: right;
}

.tour-hero-price-label {
  font-size: 0.85rem;
  color: #777;
}

.tour-hero-price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--terracota);
}

/* BARRA DE INFORMAÇÕES RÁPIDAS
   ALTERE AQUI: duração, dificuldade, horário e ponto de encontro exibidos em destaque.
*/
.info-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.info-item {
  background-color: var(--branco);
  border-radius: 12px;
  padding: 1.3rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.info-item-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.info-item-value {
  font-size: 1rem;
  color: var(--verde-floresta);
  font-weight: 700;
}

/* CONTEÚDO DA PÁGINA DE PASSEIO
   ALTERE AQUI: descrição, roteiro, o que está incluso, recomendações e política de cancelamento.
*/
.tour-detail-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.tour-detail-section h2.subsection-title {
  font-size: 1.5rem;
  color: var(--verde-floresta);
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-align: left;
  text-transform: none;
}

.tour-detail-section p {
  color: #444;
  margin-bottom: 1rem;
}

.roteiro-list, .included-list, .recommend-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.roteiro-list li, .included-list li, .recommend-list li {
  background-color: var(--branco);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--amarelo-areia);
  font-size: 0.95rem;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* TABELA DE PREÇOS
   ALTERE AQUI: as faixas de preço (adulto, criança, idoso) de cada passeio.
*/
.price-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--branco);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}

.price-table th, .price-table td {
  padding: 1rem 1.2rem;
  text-align: left;
}

.price-table th {
  background-color: var(--verde-floresta);
  color: var(--creme);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.price-table td {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #333;
}

.price-table tr:last-child td {
  border-bottom: none;
}

/* POLÍTICA DE CANCELAMENTO
   ALTERE AQUI: as regras de cancelamento e reembolso do passeio.
*/
.cancel-policy {
  background-color: var(--verde-floresta);
  color: var(--creme);
  border-radius: 16px;
  padding: 1.8rem;
}

.cancel-policy p {
  color: var(--creme);
  opacity: 0.9;
}

/* CTA DE RESERVA DA PÁGINA DE PASSEIO
   ALTERE AQUI: os botões de reserva e WhatsApp no final da página.
*/
.tour-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

/* OUTROS PASSEIOS (rodapé da página de detalhe)
   ALTERE AQUI: os links rápidos para os demais passeios.
*/
.other-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.other-tour-card {
  background-color: var(--branco);
  border-radius: 12px;
  padding: 1.3rem;
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.other-tour-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.other-tour-card-title {
  color: var(--verde-floresta);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.other-tour-card-price {
  color: var(--terracota);
  font-weight: 700;
  font-size: 0.9rem;
}

/* LINK SECUNDÁRIO NOS CARDS DA HOME
   ALTERE AQUI: o link "Ver detalhes" que aparece nos cartões de passeio da página inicial.
*/
.tour-secondary-link {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--verde-floresta);
  text-decoration: none;
  margin-top: 0.6rem;
}

.tour-secondary-link:hover {
  color: var(--terracota);
  text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-card-wrapper {
    justify-content: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .nav-links {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .tour-hero-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tour-hero-price {
    text-align: left;
  }
  .logo-img {
    height: 34px;
  }
  .logo {
    font-size: 1.05rem;
  }
}


/* WORDPRESS / RESPONSIVIDADE / ACESSIBILIDADE */
.admin-bar header { top: 32px; }
@media (max-width: 782px) { .admin-bar header { top: 46px; } }

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: .5rem;
}
.mobile-menu-toggle span {
  display: block; width: 28px; height: 2px; margin: 5px 0;
  background: currentColor; border-radius: 2px; transition: .2s ease;
}

/* Evita que o editor do WordPress altere a aparência dos conteúdos do tema */
.entry-content img { max-width: 100%; height: auto; }

@media (max-width: 800px) {
  .mobile-menu-toggle { display: block; color: var(--creme); }
  nav { position: relative; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; gap: 0;
    padding: .75rem 0 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .8rem 0; }
  .hero { min-height: auto; padding: 5rem 1.25rem; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-card-wrapper { margin-top: 1rem; }
}

/* Imagem destacada dos passeios */
.tour-image { background-size: cover; background-position: center; }

/* Área administrativa: deixa o conteúdo dos passeios confortável no editor */
.wp-block-post-content { max-width: 100%; }

/* Conteúdo de posts individuais */
.single-passeio .entry-content > * { max-width: 100%; }
