/* Reset e Variáveis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #722f37;
  --secondary-color: #8b4049;
  --accent-color: #d4af37;
  --text-dark: #2c2c2c;
  --text-light: #666;
  --bg-light: #f8f8f8;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/*facet reset*/
.facetwp-facet {
  margin: 0 !important;
}

.facetwp-dropdown {
  max-width: 100% !important;
  width: 100% !important;
}

.facetwp-input-wrap {
  width: 100% !important;
  max-width: 100% !important;
}
.facetwp-search {
  width: 100% !important;
  max-width: 100% !important;
}

.facetwp-facet-busca {
  width: 100% !important;
  max-width: 100% !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  width: 220px;
  height: 40px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 75%;
}

.logo-icon {
  font-size: 1.8rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

@media (max-width: 768px) {
  .nav-list {
    padding-top: 30px;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-reserve {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-reserve:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000; /* Evita fundo branco na transição */
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.3);
  }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide.previous {
  opacity: 1;
  z-index: 1;
  transition: none;
}

.hero-slide.zooming {
  animation: zoomIn 10s linear forwards;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.8)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 1.1s;
}

.btn {
  padding: 15px 35px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

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

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(114, 47, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 15px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: scroll 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.section-title.title-roteiros {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

/* Diferenciais */
.diferenciais {
  background: var(--bg-light);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.diferencial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.diferencial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.diferencial-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.diferencial-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.diferencial-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Próximas Viagens */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: var(--white);
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.viagens-carousel {
  position: relative;
}
.viagens-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.viagens-track {
  transition: transform 0.5s ease;
}

.viagem-card {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cfcfcf;
  transition: var(--transition);
  position: relative;
}

.viagem-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.viagem-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 10;
}

.viagem-image {
  height: 300px;
  overflow: hidden;
}

.viagem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.viagem-content {
  padding: 25px;
}

.viagem-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.viagem-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.viagem-description {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  min-height: 75px;
}

.viagem-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.viagem-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.btn-viagem {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-viagem:hover {
  background: var(--secondary-color);
}

/* Para Quem */
.para-quem {
  background: var(--bg-light);
}

.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.para-quem-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.para-quem-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.para-quem-intro {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.para-quem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.para-quem-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.para-quem-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.para-quem-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.para-quem-cta {
  margin-top: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* Nossa História */
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.historia-label {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.historia-content h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.historia-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
}

.historia-image {
  position: relative;
}

.historia-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.historia-quote {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-color);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.historia-quote p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Como Funciona */
.como-funciona {
  background: var(--bg-light);
  overflow: hidden;
  position: relative;
}

.como-funciona-container {
}

.funciona-swiper {
  margin-top: 50px;
  /* Space for pagination */
}

.swiper-wrapper {
  height: auto;
}

.swiper-pagination-bullet {
  background: var(--primary-color) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color) !important;
}

.swiper-button-next {
  right: 60px !important;
  top: 60% !important;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 60px !important;
  top: 60% !important;
  transform: translateY(-50%);
}

.funciona-step {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  transition: var(--transition);
  min-height: 250px;
}

.funciona-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.funciona-step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.funciona-step p {
  color: var(--text-light);
  line-height: 1.6;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: var(--white);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  background: var(--primary-color);
  color: var(--white);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content > p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.form-row textarea {
  resize: vertical;
}

.btn-primary-cta {
  width: 100%;
  padding: 15px;
  background: var(--white);
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary-cta:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
}

.cta-direct-contact {
  margin-top: 40px;
}

.cta-direct-contact p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.contact-options {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/*single roteiros*/
/* Hero Section */
.single-hero {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 75px;
  overflow: hidden;
}

.single-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.single-hero-content {
  position: relative;
  z-index: 2;
}

.single-hero h1 {
  font-size: 4rem;
  font-weight: normal;
  letter-spacing: 3px;
  margin-bottom: 0;
  font-style: italic;
}

.single-hero p {
  font-size: 1.125rem;
  letter-spacing: 1px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .single-hero {
    height: 260px;
  }
  .single-hero h1 {
    font-size: 2.5rem;
  }
  .single-hero p {
    font-size: 1rem;
  }
}

/* Breadcrumb */
.single-breadcrumb {
  background-color: #faf8f5;
  border-bottom: 1px solid #d9d4ce;
  padding: 1.25rem 0;
}

.single-breadcrumb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.single-breadcrumb a {
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-breadcrumb a:hover {
  color: #5b2c3e;
}

.single-breadcrumb span {
  color: #d9d4ce;
}

.single-breadcrumb strong {
  color: #2d2d2d;
  font-weight: normal;
}

/* Main Container */
.single-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.single-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .single-main-grid {
    grid-template-columns: 1fr;
  }
  .single-container {
    padding: 2rem 1.5rem;
  }
}

/* Left Column */
.single-left-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.single-main-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.single-main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Info Box */
.single-info-box {
  background-color: #faf8f5;
  border-radius: 4px;
  padding: 2.5rem;
  border-left: 4px solid #5b2c3e;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

.single-info-box h2 {
  font-size: 1.75rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: #3d1f28;
  margin-bottom: 2rem;
}

.single-info-box .single-section-label {
  color: #a0826d;
  font-weight: normal;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.single-info-box p {
  color: #6b6b6b;
  margin-bottom: 1rem;
}

.single-info-box strong {
  color: #2d2d2d;
  font-weight: normal;
}

.single-locations-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.single-locations-list p {
  font-size: 1rem;
  margin-bottom: 0;
}

.single-locations-list strong {
  font-weight: 700;
}

.single-location-item {
  display: flex;
  gap: 1.25rem;
}

.single-location-icon {
  color: #5b2c3e;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.single-location-info h3 {
  font-weight: normal;
  letter-spacing: 0.5px;
  color: #2d2d2d;
  margin-bottom: 0.25rem;
}

.single-location-info p {
  font-size: 0.875rem;
  color: #6b6b6b;
  margin: 0;
}

.single-audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #5b2c3e;
  background: none;
  border: none;
  font-weight: normal;
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 2rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.single-audio-btn:hover {
  color: #3d1f28;
}

/* Accordion */
.single-accordion {
  background-color: #faf8f5;
  border-radius: 4px;
  border-left: 4px solid #5b2c3e;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.single-accordion-button {
  width: 100%;
  padding: 2rem 2.5rem;
  background-color: #faf8f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: #3d1f28;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.single-accordion-button:hover {
  background-color: #f0eeea;
}

.single-accordion-button-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  letter-spacing: 1px;
}

.single-accordion-icon {
  width: 22px;
  height: 22px;
  color: #5b2c3e;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  stroke: currentColor;
}

.single-accordion-button.active .single-accordion-icon {
  transform: rotate(180deg);
}

.single-chevron-icon {
  width: 20px;
  height: 20px;
  color: #5b2c3e;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  stroke: currentColor;
}

.single-accordion-button.active .single-chevron-icon {
  transform: rotate(180deg);
}

.single-accordion-content {
  display: none;
  padding: 2rem 2.5rem;
  border-top: 1px solid #d9d4ce;
  background-color: #faf8f5;
}

.single-accordion-content.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline */
.single-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.single-timeline-item {
  display: flex;
  gap: 1.5rem;
}

.single-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.single-timeline-circle {
  width: 48px;
  height: 48px;
  background-color: #5b2c3e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-size: 1rem;
}

.single-timeline-line {
  width: 2px;
  height: 80px;
  background-color: #d9d4ce;
  margin-top: 0.75rem;
}

.single-timeline-item:last-child .single-timeline-line {
  display: none;
}

.single-timeline-content h4 {
  font-weight: normal;
  letter-spacing: 0.5px;
  color: #3d1f28;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.single-timeline-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.single-timeline-content li {
  color: #6b6b6b;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.single-timeline-content li::before {
  content: "◆";
  color: #a0826d;
  margin-top: 2px;
  font-size: 0.6rem;
}

/* Suggestions Box */
.single-suggestions-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #fef8f3;
  border-radius: 4px;
  border-left: 3px solid #c4a074;
}

.single-suggestions-box h4 {
  font-weight: normal;
  color: #3d1f28;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.single-suggestions-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.single-suggestions-box li {
  color: #6b6b6b;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.single-suggestions-box li::before {
  content: "✦";
  color: #c4a074;
  font-weight: bold;
  margin-top: 1px;
}

/* Accordion Content Sections */
.single-content-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.single-content-subsection h4 {
  font-weight: normal;
  color: #3d1f28;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.single-content-subsection ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.single-content-subsection li {
  color: #6b6b6b;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.single-content-subsection li::before {
  content: "✓";
  color: #5b2c3e;
  font-weight: bold;
  margin-top: 1px;
}

.single-investment-amount {
  font-size: 2.5rem;
  font-weight: normal;
  color: #5b2c3e;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.single-investment-per {
  color: #6b6b6b;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.single-important-text {
  color: #6b6b6b;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Right Column - Reservation Panel */
.single-right-column {
  display: flex;
  flex-direction: column;
}

.single-reservation-panel {
  background-color: #faf8f5;
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 110px;
  border-left: 4px solid #5b2c3e;
}

.single-price-section {
  margin-bottom: 2rem;
}

.single-price-label {
  color: #6b6b6b;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: normal;
  margin-bottom: 0.75rem;
}

.single-price-amount {
  font-size: 2.75rem;
  font-weight: normal;
  color: #5b2c3e;
  margin: 0.5rem 0;
  letter-spacing: 1px;
}

.single-price-per {
  color: #6b6b6b;
  font-size: 0.875rem;
}

.single-panel-divider {
  border-bottom: 1px solid #d9d4ce;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.single-panel-section-title {
  font-weight: normal;
  color: #3d1f28;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.single-date-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.single-date-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 2px solid #d9d4ce;
  background-color: #faf8f5;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: normal;
  color: #6b6b6b;
  font-size: 0.95rem;
}

.single-date-button:hover {
  border-color: #5b2c3e;
}

.single-date-button.active {
  border-color: #5b2c3e;
  background-color: #faf8f5;
}

.single-date-button svg {
  width: 18px;
  height: 18px;
  color: #5b2c3e;
  stroke: currentColor;
}

.single-date-button.active svg:last-child {
  color: #5b2c3e;
  margin-left: auto;
}

.single-location-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.single-location-button {
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 4px;
  background-color: #f3f0ed;
  color: #6b6b6b;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: normal;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.single-location-button:hover {
  background-color: #ebe6e0;
}

.single-location-button.active {
  background-color: #5b2c3e;
  color: white;
}

.single-location-button svg {
  width: 16px;
  height: 16px;
}

.single-reserve-btn {
  width: 100%;
  padding: 1.25rem;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: normal;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.single-reserve-btn:hover {
  background-color: #128c7e;
  color: white;
  text-decoration: none;
}

.single-reserve-note {
  text-align: center;
  color: #6b6b6b;
  font-size: 0.75rem;
  margin-top: 1.25rem;
}

/* Bottom CTA Section */
.single-cta-section {
  background: linear-gradient(135deg, #3d1f28 0%, #5b2c3e 100%);
  color: white;
  padding: 4rem 2rem;
  margin-top: 4rem;
  text-align: center;
}

.single-cta-content {
  max-width: 1000px;
  margin: 0 auto;
}

.single-cta-content h2 {
  font-size: 2.25rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.single-cta-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.single-cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.single-cta-button {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.single-cta-button.white {
  background-color: white;
  color: #5b2c3e;
}

.single-cta-button.white:hover {
  background-color: #f8f6f3;
}

.single-cta-button.outline {
  border: 2px solid white;
  background-color: transparent;
  color: white;
}

.single-cta-button.outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .single-cta-buttons {
    flex-direction: column;
  }
  .single-cta-button {
    width: 100%;
    max-width: 100%;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .single-container {
    padding: 2rem 1.5rem;
  }

  .single-main-grid {
    gap: 2rem;
  }

  .single-info-box,
  .single-accordion,
  .single-reservation-panel {
    padding: 1.75rem;
  }

  .single-accordion-button {
    padding: 1.5rem 1.75rem;
  }

  .single-accordion-content {
    padding: 1.5rem 1.75rem;
  }

  .single-reservation-panel {
    position: static;
  }

  .single-hero h1 {
    font-size: 2.5rem;
  }
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-col p {
  line-height: 1.8;
  opacity: 0.8;
}

.footer-location {
  margin-top: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.newsletter-form button {
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--secondary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .para-quem-grid,
  .historia-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .historia-image {
    order: -1;
  }

  .historia-quote {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }

  .viagem-card {
    flex: 0 0 calc(50% - 15px);
  }

  .section-header {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

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

  .section-title {
    font-size: 2rem;
  }

  .viagem-card {
    flex: 0 0 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-options {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .diferenciais-grid,
  .funciona-grid {
    grid-template-columns: 1fr;
  }
}
