:root {
  /* Colors - Blue Palette ONLY */
  --primary: #1e4fd8;          /* Azul principal */
  --primary-dark: #163fa8;     /* Azul profundo */
  --primary-light: #3b6cf0;    /* Azul claro */
  --secondary: #0f3c91;        /* Azul secundário institucional */
  --secondary-dark: #0b2e6d;
  --secondary-light: #4f83ff;
  --accent: #5b9cff;           /* Azul accent para destaques */
  --accent-light: #8cb8ff;     /* Azul claro suave */
  
  /* Neutrals */
  --dark: #0b1220;
  --dark-soft: #111827;
  --text: #374151;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --light: #f8fafc;
  --white: #ffffff;
  
  /* Gradients - ONLY BLUE */
  --gradient-hero: linear-gradient(
    135deg,
    #0b1220 0%,
    #0f1f3d 50%,
    #1e4fd8 100%
  );
  --gradient-ocean: linear-gradient(
    135deg,
    #1e4fd8 0%,
    #3b6cf0 100%
  );
  --gradient-blue-soft: linear-gradient(
    135deg,
    #4f83ff 0%,
    #5b9cff 100%
  );
  --gradient-dark: linear-gradient(
    180deg,
    #0b1220 0%,
    #111827 100%
  );

  /* UI */
  --title-color: #0b1220;
  --body-color: hsl(210, 40%, 98%);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 50px rgba(30, 79, 216, 0.10);
  --shadow-card: 0 22px 70px rgba(30, 79, 216, 0.14);
  --border-soft: rgba(15, 23, 42, .08);
  --container: 1180px;
  --header-height: 7rem;
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body { 
  font-family: 'Open Sans', sans-serif; 
  background: var(--body-color); 
  color: var(--text); 
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.container { 
  max-width: 968px; 
  margin-left: 1rem; 
  margin-right: 1rem; 
}

/* HEADER - TRANSPARENTE NA HERO */
.header { 
  width: 100%; 
  position: fixed; 
  top: 0; 
  left: 0; 
  z-index: 100; 
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: all 0.4s ease;
}

.header.scroll-header { 
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav { 
  height: var(--header-height); 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Area */
.nav__logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__logo img { 
  width: auto; 
  height: 100px; 
  transition: all 0.3s ease;
}

.header.scroll-header .nav__logo img {
  filter: none;
}

.nav__tagline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 0.75rem;
  opacity: 0;
  animation: fadeInTagline 0.8s ease 0.3s forwards;
}

.header.scroll-header .nav__tagline {
  color: var(--primary);
  border-color: var(--primary);
}

@keyframes fadeInTagline {
  to { opacity: 1; }
}

/* Menu */
.nav__menu { 
  display: flex; 
  align-items: center;
  column-gap: 1rem; 
}

.nav__list { 
  display: flex; 
  flex-direction: row; 
  column-gap: 2.5rem; 
  list-style: none; 
  align-items: center;
}

.nav__link { 
  color: var(--white); 
  font-weight: 600; 
  text-transform: uppercase; 
  text-decoration: none; 
  font-size: 0.85rem; 
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-ocean);
  transition: width 0.3s ease;
}

.nav__link:hover { 
  color: var(--primary-light); 
}

.nav__link:hover::after {
  width: 100%;
}

.header.scroll-header .nav__link { 
  color: var(--text); 
}

.header.scroll-header .nav__link:hover {
  color: var(--primary);
}

/* CTA Button */
.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-ocean);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(30, 79, 216, 0.3);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 79, 216, 0.4);
  background: var(--gradient-blue-soft);
}

