/* ============================================
   PASSEIOS.CSS - Estilos para Catálogo e Páginas de Passeios
   ============================================ */

/* ========== CATÁLOGO DE PASSEIOS ========== */
.catalogo-passeios {
  padding: 50px 0;
  background: #f1e3ca;
  min-height: 100vh;
}

.catalogo-header {
  text-align: center;
  margin-bottom: 30px;
}

.catalogo-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #58371b;
  margin-bottom: 15px;
}

.catalogo-subtitle {
  font-size: 1rem;
  color: #e08e2b;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}

.catalogo-description {
  font-size: 1.2rem;
  color: #58371b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.tours-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-bottom: 25px;
}

.tours-carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.tours-list {
  display: flex;
  gap: 32px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.tours-list .tour-card {
  flex: 0 0 calc((100% - 96px) / 4);
  max-width: calc((100% - 96px) / 4);
}

.carousel-btn {
  background: #825436;
  color: white;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(51, 51, 51, 0.15);
}

.carousel-btn:hover:not(:disabled) {
  transform: scale(1.08);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #d5dde5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  width: 28px;
  border-radius: 999px;
  background: #58371b;
}

.carousel-indicator:hover {
  background: #a8b5c3;
}

/* Filtros */
.catalogo-filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.filtro-btn {
  padding: 12px 24px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #58371b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filtro-btn:hover {
  background: #f0f0f0;
  border-color: #58371b;
  transform: translateY(-2px);
}

.filtro-btn.active {
  background: #58371b;
  color: white;
  border-color: #58371b;
}

/* Grid de Passeios */
.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Loading */
.loading-container {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #58371b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Mensagem de nenhum resultado */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font-size: 1.1rem;
  color: #58371b;
}

/* ========== TOUR CARDS ========== */
.tour-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 5;
  position: relative;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.tour-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e74c3c;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}

.tour-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-category {
  display: inline-block;
  background: #ecf0f1;
  color: #58371b;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.tour-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #58371b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tour-description {
  color: #58371b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tour-info {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #ecf0f1;
  margin-bottom: 15px;
}

.tour-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #58371b;
  font-size: 0.9rem;
}

.tour-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #27ae60;
}

.tour-buttons {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

/* Botões de passeios padronizados */
.tour-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
}

