/* Base */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CONFIGURAÇÃO DAS CORES */
:root {
   --primary: #2E86AB;
  --primary-light: #4AA8D0;
  --primary-dark: #1A5F7A;
  --secondary: #F18F01;
  --secondary-light: #FFA630;
  --secondary-dark: #D97E00;
  --accent: #A23B72;
  --accent-light: #C178A2;
  --accent-dark: #7D2954;
  --success: #48A14D;
  --warning: #FFC107;
  --error: #F44336;
  --gray-light: #f5f7fa;
  --gray: #ADB5BD;
  --gray-dark: #495057;
  --white: #FFFFFF;
  --black: #000000;
  --dark: #212529;
  --light: #F8F9FA;
  --shadow-sm:  0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 8px;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;
}

/* RESETS GERAIS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

.logo {
  display: flex;
  height: 60px;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  transition: var(--transition);
}


.logo-img {
  height:160px !important;
  width: auto;
  transition: var(--transition);
    filter: 
    drop-shadow(0 0 2px rgba(255,255,255,0.5))
    drop-shadow(0 2px 4px rgba(0,0,0,0.3))
}
.logo-img:hover {
  transform: scale(1.08);
  filter: 
    drop-shadow(0 0 4px rgba(0,0,0,0.4))
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}
a, button, .destination-card, .feature, .social-icons a {
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color:linear-gradient(to right, var(--primary), var(--secondary));
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 1rem auto;
}


.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-heading);
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn:hover::after {
  transform: translateX(0);
}



.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
}

.btn-secondary {
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(to right, var(--secondary-dark), var(--secondary));
}

.btn-accent {
  background-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background: linear-gradient(to right, var(--accent), var(--accent-light));
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
}

.btn-block {
  display: block;
  width: 100%;
}


/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  background: var(--primary) !important;
  border: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  color: white !important;
  padding: 10px 20px !important;
  border-left: 3px solid transparent !important;
  transition: all 0.3s ease !important;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-left: 3px solid var(--secondary) !important;
}

.dropdown > a i {
  margin-left: 5px;
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-in {
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: var(--primary-dark);
  border-bottom: 3px solid var(--secondary);
  border-image: linear-gradient(to right, var(--secondary), var(--accent));
  border-image-slice: 1;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  border-bottom: 4px solid transparent;
  border-image-slice: 1;
}

header.scrolled .logo-img {
  height: 90px;
  filter: brightness(0.9) drop-shadow(0 2px 4px rgb(0, 0, 0, 0.1));
}

header.scrolled #desktop-nav ul li a {
  color: white;
}

header.scrolled #desktop-nav ul li a:hover {
  color:  white !important;
}

header.scrolled #desktop-nav ul li a::after {
  background:  white;
}

header.scrolled .dropdown-menu {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
}

header.scrolled .dropdown-menu a {
  color: white !important;
}

header.scrolled .dropdown-menu a:hover {
  color: var(--primary) !important;
}

header.scrolled .logo span {
  color: var(--primary);
}

/* DESKTOP NAV */

#desktop-nav {
  display: none;
}

#desktop-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

#desktop-nav ul li a {
  color: rgb(255, 255, 255);
  position: relative;
  padding: 0.5rem 0;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3); 
  transition: all 0.3s ease;
}
#desktop-nav ul li a:hover {
  color: white !important;
}

#desktop-nav ul li a[href="./destinos/caldas-novas.html"] {
  font-weight: 600;
  color: white !important;
  text-shadow: 0px 0px 10px rgb(211, 208, 208);
}

#desktop-nav ul li a[href="./destinos/caldas-novas.html"]:hover {
  color: rgb(255, 255, 255) !important;
}

#desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

#desktop-nav ul li a:hover::after {
  width: 100%;
}



/*DESKTOP NAV VERSÃO MOBILE */

#mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 54%;
  max-width: 280px;
  height: 100%;
  background: var(--primary-dark);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  padding: 1.5rem 1rem;
  transition: var(--transition);
  overflow-y: auto;
  padding-top: 3rem;
}

#mobile-nav.active {
  right: 0;
}

#mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

#mobile-nav ul li a {
  color: white !important;
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  transition: var(--transition);
}