.nav__cta i {
  font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger-menu { 
  position: relative; 
  z-index: 1000; 
  display: none;
}

.hamburger-btn { 
  display: flex;
  flex-direction: column; 
  justify-content: space-between; 
  width: 28px; 
  height: 20px; 
  cursor: pointer; 
  background: transparent; 
  border: none; 
}

.hamburger-line { 
  width: 100%; 
  height: 3px; 
  background: var(--white);
  border-radius: 2px; 
  transition: all 0.3s ease; 
}

.header.scroll-header .hamburger-line {
  background: var(--text);
}

/* HERO - BANNER COMPLETO SEM CORTAR */
.hero { 
  position: relative; 
  width: 100%; 
  height: auto;
  min-height: 300px;
  overflow: hidden; 
  padding: 0; 
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img { 
  display: block;
  width: 100%; 
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Banner Mobile - oculto por padrão */
.hero__img-mobile {
  display: none;
}

/* Banner Desktop - visível por padrão */
.hero__img-desktop {
  display: block;
  width: 100%; 
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero__overlay { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.15) 0%, 
    rgba(0,0,0,0) 30%, 
    rgba(0,0,0,0) 60%, 
    rgba(248,249,250,0.3) 75%,
    rgba(248,249,250,0.7) 90%,
    rgba(248,249,250,0.95) 100%
  ); 
  pointer-events: none; 
  z-index: 1; 
}

/* Gradiente adicional para transição suave para branco */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, 
    transparent 0%,
    rgba(248, 249, 250, 0.4) 30%,
    rgba(248, 249, 250, 0.8) 70%,
    #f8f9fa 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* PACOTES SECTION */
.packages-section { 
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); 
  padding: 5rem 0 4rem; 
}

.packages__container { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 2rem; 
}

.packages__header { 
  text-align: center; 
  margin-bottom: 3rem; 
}

.packages__subtitle { 
  display: inline-block; 
  font-size: 0.8rem; 
  font-weight: 600; 
  color: var(--primary); 
  text-transform: uppercase; 
  letter-spacing: 3px; 
  margin-bottom: 0.75rem; 
}

.packages__title { 
  font-family: 'Raleway', sans-serif; 
  font-size: 2rem; 
  color: var(--title-color); 
  margin-bottom: 0; 
  font-weight: 700; 
}

/* =========================================
   FILTROS - Design Compacto e Moderno
   ========================================= */

.filters-rio {
  margin: 1.5rem 0 2.5rem;
  padding: 0 1rem;
  position: relative;
}

/* Card Principal do Filtro - Mais Compacto */
.filter-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 20px;
  padding: 0;
  box-shadow: 
    0 2px 4px rgba(30, 79, 216, 0.04),
    0 8px 16px rgba(30, 79, 216, 0.08);
  border: 1px solid rgba(30, 79, 216, 0.1);
  overflow: visible;
  animation: cardSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Header do Card - Mais Compacto */
.filter-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.filter-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.filter-icon-main {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.filter-header-text {
  position: relative;
  z-index: 1;
}

.filter-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.3px;
}

/* Conteúdo do Filtro - Compacto */
.filter-content {
  padding: 1.5rem;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

/* Fields dos Filtros */
.filter-field {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.field-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 26px;
  box-shadow: 0 4px 12px rgba(30, 79, 216, 0.2);
}

.field-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.2px;
}

/* ===== CUSTOM SELECT DROPDOWN ===== */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 2px solid rgba(30, 79, 216, 0.12);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.custom-select-trigger:hover {
  border-color: var(--primary-light);
  background: #f8fbff;
}

.custom-select.open .custom-select-trigger {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, 0.1);
}

.custom-select-trigger i {
  font-size: 1.2rem;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.custom-select.open .custom-select-trigger i {
  transform: rotate(180deg);
  color: var(--primary);
}

.custom-select-value {
  flex: 1;
  font-weight: 500;
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid rgba(30, 79, 216, 0.12);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(30, 79, 216, 0.15);
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-overflow-scrolling: touch;
}

.custom-select.open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.custom-select-option:hover {
  background: linear-gradient(90deg, #f0f7ff 0%, transparent 100%);
  border-left-color: var(--primary);
  color: var(--primary-dark);
}

.custom-select-option.selected {
  background: linear-gradient(90deg, #e8f2ff 0%, transparent 100%);
  border-left-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 600;
}

/* Scrollbar customizada do dropdown */
.custom-select-dropdown::-webkit-scrollbar {
  width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 10px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Hidden select */
.filter-select-hidden {
  display: none;
}

/* Input de Destino */
.input-wrapper {
  position: relative;
}

.filter-input-text {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(30, 79, 216, 0.12);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.filter-input-text::placeholder {
  color: var(--text-lighter);
}

.filter-input-text:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, 0.1);
}

.filter-input-text:hover {
  border-color: var(--primary-light);
  background: #f8fbff;
}

/* Sugestões do Input */
.input-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid rgba(30, 79, 216, 0.12);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(30, 79, 216, 0.15);
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-suggestions.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.suggestion-item i {
  font-size: 1.1rem;
  color: var(--primary);
}

.suggestion-item:hover {
  background: linear-gradient(90deg, #f0f7ff 0%, transparent 100%);
  border-left-color: var(--primary);
}

.suggestion-item span {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

/* Botão de Pesquisa */
.filter-search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 79, 216, 0.25);
  white-space: nowrap;
  height: fit-content;
}

.filter-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 79, 216, 0.35);
}

.filter-search-btn:active {
  transform: translateY(0);
}

.filter-search-btn i {
  font-size: 1.1rem;
}

/* Quick Tags Row */
.quick-tags-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(30, 79, 216, 0.08);
  margin-top: 0.5rem;
}