.tour-btn:hover {
  background: linear-gradient(135deg, #6b4528 0%, #a06a4a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 55, 27, 0.4);
}

.tour-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.tour-btn-whatsapp:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0F7A6F 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.tour-btn-details {
  background: linear-gradient(135deg, #58371b 0%, #8b5a3c 100%);
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
}

.tour-btn-details:hover {
  background: linear-gradient(135deg, #6b4528 0%, #a06a4a 100%);
  box-shadow: 0 6px 20px rgba(88, 55, 27, 0.4);
}

.tours-actions {
  text-align: center;
  margin-top: 20px;
}

.tours-actions .tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 200px;
  padding: 12px 32px;
}

@media (max-width: 1399px) {
  .tours-list .tour-card {
    flex: 0 0 calc((100% - 64px) / 3);
    max-width: calc((100% - 64px) / 3);
  }
}

@media (max-width: 1024px) {
  .tours-list {
    gap: 28px;
  }

  .tours-list .tour-card {
    flex: 0 0 calc((100% - 28px) / 2);
    max-width: calc((100% - 28px) / 2);
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .tours.catalogo-passeios .container {
    padding: 0 10px;
  }

  .tours-carousel-wrapper {
    gap: 8px;
  }

  .tours-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .tours-list {
    gap: 16px;
    display: flex;
  }

  .tours-list .tour-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .tour-card:hover {
    transform: translateY(-4px);
  }

  .tour-card:hover .tour-image img {
    transform: scale(1.02);
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    z-index: 10;
  }
}

@media (max-width: 480px) {
  .tours.catalogo-passeios .container {
    padding: 0 8px;
  }

  .tours-carousel-wrapper {
    gap: 6px;
  }

  .tours-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .tours-list {
    gap: 12px;
    display: flex;
  }

  .tours-list .tour-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .tour-card:hover {
    transform: translateY(-4px);
  }

  .tour-card:hover .tour-image img {
    transform: scale(1.02);
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    z-index: 10;
  }

  /* Carrossel da Galeria - Mobile */
  .passeio-galeria-carousel-wrapper {
    gap: 8px;
  }

  .passeio-galeria-list {
    gap: 10px;
  }

  .passeio-galeria-list .gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .gallery-item {
    height: 280px;
  }

  .galeria-carousel-btn {
    width: 36px;
    height: 36px;
  }
}

/* ========== PÁGINA DE DETALHES DO PASSEIO ========== */
.passeio-detalhes {
  padding: 40px 0 80px;
  background: #f1e3ca;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #58371b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #333;
  text-decoration: underline;
}

.breadcrumb .separator {
  color: #bdc3c7;
}

/* Header do Passeio */
.passeio-header {
  margin-bottom: 40px;
}

.passeio-categoria-badge {
  display: inline-block;
  background: #58371b;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.passeio-titulo {
  font-size: 2.4rem;
  font-weight: 700;
  color: #58371b;
  line-height: 1.2;
}

/* Grid Principal */
.passeio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Coluna Esquerda */
.passeio-imagem-principal {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.passeio-imagem-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Galeria */
.passeio-galeria-container {
  margin-top: 40px;
}

.section-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #58371b;
  margin-bottom: 25px;
}

/* Carrossel da Galeria */
.passeio-galeria-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
}

.passeio-galeria-carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.passeio-galeria-list {
  display: flex;
  gap: 15px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.passeio-galeria-list .gallery-item {
  flex: 0 0 calc((100% - 45px) / 4);
  max-width: calc((100% - 45px) / 4);
  min-width: 0;
}

.gallery-item {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  color: white;
}

/* Botões do Carrossel da Galeria */
.galeria-carousel-btn {
  background: #58371b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(51, 51, 51, 0.15);
  flex-shrink: 0;
  z-index: 10;
}

.galeria-carousel-btn:hover:not(:disabled) {
  transform: scale(1.08);
  background: #58371b;
}

.galeria-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Indicadores do Carrossel da Galeria */
.galeria-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.galeria-carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d5dde5;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.galeria-carousel-indicator.active {
  width: 24px;
  border-radius: 999px;
  background: #58371b;
}

.galeria-carousel-indicator:hover {
  background: #a8b5c3;
}

/* Card de Informações */
.info-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: sticky;
  top: 20px;
}

.info-card-header {
  background: linear-gradient(135deg, #58371b 0%, #e08e2b 100%);
  color: white;
  padding: 20px;
}

.info-card-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.info-card-body {
  padding: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #ecf0f1;
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 1.8rem;
  width: 40px;
  text-align: center;
}

.info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  margin:auto;
}

.info-label {
  font-size: 0.85rem;
  color: #58371b;
  margin-bottom: 3px;
  justify-items:center;
  display: flex;
  margin: auto;
}

.info-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #58371b;
  justify-items: center;
  display:flex;
  margin:auto;
}

/* Horários */
.horarios-disponiveis {
  padding: 20px 25px;
  background: white;
}

.horarios-disponiveis h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #58371b;
}

.horarios-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.horario-badge {
  background: white;
  border: 2px solid #58371b;
  color: #58371b;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Botão de Reserva */
/* Botão de reserva padronizado */
.btn-reservar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-reservar:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0F7A6F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Descrição Completa */
.passeio-descricao-completa {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.passeio-descricao-completa p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #58371b;
  white-space: pre-wrap;
}

/* Grid - O que está incluído / não incluído / Política de Crianças */
.passeio-inclui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.inclui-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.inclui-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #27ae60;
}

.inclui-card.nao-inclui h3 {
  color: #e74c3c;
}

.inclui-card ul {
  list-style: none;
  padding: 0;
}

.inclui-card li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #58371b;
  line-height: 1.6;
}

.inclui-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.2rem;
}

.inclui-card.nao-inclui li::before {
  content: "✗";
  color: #e74c3c;
}

/* Estilos para Política de Crianças */
.inclui-card.politica-criancas h3 {
  color: #f39c12;
}