#mobile-nav ul li a:hover {
  color: var(--secondary-light) !important; 
}

#mobile-nav .btn {
  margin-top: 1rem;
  width: 100%;
}


#mobile-nav ul li a[href="./destinos/caldas-novas.html"] {
  color: white !important;
}

#mobile-menu-btn {
  display: flex;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
#mobile-nav .btn-primary {
  background: var(--primary) !important;
  color: white !important;
  margin-top: 1.5rem;
}

header.scrolled #mobile-menu-btn {
    color: white !important;
}
header.scrolled #mobile-nav {
  background-image: url("../img/4_06_2025\,\ 15_15_07.png") !important; 
}
header.scrolled #mobile-nav ul li a {
  color: white !important;
}

header.scrolled #mobile-nav ul li a:hover {
  color: var(--primary);
}

#mobile-nav .dropdown{
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}



#mobile-nav .dropdown-menu a{
    display: block;
    color: white !important;
    opacity: 0.9;
    font-size: 0.9em !important;
    padding: 8px 0px !important;
    color: var(--gray-dark) !important;
    border-left: none !important;
} 
#mobile-nav .dropdown-menu a :hover{
    color: var(--secondary-light) !important;
    background: transparent !important;
    padding-left: 8px !important;
}
#mobile-nav .dropdown.active .dropdown-menu {
  display: block;
}

#mobile-nav .dropdown > a {
  position: relative;
  padding: 12px 0;
  font-weight: 600;
  color: var(--primary)!important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#mobile-nav .dropdown > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

#mobile-nav .dropdown.active > a::after {
  transform: rotate(180deg);
}


#mobile-nav .dropdown > a i {
  display: none;
}

#mobile-nav .dropdown.active > a i {
  transform: translateY(-50%) rotate(180deg);
}

#mobile-nav .btn-primary {
  background: var(--primary) !important;
  color: white !important;
  margin-top: 1rem;
}

/* Adicionar estilo para o botão de fechar */
.mobile-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 1002;
}

/* Mobile Dropdown Estilo */
#mobile-nav .dropdown-menu {
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: var(--radius);
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 15px;

}

#mobile-nav .dropdown.active .dropdown-menu {
    display: block !important;
    max-height: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#mobile-nav .dropdown-menu a {
    padding: 0.5rem 1rem !important;
    display: block;
    font-size: 0.9em;
    border-left: none !important;
    color: white !important;
    transition: all 0.3s ease;
}

#mobile-nav .dropdown-menu a:hover {
  padding-left: 5px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--secondary-light) !important;

}

#mobile-nav .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mobile-nav .dropdown > a i {
    display: none;
}

#mobile-nav .dropdown.active > a i {
    transform: rotate(180deg);
}

#mobile-nav .dropdown > a.mobile-nav-link {
  font-weight: 600 !important;
  font-size: 1rem !important;
  color: white !important;
}

#mobile-nav .dropdown-menu a.mobile-nav-link {
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.9;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 500px;
  max-height: 1200px;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.slide-container {
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.slide-content {
  max-width: 90%;
  padding: 1.5rem;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5) ;
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  color: white;
  z-index: 1;
}

.slide-content h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 0.8s ease-out;
}

.slide-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.slide-content .btn {
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: white;
}

/* Destinations Section */
.destination-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.destination-anchor {
    position: absolute;
    top: -100px;
    visibility: hidden;
}


.filter-btn {
  background: transparent;
  border: 1px solid var(--gray);
  color: var(--gray-dark);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}


.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.destination-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:  0 5px 15px rgba(0, 0, 0, 0.08);
  transition:  all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: white;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow:  0 15px 30px rgba(0, 0, 0, 0.12);
}

.destination-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.destination-type {
  position: absolute;
  top: 10px;
  right: 10px;
  background:linear-gradient(to right, var(--accent), var(--accent-dark));
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
  z-index: 1;
}

.destination-content {
  padding: 1.5rem;
}

.destination-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.destination-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.destination-location i {
  color: var(--accent);
}

.destination-description {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.destination-price {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.destination-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.destination-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.destination-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.5rem;
}

.destination-rating i {
  color: var(--warning);
}

.instagram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid #E1306C;
  color: #E1306C;
}