.quick-tags-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

.quick-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.quick-tag {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 2px solid rgba(30, 79, 216, 0.15);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.quick-tag:hover {
  background: #f0f7ff;
  border-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.quick-tag.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(30, 79, 216, 0.25);
}

/* Botão Reset */
.filter-reset-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: 2px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  color: #dc2626;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.75rem;
  width: fit-content;
}

.filter-reset-btn:hover {
  background: #fef2f2;
  border-color: #dc2626;
  transform: translateY(-2px);
}

.filter-reset-btn i {
  font-size: 1rem;
}

/* RESPONSIVE - FILTROS */

/* TABLET */
@media screen and (max-width: 968px) {
  .filters-rio {
    margin: 1.25rem 0 2rem;
    padding: 0 0.75rem;
  }

  .filter-card {
    border-radius: 18px;
  }

  .filter-card-header {
    padding: 1.125rem 1.5rem;
    gap: 0.75rem;
  }

  .filter-icon-main {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .filter-title {
    font-size: 1.05rem;
  }

  .filter-content {
    padding: 1.25rem;
  }

  .filter-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .quick-tags-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* MOBILE */
@media screen and (max-width: 576px) {
  .filters-rio {
    margin: 1rem 0 1.5rem;
    padding: 0 0.5rem;
  }

  .filter-card {
    border-radius: 16px;
  }

  .filter-card-header {
    padding: 1rem 1.25rem;
  }

  .filter-icon-main {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .filter-title {
    font-size: 0.95rem;
  }

  .filter-content {
    padding: 1rem;
  }

  .filter-row {
    gap: 0.875rem;
  }

  .filter-field {
    gap: 0.625rem;
  }

  .field-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    margin-top: 24px;
  }

  .field-label {
    font-size: 0.75rem;
  }

  .custom-select-trigger,
  .filter-input-text {
    padding: 0.75rem 0.875rem;
    font-size: 0.85rem;
  }

  .custom-select-dropdown,
  .input-suggestions {
    max-height: 320px;
  }

  .custom-select-option,
  .suggestion-item {
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
  }

  .filter-search-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .quick-tags-label {
    font-size: 0.75rem;
  }

  .quick-tag {
    padding: 0.45rem 0.875rem;
    font-size: 0.75rem;
  }

  .filter-reset-btn {
    padding: 0.65rem 1.125rem;
    font-size: 0.8rem;
    width: 100%;
  }
}

/* MOBILE EXTRA SMALL */
@media screen and (max-width: 360px) {
  .filter-card-header {
    padding: 0.875rem 1rem;
  }

  .filter-content {
    padding: 0.875rem;
  }

  .field-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .custom-select-trigger,
  .filter-input-text {
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
  }
}


.filter-search-btn:hover::before {
  left: 100%;
}

.filter-search-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 36px rgba(30, 79, 216, 0.35),
    0 6px 12px rgba(30, 79, 216, 0.25);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
}

.filter-search-btn:active {
  transform: translateY(-2px);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-icon i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.filter-search-btn:hover .btn-icon {
  background: rgba(255, 255, 255, 0.3);
}

.filter-search-btn:hover .btn-icon i {
  transform: translateX(3px);
}

/* Tags Rápidas */
.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px dashed rgba(30, 79, 216, 0.15);
  align-items: center;
}

.quick-tag-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.5rem;
}

.quick-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: white;
  border: 2px solid rgba(30, 79, 216, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Open Sans', sans-serif;
}

.quick-tag i {
  font-size: 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.quick-tag:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 79, 216, 0.25);
}

.quick-tag:hover i {
  color: white;
  transform: scale(1.2);
}

.quick-tag.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  color: white;
}

.quick-tag.active i {
  color: white;
}