.inclui-card.politica-criancas p {
  padding: 10px 0;
  color: #58371b;
  line-height: 1.6;
  margin: 0;
}

.inclui-card.politica-criancas p:not(:last-child) {
  margin-bottom: 10px;
}

/* Observações */
.passeio-observacoes {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.passeio-observacoes p {
  color: #856404;
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

/* Footer da Página */
.passeio-footer {
  text-align: center;
}

/* Botão voltar padronizado */
.btn-voltar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  background: #ecf0f1;
  color: #58371b;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-voltar:hover {
  background: #bdc3c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ========== LIGHTBOX ========== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
  color: white;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-close:disabled,
.lightbox-prev:disabled,
.lightbox-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
  .passeio-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    position: static;
  }

  /* Em tablets, 2 colunas */
  .passeio-inclui-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .catalogo-title {
    font-size: 2rem;
  }

  .catalogo-grid {
    grid-template-columns: 1fr;
  }

  .passeio-titulo {
    font-size: 2rem;
  }

  .passeio-imagem-principal {
    height: 300px;
  }

  .passeio-galeria-carousel-wrapper {
    gap: 10px;
  }

  .passeio-galeria-list {
    gap: 12px;
  }

  .passeio-galeria-list .gallery-item {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }

  .gallery-item {
    height: 240px;
  }

  .galeria-carousel-btn {
    width: 40px;
    height: 40px;
  }

  /* No mobile, os cards ficam empilhados */
  .passeio-inclui-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* ========== BOTÃO E MODAL DE POLÍTICA DE CANCELAMENTO ========== */
.passeio-politica-cancelamento {
  margin: 40px 0 30px;
  text-align: center;
}

.passeio-botoes-info {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-politica-cancelamento {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #58371b 0%, #e08e2b 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 55, 27, 0.3);
}

.btn-politica-cancelamento:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 55, 27, 0.4);
  background: linear-gradient(135deg, #e08e2b 0%, #58371b 100%);
}

.btn-politica-cancelamento:active {
  transform: translateY(0);
}

.btn-como-funciona-passeio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0c454e 0%, #1a7a8c 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(12, 69, 78, 0.3);
}

.btn-como-funciona-passeio:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 69, 78, 0.4);
  background: linear-gradient(135deg, #1a7a8c 0%, #0c454e 100%);
}

.btn-como-funciona-passeio:active {
  transform: translateY(0);
}

/* Modal de Política de Cancelamento */
.modal-politica {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.modal-politica.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-politica-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-politica-content {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-politica-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10002;
  color: #333;
}

.modal-politica-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.modal-politica-header {
  padding: 24px 24px 16px;
  border-bottom: 2px solid #f0f0f0;
}

.modal-politica-header h2 {
  margin: 0;
  font-size: 1.75rem;
  color: #2c3e50;
  font-weight: 700;
}

.modal-politica-body {
  padding: 24px;
}

.politica-section {
  margin-bottom: 24px;
}

.politica-section:last-child {
  margin-bottom: 0;
}

.politica-section h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: #34495e;
  font-weight: 600;
}

.politica-section p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #58371b;
}

.politica-section ul {
  margin: 12px 0;
  padding-left: 24px;
}

.politica-section li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #58371b;
}

.politica-section li strong {
  color: #2c3e50;
  font-weight: 600;
}

.modal-politica-footer {
  padding: 16px 24px;
  border-top: 2px solid #f0f0f0;
  text-align: right;
}

.btn-fechar-modal {
  padding: 10px 24px;
  background: linear-gradient(135deg, #58371b 0%, #e08e2b 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-fechar-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 55, 27, 0.3);
  background: linear-gradient(135deg, #e08e2b 0%, #58371b 100%);
}

/* Responsivo */
@media (max-width: 768px) {
  .modal-politica-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 12px;
  }

  .modal-politica-header {
    padding: 20px 20px 12px;
  }

  .modal-politica-header h2 {
    font-size: 1.5rem;
  }

  .modal-politica-body {
    padding: 20px;
  }

  .modal-politica-footer {
    padding: 12px 20px;
  }

  .btn-politica-cancelamento {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .passeio-botoes-info {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-como-funciona-passeio {
    padding: 10px 20px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}