.instagram-btn:hover {
  background: #E1306C;
  color: white;
  border-color: #E1306C;
}

/* Destination Buttons Container */
.destination-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.destination-buttons .btn {
  flex: none;
  padding: 0.5rem 0.8rem;
  min-width: auto;
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  text-align: center;
}



/* About Section */
.about-section {
  background-color: var(--gray-light);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/background-pattern.png') repeat;
  opacity: 0.05;
  z-index: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
}

.about-text .section-header {
  text-align: left;
}

.about-text .section-header h2::after {
  left: 0;
  transform: none;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature i {
  color: var(--success);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.feature:hover i {
  color: var(--accent);
  transform: scale(1.2);
}

.about-image {
  flex: 1;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials Section */
.testimonial-slider {
  position: relative;
  padding: 2rem 0;
}

.testimonial-container {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 1rem;
}

.testimonial.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  margin-top: 2rem;
}

.testimonial-content::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--primary);
  font-family: serif;
  line-height: 1;
}

.testimonial-rating {
  margin: 1rem 0;
}

.testimonial-rating i {
  color: var(--warning);
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-author {
  margin-top: 1.5rem;
}

.testimonial-author h4 {
  margin-bottom: 0.2rem;
}

.testimonial-author p {
  color: var(--gray);
  font-size: 0.9rem;
}

.testimonial-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

/* Contact Section */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-container {
  flex: 1;
  position: relative;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  overflow: hidden;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid var(--gray-light);
  background: #f9fafc;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(49, 101, 177, 0.1);
  background: white;
}

.form-success,
.modal-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.form-success.active,
.modal-success.active {
  transform: translateY(0);
}

.form-success i,
.modal-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1rem;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.info-item h4 {
  margin-bottom: 0.5rem;
}

.info-item p {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.whatsapp-contact {
  margin: 1.5rem 0;
}

.whatsapp-contact .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 250px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
}



.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  background: var(--secondary);
  box-shadow: 0 5px 15px rgba(149, 201, 75, 0.3);
}

.footer-links h4,
.footer-destinations h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h4::after,
.footer-destinations h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul,
.footer-destinations ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links ul li a,
.footer-destinations ul li a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-destinations ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--gray);
}

