:root {
  --primary-color: #0054a6;
  --secondary-color: #f37021;
  --rating-color: #0054a6;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --bs-primary: #0054a6;
  --bs-primary-rgb: 0, 84, 166;
  --bs-link-color: #1a1a1a;
  --bs-link-hover-color: #004285;
  --bs-warning: #ffc107;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark-color);
}
.navbar-brand,
h1,
h2,
h3,
h4 {
  font-family: Montserrat, sans-serif;
}
.text-primary {
  color: var(--primary-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-orange {
  background-color: var(--secondary-color) !important;
  color: #fff;
}
.text-orange {
  color: var(--secondary-color) !important;
}
.border-orange {
  border-color: var(--secondary-color) !important;
}
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.btn-primary:hover {
  background-color: #004285 !important;
  border-color: #004285 !important;
}
.btn-outline-primary {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.btn-outline-primary:hover,
.btn-tour:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}
.btn-orange {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #000 !important;
}
.btn-orange:hover {
  background-color: #d95e0f !important;
  border-color: #d95e0f !important;
}
.btn-tour {
  background-color: #fff !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  transition: 0.3s !important;
  width: 100% !important;
}
.sticky-top {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1030;
}
.nav-brand {
  width: 200px;
  height: auto;
}
.navbar .dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
}
.navbar .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}
.navbar .dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.navbar .dropdown-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.navbar .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.dropdown-item:hover {
  color: var(--bs-dropdown-link-active-color) !important;
  background-color: var(--bs-dropdown-link-active-bg) !important;
}
.page-hero {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 0;
  padding-top: 80px;
}
.hero-content-bg {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;  
  border-radius: 10px;
  display: inline-block;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.breadcrumb-section {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}
.breadcrumb-section nav {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.breadcrumb-section nav::-webkit-scrollbar {
  display: none;
}
.breadcrumb-section .breadcrumb {
  flex-wrap: nowrap;
  width: max-content;
}
.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}
.gallery-img,
.price-card-img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
}
.gallery-img {
  height: 250px;
  border-radius: 12px;
  transition: transform 0.3s;
  cursor: pointer;
}
.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.price-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border-radius: 12px;
  background: #fff;
}
.price-card:hover {
  transform: translateY(-5px);
}
.price-header {
  padding: 20px;
  text-align: center;
  color: #fff;
  border-radius: 6px 6px 0 0;
}
.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
}
.price-card-img {
  height: 160px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.tour-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
  background: #fff;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.tour-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.tour-card:hover .tour-img {
  transform: scale(1.1);
}
.badge-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.tour-body {
  padding: 1.5rem;
}
.tour-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.tour-meta {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tour-hr {
  border-color: var(--dark-color);
  margin-top: 1.5rem !important;
  border-width: thin;
}
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.rating-content {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  gap: 6px;
}
.rating-badge {
  background-color: var(--rating-color);
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.2;
}
.rating-text {
  color: var(--rating-color);
  font-weight: 600;
  font-size: 0.85rem;
}
.hstar {
  color: var(--bs-warning);
}
.min-people {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #000;
  background-color: #f8f9fa;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  font-weight: 600;
}
.vagao-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: #000;
}
.vagao-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.95;
}
.vagao-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 10%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}
.vagao-content {
  transform: translateY(140px);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.vagao-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.95);
}
.vagao-desc {
  color: #fff;
  background-color: rgba(20, 20, 20, 0.75);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0;
  transition: 0.4s 0.1s;
  margin-bottom: 20px;
}
.vagao-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s 0.2s;
  font-size: 1.1rem;
  padding: 12px;
}
.vagao-card:hover .vagao-img {
  transform: scale(1.1);
  opacity: 1;
}
.vagao-card:hover .vagao-content {
  transform: translateY(0);
}
.vagao-card:hover .vagao-btn,
.vagao-card:hover .vagao-desc {
  opacity: 1;
  transform: translateY(0);
}
.footer-link {
  transition: color 0.3s;
}
.footer-link:hover {
  color: var(--secondary-color) !important;
  padding-left: 5px;
}
.footer-redes {
  font-size: 30px;
  width: 23px;
}
.footer-seg {
  height: 50px;
  margin-right: 5px;
  margin-left: 5px;
}
.footer-reg {
  height: 37px;
}
.pay-card {
  width: 45px;
  margin: 5px;
}
.footer-text {
  font-size: 16px;
}
.ultra-small {
  font-size: 12px;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: 0.3s;
  text-decoration: none;
  animation: 2s infinite pulse-green;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}
.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: white;
}
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: var(--primary-color);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: 0.3s;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background-color: #004285;
  color: #fff;
  transform: translateY(-5px) scale(1.1);
}
@media (max-width: 991px) {
  .vagao-card {
    height: 450px;
  }
  .vagao-title {
    font-size: 1.4rem;
  }
  .vagao-desc {
    font-size: 0.95rem;
    padding: 12px;
  }
}
.btn-outline-src {
  --bs-btn-color: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-border-color);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--bs-border-color);
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: var(--bs-border-color);
  --bs-btn-bg: transparent;
}
.btn-outline-src:focus,
.btn-outline-src:hover {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-box-shadow: none;
}
.input-group-md-custom .btn,
.input-group-md-custom .form-control {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  font-size: 0.95rem;
}
.input-group-md-custom .lucide-search-icon {
  width: 15px;
  height: 15px;
}
.nodisp {
  display: none !important;
}
.disp {
  display: flex !important;
}
.htxt {
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0;
  font-size: 1rem !important;
}