/* Botão de Reset */
.filter-reset-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(30, 79, 216, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.filter-reset-btn i {
  font-size: 1.1rem;
  transition: transform 0.4s ease;
}

.filter-reset-btn:hover {
  background: rgba(239, 68, 68, 0.05);
  color: #ef4444;
}

.filter-reset-btn:hover i {
  transform: rotate(180deg);
}

/* =========================================
   Responsividade dos Filtros Premium
   ========================================= */

@media screen and (max-width: 1024px) {
  .filter-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .filter-field {
    min-width: 100%;
  }
  
  .filter-search-btn {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .filters-rio {
    margin: 1.5rem 0 2.5rem;
    padding: 0 0.75rem;
  }
  
  .filter-card {
    border-radius: 24px;
  }
  
  .filter-card-header {
    padding: 1.5rem 1.5rem 1.25rem;
    gap: 1rem;
  }
  
  .filter-icon-main {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  
  .filter-icon-main i {
    font-size: 1.5rem;
  }
  
  .filter-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.625rem;
  }
  
  .filter-title {
    font-size: 1.35rem;
  }
  
  .filter-content {
    padding: 1.5rem;
  }
  
  .filter-field {
    padding: 1rem 1.25rem;
    border-radius: 16px;
    gap: 0.875rem;
  }
  
  .field-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
  }
  
  .field-icon i {
    font-size: 1.25rem;
  }
  
  .field-label {
    font-size: 0.65rem;
  }
  
  .filter-select,
  .filter-input-text {
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }
  
  .filter-search-btn {
    padding: 1rem 1.75rem;
    border-radius: 14px;
    font-size: 0.95rem;
  }
  
  .quick-tags {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    gap: 0.5rem;
  }
  
  .quick-tag-label {
    width: 100%;
    margin-bottom: 0.25rem;
    font-size: 0.7rem;
  }
  
  .quick-tag {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
  }
  
  .rio-skyline {
    height: 80px;
    opacity: 0.04;
  }
}

@media screen and (max-width: 480px) {
  .filters-rio {
    margin: 1rem 0 2rem;
    padding: 0 0.5rem;
  }
  
  .filter-card {
    border-radius: 20px;
  }
  
  .filter-card-header {
    padding: 1.25rem 1.25rem 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .filter-icon-main {
    width: 48px;
    height: 48px;
  }
  
  .filter-title {
    font-size: 1.2rem;
  }
  
  .filter-content {
    padding: 1.25rem;
  }
  
  .filter-field {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }
  
  .field-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }
  
  .field-icon i {
    font-size: 1.1rem;
  }
  
  .filter-select,
  .filter-input-text {
    font-size: 0.9rem;
  }
  
  .select-arrow {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  
  .select-arrow i {
    font-size: 1rem;
  }
  
  .filter-search-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    min-height: 52px;
  }
  
  .btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  
  .btn-icon i {
    font-size: 1rem;
  }
  
  .quick-tag {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .quick-tag i {
    font-size: 0.9rem;
  }
  
  .input-suggestions {
    left: -1rem;
    right: -1rem;
  }
  
  .suggestion-item {
    padding: 0.875rem 1.25rem;
    gap: 0.75rem;
  }
  
  .suggestion-item i {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-radius: 8px;
  }
  
  .suggestion-item span {
    font-size: 0.9rem;
  }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  .filter-field:hover {
    transform: none;
  }
  
  .filter-field:active {
    transform: scale(0.98);
  }
  
  .quick-tag:hover {
    transform: none;
  }
  
  .quick-tag:active {
    transform: scale(0.95);
  }
  
  .filter-search-btn:hover {
    transform: none;
  }
  
  .filter-search-btn:active {
    transform: scale(0.98);
  }
}

.packages__swiper { 
  overflow: visible; 
  padding: 20px 0; 
  margin: 0 -10px;
  cursor: grab;
}

.packages__swiper:active {
  cursor: grabbing;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
  transition-timing-function: ease-out;
}

/* CARD PACOTE - EXATAMENTE COMO NA IMAGEM */
.swiper-slide {
  width: auto !important;
  height: auto;
  margin-right: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-slide.hidden {
  display: none;
}

.swiper-slide:active {
  cursor: grabbing;
}

.pacote { 
  width: 280px !important;
  min-width: 280px;
  height: 360px; 
  border-radius: 24px; 
  overflow: hidden; 
  position: relative; 
  box-shadow: var(--shadow-soft); 
  border: 1px solid var(--border-soft); 
  background: #fff; 
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}

.pacote:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-card); 
}

.pacote img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  transition: transform 0.6s ease; 
}

.pacote:hover img { 
  transform: scale(1.08); 
}

.pacote::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%); 
  pointer-events: none; 
}

.badge { 
  position: absolute; 
  top: 16px; 
  right: 16px; 
  padding: 6px 14px; 
  border-radius: 999px; 
  font-size: 11px; 
  font-weight: 700; 
  color: #fff; 
  background: var(--gradient-ocean);
  box-shadow: 0 4px 12px rgba(30, 79, 216, 0.3); 
  z-index: 2; 
  text-transform: uppercase; 
  letter-spacing: .5px;
}