.footer-contact p i {
  color: var(--primary);
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-bottom i {
  color: var(--error);
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-details {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--gray-light);
  border-radius: var(--radius);
}

.modal-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.modal-details ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-details li {
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.close-modal:hover {
  color: var(--error);
}

.modal-body {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-price {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


/* Destination Page Styles */
.destination-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.destination-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease-out;
}

.destination-location {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.destination-description {
    line-height: 1.8;
}

.destination-highlights {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.destination-highlights ul {
    list-style: none;
}

.destination-highlights li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-highlights i {
    color: var(--success);
}

.destination-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-box, .dates-box {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: var(--radius);
}

.price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: normal;
}

.notice {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.departure-dates {
    list-style: none;
}

.departure-dates li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray);
}

.destination-gallery {
    margin: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.destination-itinerary {
    margin: 4rem 0;
}

.itinerary-day {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
}

.destination-cta {
    text-align: center;
    background-color: var(--primary);
    color: white;
}

.destination-cta h2 {
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1rem;
  padding-right: 2rem !important;
}

/* Responsive Styles */

@media (max-width: 320px) {
  .modal {
    align-items: flex-start; /* Alinha no topo */
    padding-top: 10px;
  }
  .modal-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .modal-content {
    width: 95%;
    margin: 0;
    border-radius: 0;
    max-height: 90vh;
    height: 100vh;
    overflow-y: auto; /* Permite scroll vertical */
    margin-top: 0;
    transform: none !important;
  }
  
  .modal-body {
    padding: 15px;
  }

  .modal-header {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-light);
  }
  
  .modal-header h3 {
    font-size: 1rem;
    margin-right: 1.2rem;
  }
  
  .modal-price {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 0.4rem;
    grid-column: span 1;
  }
  
  .form-group label {
    font-size: 0.7rem;
    margin-bottom: 0.1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 40px;
    padding: 0.3rem 0.5rem;
    font-size:16px;
  }

  .modal-header h3 {
    font-size: 1.2rem;
  }
  
  textarea {
    min-height: 60px;
  }
  
  .btn {
    padding: 0.5rem;
    font-size: 0.75rem;
    margin-top: 0.3rem;
  }
  
  /* Ajuste extra para campos de seleção */
  select {
    background-position: right 0.5rem center;
    background-size: 0.8rem;
    padding-right: 1.5rem !important;
    line-height: 1.2;
  }
  
  /* Reduzir ainda mais o botão de fechar */
  .close-modal {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }
}
/* Ajustes extras para iPhone 5 */
@media (max-width: 350px) {
  .modal-content {
    width: 98%;
    padding: 1rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-header h3 {
    font-size: 1.1rem;
  }
  
  .modal-price {
    font-size: 1.1rem;
  }
  
  .modal-form .form-group label {
    font-size: 0.8rem;
  }
  
  .modal-form input,
  .modal-form select,
  .modal-form textarea {
    padding: 0.6rem;
  }
  .logo-img {
    height: 100px !important;
  }
  .form-group label {
    font-size: 0.8rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.5rem;
  }
  
  #contact-form {
    gap: 1rem;
  }
}


@media (max-width: 400px) {
  .logo-img {
    height: 50px !important;
  }
  .modal-header h3 {
    font-size: 1.1rem;
  }
  
  .modal-price {
    font-size: 1rem;
  }
  .modal-content {
    width: 98%;
    padding: 0.3rem;
  }
  
  .modal-body {
    padding: 0.9rem;
  }
  .contact-form-container {
    padding: 1rem;
  }
  .form-group {
    margin-bottom: 0.5rem;
  }
  
  .form-group label {
    font-size: 0.75rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  
  .contact-info {
    gap: 1rem;
  }
  
  .info-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .info-item i {
    font-size: 1.2rem;
  }
}

@media (max-width: 460px) {
  .logo-img {
    height: 120px !important; /* Reduzindo o tamanho */
    max-width: 100%;
    object-fit: contain;
  }
  
  header .container {
    padding: 0 0.5rem; /* Reduzindo o padding */
  }

  .section {
    padding: 3rem 0;
  }
  
  /* Reduzir tamanho de fontes */
  h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  /* Ajustar filtros de destino */
  .destination-filters {
    gap: 0.3rem;
  }
  
  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  /* Ajustar cards de destino */
  .destination-card {
    margin-bottom: 1.5rem;
  }
  
  .destination-image {
    height: 180px;
  }
}



/* Dispositivos pequenos (telefones em modo paisagem, 576px e acima) */
@media (min-width: 576px) {

    .form-group {
    margin-bottom: 0.6rem;
  }
  
  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
    border-radius: 5px;
  }
  
  .form-group textarea {
    min-height: 80px;
  }
   /* Ajustar padding do container para usar melhor o espaço */
  .container {
    padding: 0 0.75rem;
  }

    .modal-price {
    font-size: 1.1rem;
    margin: 0.5rem 0;
  }
  
  /* Reduzir tamanho dos botões */
  .btn {
    padding: 0.6rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
  
  /* Ajustar margens das seções */
  .section {
    padding: 3rem 0;
  }
  
  /* Ajustar o modal para não ultrapassar a altura da tela */
  .modal-body {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  
  /* Melhorar espaçamento dos cards */
  .destination-card {
    margin-bottom: 1.5rem;
  }

  .modal-content {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0.5rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-header h3 {
    font-size: 1.2rem;
    margin-right: 1.5rem; /* Espaço para o botão fechar */
    line-height: 1.3;
  }
  
  .modal-form .form-group {
    margin-bottom: 0.8rem;
  }
  
  .modal-form input,
  .modal-form select,
  .modal-form textarea {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  
  .modal-form button {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .modal-details {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .modal-details h3 {
    font-size: 1.1rem;
  }
  .slide-content {
    max-width: 80%;
    padding: 2rem;
  }
  
  .slide-content h1 {
    font-size: 2.8rem;
  }
  
  .slide-content p {
    font-size: 1.1rem;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Dispositivos médios (tablets, 768px e acima) */
@media (min-width: 768px) {
  #mobile-nav .dropdown-menu {
    padding-left: 10px;
  }
  
  #mobile-nav .dropdown-menu a {
    font-size: 0.85rem !important;
    padding: 6px 0 !important;
  }
  
  #mobile-nav .dropdown > a.mobile-nav-link {
    font-size: 0.95rem !important;
  }

  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  #desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  #mobile-menu-btn {
    display: none;
  }
  
  .logo-img {
    max-height: 70px;
    height: 70px !important;  
    filter: drop-shadow(0 0 1px rgba(255,255,255,0.3)) 
            drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  }
  
  .logo-img:hover {
    transform: scale(1.02);
  }
  
  header.scrolled .logo-img {
    filter: brightness(0.9) drop-shadow(0 1px 2px rgba(0,0,0,0.1)) !important;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .slide-content h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 921px) {
  #desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  #mobile-menu-btn {
    display: none;
  }
}

@media (max-width: 920px) {
  #mobile-menu-btn {
    display: flex;
  }
  
  #desktop-nav {
    display: none;
  }
  .logo-img {
    height: 60px !important;
    max-width: 100%;
    object-fit: contain;
  }
  
  header.scrolled .logo-img {
    height: 50px !important;
  }
    #mobile-nav .dropdown {
    position: static;
    margin-bottom: 0.5rem; /* espaçamento entre grupos */
  }
  /* Remove a seta de dropdown */
  #mobile-nav .dropdown > a::after {
    display: none;
  }
  /* Exibe o menu como parte do fluxo, sem fundo ou sombra */
  #mobile-nav .dropdown .dropdown-menu {
    position: static !important;
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 1rem; /* recuo para diferenciar */
    margin: 0;
  }
  /* Ajusta os links internos para parecerem itens de menu */
  #mobile-nav .dropdown .dropdown-menu a {
    display: block;
    padding: 0.6rem 0 !important;
    font-size: 0.95rem;
    font-weight: 500;
    border: none !important;
    color: white !important;
  }
  /* Opcional: efeito de hover mais sutil */
  #mobile-nav .dropdown .dropdown-menu a:hover {
    padding-left: 1.2rem !important;
    background: rgba(255,255,255,0.1) !important;
  }
  
}

/* Dispositivos grandes (desktops, 992px e acima) */
@media (min-width: 992px) {
  #mobile-nav .dropdown-menu {
    display: flex;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  
  #mobile-nav .dropdown.active .dropdown-menu {
    display: block;
    max-height: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  #mobile-nav .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #mobile-nav .dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
  }
  
  #mobile-nav .dropdown.active > a::after {
    transform: rotate(180deg);
  }

  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-content {
    flex-direction: row;
  }
  
  .contact-container {
    flex-direction: row;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  
  .destination-grid {
    grid-template-columns: 2fr 1fr;
  }
  
  .slide-content {
    max-width: 650px;
    margin: 0;
    text-align: left;
  }
  
  .slide-content h1 {
    font-size: 3.5rem;
  }
}

/* Landscape em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
  .logo-img {
    max-height: 60px;
    height: 40px;
    filter: brightness(0);
  }
  
  .hero {
    min-height: 400px;
  }
  
  .slide-content {
    padding: 1rem;
  }
  
  .slide-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .slide-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
}

/* Dispositivos muito pequenos (menos de 400px) */
@media (max-width: 400px) {
  header {
    padding: 0.5rem 0;
    height: 70px;
  }
  
  .logo-img {
    height: 50px !important;
  }
  
  .hero {
    min-height: 70vh;
    max-height: 100vh;
  }
  
  .slide-content {
    padding: 1rem;
    max-width: 95%;
  }
  
  .slide-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .slide-content .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .destination-card {
    margin-bottom: 1rem;
  }
  
  .destination-image {
    height: 180px;
  }
  
  .destination-content {
    padding: 1rem;
  }
  
  .destination-content h3 {
    font-size: 1.2rem;
  }
  
  .destination-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .destination-price {
    font-size: 1.3rem;
  }
  
  .destination-footer {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .destination-buttons {
    width: 100%;
  }
  
  .destination-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .about-section {
    padding: 3rem 0;
  }
  
  .about-image {
    height: 250px;
  }
  
  .testimonial-content {
    padding: 1.5rem;
  }
  
  .testimonial-content p {
    font-size: 0.9rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem;
  }
}