.conteudo-pacote { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  padding: 20px; 
  z-index: 2; 
  display: flex; 
  flex-direction: column; 
  gap: 6px;
}

.conteudo-pacote h3 { 
  font-family: 'Raleway', sans-serif; 
  font-size: 17px; 
  font-weight: 800; 
  color: #fff; 
  margin: 0; 
  line-height: 1.3;
}

.conteudo-pacote p { 
  font-size: 11px; 
  color: rgba(255,255,255,0.85); 
  margin: 0; 
  text-transform: uppercase; 
  letter-spacing: 1.2px; 
  font-weight: 600;
}

.linha-inferior { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-top: 8px;
}

.preco { 
  font-family: 'Raleway', sans-serif; 
  font-size: 18px; 
  font-weight: 900; 
  color: #fff; 
  display: flex; 
  flex-direction: column; 
  line-height: 1;
}

.preco small { 
  font-size: 9px; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: .5px; 
  margin-top: 4px; 
  opacity: 0.8;
}

.btn-seta { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  background: var(--gradient-ocean); 
  border: none; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  transition: all .3s ease; 
  box-shadow: 0 4px 12px rgba(30,79,216,.3); 
  flex-shrink: 0;
}

.btn-seta:hover { 
  transform: scale(1.1); 
  box-shadow: 0 6px 16px rgba(30,79,216,.4); 
  background: var(--gradient-blue-soft);
}

.btn-seta:active {
  transform: scale(0.95);
}

.btn-seta svg { 
  width: 18px; 
  height: 18px; 
  flex-shrink: 0;
}

/* Hint */
.hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

.hint i {
  font-size: 1.25rem;
  color: var(--primary);
  animation: swipeHint 2s ease-in-out infinite;
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

/* No Results */
.no-results {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-top: 2rem;
}

.no-results i {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.no-results h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.no-results p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* FOOTER */
.footer {
  position: relative;
  background: var(--gradient-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  overflow: hidden;
}

.footer__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--primary) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, var(--primary-light) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer__logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.footer__logo-main {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}

.footer__slogan {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  border-top: 2px solid var(--primary-light);
  padding-top: 0.75rem;
}

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

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__column-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer__icon-wrapper {
  width: 36px;
  height: 36px;
  background: rgba(30, 79, 216, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__icon-wrapper i {
  font-size: 1.1rem;
  color: var(--primary-light);
}

.footer__title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__link-item i {
  font-size: 1rem;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.footer__link a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link a:hover {
  color: var(--primary-light);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__social-link--instagram {
  background: linear-gradient(135deg, #1e4fd8 0%, #3b6cf0 100%);
  color: var(--white);
}

.footer__social-link--whatsapp {
  background: linear-gradient(135deg, #0f3c91 0%, #1e4fd8 100%);
  color: var(--white);
}

.footer__social-link--facebook {
  background: linear-gradient(135deg, #163fa8 0%, #0f3c91 100%);
  color: var(--white);
}

.footer__social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(30, 79, 216, 0.4);
}

.footer__divider-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer__copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__copyright i {
  font-size: 1rem;
}

.footer__dev {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__dev-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer__dev-link:hover {
  color: var(--accent-light);
  transform: translateX(2px);
}

.footer__dev-link i {
  font-size: 0.9rem;
}

/* ===========================================
   RESPONSIVE BREAKPOINTS
   =========================================== */

/* DESKTOP LARGE (1400px+) */
@media screen and (min-width: 1400px) {
  .packages__container {
    padding: 0 3rem;
  }

  .packages__title {
    font-size: 2.5rem;
  }

  .pacote {
    width: 300px !important;
    min-width: 300px;
    height: 380px;
  }
}

/* TABLET (768px - 1023px) */
@media screen and (max-width: 1023px) {
  :root {
    --header-height: 5rem;
  }

  .nav {
    padding: 0 1.5rem;
  }

  .nav__logo img {
    height: 70px;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 8rem 2rem 2rem;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    overflow-y: auto;
  }

  .nav__menu.show {
    right: 0;
  }

  .nav__list {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 2rem;
    list-style: none;
  }

  .nav__item {
    display: block !important;
    border-bottom: 1px solid rgba(30, 79, 216, 0.1);
    transition: all 0.3s ease;
  }

  .nav__item:last-child {
    border-bottom: none;
  }

  .nav__link {
    color: var(--text) !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.2rem 0;
    display: block !important;
    transition: all 0.3s ease;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link:hover,
  .nav__link:active {
    color: var(--primary) !important;
    padding-left: 0.5rem;
  }

  .nav__cta {
    display: flex !important;
    width: 100%;
    justify-content: center;
    padding: 1.2rem 1.5rem;
    margin-top: 0;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(30, 79, 216, 0.25);
  }

  .nav__cta:active {
    transform: scale(0.98);
  }

  .hamburger-menu {
    display: block;
    z-index: 10000;
  }

  /* Hamburger animation quando menu está aberto */
  .hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .packages-section {
    padding: 4rem 0 3rem;
  }

  .packages__container {
    padding: 0 1.5rem;
  }

  .packages__title {
    font-size: 1.75rem;
  }

  .pacote {
    width: 260px !important;
    min-width: 260px;
    height: 340px;
  }

  .footer__grid {
    gap: 2rem;
  }
}

/* MOBILE (480px - 767px) */
@media screen and (max-width: 767px) {
  :root {
    --header-height: 4.5rem;
  }

  .nav {
    padding: 0 1rem;
  }

  .nav__logo img {
    height: 60px;
  }

  .nav__tagline {
    display: none;
  }

  .nav__menu {
    width: 85%;
    max-width: 100%;
    padding: 6rem 1.5rem 2rem;
    display: flex !important;
  }

  .nav__link {
    font-size: 0.95rem;
    padding: 1.1rem 0;
    display: block !important;
  }

  .nav__cta {
    padding: 1.1rem 1.2rem;
    font-size: 0.85rem;
    display: flex !important;
  }

  .hero__img-desktop {
    display: none;
  }

  .hero__img-mobile {
    display: block;
  }

  .packages-section {
    padding: 3rem 0 2rem;
  }

  .packages__container {
    padding: 0 1rem;
  }

  .packages__header {
    margin-bottom: 2rem;
  }

  .packages__subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .packages__title {
    font-size: 1.5rem;
  }

  .packages__swiper {
    padding: 15px 0;
    margin: 0 -5px;
  }

  .swiper-slide {
    margin-right: 15px;
  }

  .pacote {
    width: 220px !important;
    min-width: 220px;
    height: 300px;
    border-radius: 20px;
  }

  .badge {
    font-size: 10px;
    padding: 5px 10px;
    top: 12px;
    right: 12px;
  }

  .conteudo-pacote {
    padding: 15px;
  }

  .conteudo-pacote h3 {
    font-size: 15px;
  }

  .conteudo-pacote p {
    font-size: 10px;
  }

  .preco {
    font-size: 16px;
  }

  .preco small {
    font-size: 8px;
  }

  .btn-seta {
    width: 36px;
    height: 36px;
  }

  .btn-seta svg {
    width: 16px;
    height: 16px;
  }

  .hint {
    font-size: 0.8rem;
    margin-top: 2rem;
  }

  .no-results {
    padding: 2rem 1rem;
  }

  .no-results i {
    font-size: 2.5rem;
  }

  .no-results h3 {
    font-size: 1.25rem;
  }

  .no-results p {
    font-size: 0.85rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
  }

  .footer__container {
    padding: 0 1rem;
  }

  .footer__logo-center {
    margin-bottom: 2.5rem;
  }

  .footer__logo-main {
    width: 120px;
  }

  .footer__slogan {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer__column {
    text-align: center;
    align-items: center;
  }

  .footer__column-header {
    justify-content: center;
  }

  .footer__link-item {
    justify-content: center;
  }

  .footer__social {
    gap: 0.75rem;
  }

  .footer__social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    font-size: 0.8rem;
  }
}

/* MOBILE SMALL (до 479px) */
@media screen and (max-width: 479px) {
  :root {
    --header-height: 4.5rem;
  }

  .nav {
    padding: 0 0.5rem;
  }

  .nav__logo img {
    height: 50px;
  }

  .hamburger-btn {
    width: 24px;
    height: 18px;
  }

  .hamburger-line {
    height: 2.5px;
  }

  .hero {
    min-height: 200px;
  }

  .packages-section {
    padding: 2rem 0 1.5rem;
  }

  .packages__container {
    padding: 0 0.5rem;
  }

  .packages__header {
    margin-bottom: 1.25rem;
  }

  .packages__subtitle {
    font-size: 0.6rem;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
  }

  .packages__title {
    font-size: 1.2rem;
  }

  .packages__swiper {
    padding: 12px 0;
    margin: 0;
  }

  .swiper-slide {
    margin-right: 12px;
  }

  .pacote {
    width: 180px !important;
    min-width: 180px;
    height: 260px;
    border-radius: 18px;
  }

  .badge {
    font-size: 9px;
    padding: 4px 8px;
    top: 10px;
    right: 10px;
    border-radius: 12px;
  }

  .conteudo-pacote {
    padding: 10px;
  }

  .conteudo-pacote h3 {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .conteudo-pacote p {
    font-size: 9px;
    margin-bottom: 6px;
  }

  .linha-inferior {
    gap: 8px;
  }

  .preco {
    font-size: 15px;
  }

  .preco small {
    font-size: 8px;
    margin-top: 2px;
  }

  .btn-seta {
    width: 32px;
    height: 32px;
  }

  .btn-seta svg {
    width: 14px;
    height: 14px;
  }

  .hint {
    margin-top: 1.5rem;
    font-size: 10px;
    gap: 5px;
  }

  .hint i {
    font-size: 14px;
  }

  .no-results {
    padding: 1.5rem 0.75rem;
  }

  .no-results i {
    font-size: 2rem;
  }

  .no-results h3 {
    font-size: 1.1rem;
  }

  .no-results p {
    font-size: 0.8rem;
  }

  .footer {
    padding: 2.5rem 0 1.25rem;
    margin-top: 2rem;
  }

  .footer__container {
    padding: 0 0.75rem;
  }

  .footer__logo-center {
    margin-bottom: 2rem;
  }

  .footer__logo-main {
    width: 100px;
    margin-bottom: 0.75rem;
  }

  .footer__slogan {
    font-size: 0.5rem;
    letter-spacing: 1px;
    padding-top: 0.5rem;
  }

  .footer__grid {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer__column {
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .footer__column-header {
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.15rem;
  }

  .footer__icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .footer__icon-wrapper i {
    font-size: 0.9rem;
  }

  .footer__title {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .footer__links {
    gap: 0.5rem;
  }

  .footer__link-item {
    justify-content: center;
    gap: 0.35rem;
  }

  .footer__link-item i {
    font-size: 0.85rem;
  }

  .footer__link {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .footer__social {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .footer__divider-line {
    margin-bottom: 1.25rem;
  }

  .footer__bottom {
    gap: 0.75rem;
  }

  .footer__copyright,
  .footer__dev {
    font-size: 0.7rem;
    gap: 0.35rem;
  }

  .footer__copyright i {
    font-size: 0.85rem;
  }
}

/* MOBILE EXTRA SMALL (até 360px) */
@media screen and (max-width: 360px) {
  :root {
    --header-height: 4rem;
  }

  .nav__logo img {
    height: 45px;
  }

  .packages__title {
    font-size: 1.1rem;
  }

  .pacote {
    width: 160px !important;
    min-width: 160px;
    height: 240px;
    border-radius: 14px;
  }

  .badge {
    font-size: 8px;
    padding: 3px 6px;
    top: 8px;
    right: 8px;
  }

  .conteudo-pacote {
    padding: 8px;
  }

  .conteudo-pacote h3 {
    font-size: 12px;
  }

  .conteudo-pacote p {
    font-size: 8px;
    margin-bottom: 5px;
  }

  .preco {
    font-size: 13px;
  }

  .preco small {
    font-size: 7px;
  }

  .btn-seta {
    width: 28px;
    height: 28px;
  }

  .btn-seta svg {
    width: 12px;
    height: 12px;
  }

  .footer__logo-main {
    width: 90px;
  }

  .footer__title {
    font-size: 0.65rem;
  }

  .footer__link {
    font-size: 0.7rem;
  }

  .footer__social-link {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .footer__copyright,
  .footer__dev {
    font-size: 0.65rem;
  }
}

/* LANDSCAPE MOBILE */
@media screen and (max-height: 500px) and (orientation: landscape) {
  :root {
    --header-height: 4rem;
  }

  .nav__logo img {
    height: 50px;
  }

  .hero {
    min-height: auto;
  }

  .nav__menu {
    padding: 1rem;
    gap: 1rem;
  }

  .nav__list {
    gap: 1rem;
  }

  .nav__link {
    font-size: 1rem;
  }

  .packages-section {
    padding: 2rem 0;
  }

  .pacote {
    height: 280px;
  }
}

/* TOUCH DEVICES */
@media (hover: none) and (pointer: coarse) {
  .pacote:hover {
    transform: none;
  }

  .pacote:active {
    transform: scale(0.98);
  }

  .btn-seta:hover {
    transform: none;
  }

  .btn-seta:active {
    transform: scale(0.95);
  }

  .nav__link:hover::after {
    width: 0;
  }

  .footer__social-link:hover {
    transform: none;
  }

  .footer__social-link:active {
    transform: scale(0.95);
  }

  .filter-reset-btn:hover {
    transform: none;
  }

  .filter-reset-btn:active {
    transform: scale(0.98);
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hint i {
    animation: none;
  }
}

/* HIGH CONTRAST */
@media (prefers-contrast: high) {
  .pacote {
    border: 2px solid var(--dark);
  }

  .nav__link {
    text-decoration: underline;
  }

  .btn-seta {
    border: 2px solid var(--white);
  }

  .filter-select {
    border-width: 3px;
  }

  .filter-field {
    border-width: 3px;
  }
}

/* PRINT */
@media print {
  .header,
  .hamburger-menu,
  .nav__cta,
  .filters-rio,
  .hint,
  .btn-seta,
  .footer__social {
    display: none !important;
  }

  .hero {
    page-break-after: always;
  }

  .packages-section {
    padding: 1rem 0;
  }

  .pacote {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .footer {
    background: none;
    color: #000;
  }

  .footer__link,
  .footer__copyright,
  .footer__dev {
    color: #000;
  }
}
/* ==================================
   FIX PARA OVERFLOW HORIZONTAL MOBILE
   ================================== */

/* Garantir que não há overflow horizontal */
@media screen and (max-width: 767px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
  }

  .main {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .packages-section {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .packages__container {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  /* Garantir que o swiper não cause overflow */
  .packages__swiper {
    overflow-x: visible !important;
    overflow-y: hidden !important;
    width: 100% !important;
    max-width: calc(100vw - 1rem) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .swiper-wrapper {
    width: auto !important;
  }

  /* Ajustar tamanho dos cards para garantir que fiquem visíveis */
  .swiper-slide {
    width: auto !important;
    flex-shrink: 0 !important;
  }

  .pacote {
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
  }
}

@media screen and (max-width: 360px) {
  .pacote {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
  }

  .packages__swiper {
    max-width: calc(100vw - 1rem) !important;
  }
}

/* ===== BOTÃO VER TODOS ===== */
.view-all-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 2rem;
  padding: 0 1rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0011ff 0%, #1900ff 100%);
  color: white;
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #1900ff 0%, #0011ff 100%);
}

.btn-view-all:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-view-all i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

/* Responsividade do botão */
@media screen and (max-width: 768px) {
  .view-all-container {
    margin: 2rem 0 1.5rem;
  }
  
  .btn-view-all {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .view-all-container {
    margin: 1.5rem 0 1rem;
  }
  
  .btn-view-all {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    gap: 0.5rem;
  }
  
  .btn-view-all i {
    font-size: 1.1rem;
  }
}
/* ===== EFEITO CARD CENTRALIZADO ===== */
.swiper-slide {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              opacity 0.4s ease !important;
  transform: scale(0.85);
  opacity: 0.6;
}

.swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1 !important;
  z-index: 2;
}

.swiper-slide-active .pacote {
  box-shadow: 0 25px 60px rgba(30, 79, 216, 0.25);
}

/* Slides adjacentes (próximo e anterior) */
.swiper-slide-prev,
.swiper-slide-next {
  transform: scale(0.9) !important;
  opacity: 0.75 !important;
}

/* Ajuste para manter o swiper com mais padding */
.packages__swiper {
  padding: 40px 0 !important;
}

/* ===== MOBILE - CARD CENTRALIZADO COM PONTAS CORTADAS ===== */
@media screen and (max-width: 767px) {
  .packages__swiper {
    padding: 20px 0 !important;
    overflow: hidden !important;
  }
  
  .packages__container {
    overflow: hidden !important;
  }
  
  .swiper-slide {
    transition: transform 0.3s ease, opacity 0.3s ease !important;
  }
  
  .swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1 !important;
  }
  
  .swiper-slide-prev,
  .swiper-slide-next {
    transform: scale(0.95) !important;
    opacity: 0.7 !important;
  }
  
  /* Cards mais largos no mobile para o efeito de corte */
  .pacote {
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
    height: 340px;
  }
  
  .swiper-slide {
    margin-right: 12px !important;
  }
}

@media screen and (max-width: 480px) {
  .pacote {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    height: 320px;
  }
  
  .swiper-slide {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 360px) {
  .pacote {
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;
    height: 300px;
  }
}