/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 30;

  /* HSL color mode */
  --first-color: #FF9500;
--first-color-second: #FF9500;
--first-color-alt: #E6860D; 
--title-color: #000000;
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: #000000;
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
    
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
  overflow-x: hidden;
}

/* Seções após a home terão fundo claro */
.about.section,
.categories,
.place.section,
.search-section,
.footer {
  background-color: var(--body-color);
}

/* Garantir que o main comece do topo */
.main {
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
  scroll-margin-top: var(--header-height); /* Compensar header fixo ao navegar por âncoras */
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--mb-2);
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
    
}



.nav__logo img {
  width: 100px;
  height: auto;
  max-height: 40px;
  margin-top: 0;
  transition: opacity 0.3s ease;
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}


/*=============== HAMBURGER MENU ===============*/
.hamburger-menu {
  position: relative;
  z-index: 1000;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-btn:hover {
  transform: scale(1.05);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.hamburger-line:first-child {
  width: 70%;
}

.hamburger-line:last-child {
  width: 85%;
  margin-left: auto;
}

/* Animação do hambúrguer para X */
.hamburger-btn.active .hamburger-line:first-child {
  transform: rotate(45deg) translate(5px, 5px);
  width: 100%;
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger-btn.active .hamburger-line:last-child {
  transform: rotate(-45deg) translate(7px, -6px);
  width: 100%;
  margin-left: 0;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 2rem;
}

.menu-logo img {
  width: 120px;
  height: auto;
}

.menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  background: rgba(255, 149, 0, 0.2);
  transform: rotate(90deg);
}

.menu-main {
  flex: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.menu-section {
  margin-bottom: 2rem;
}

.menu-section-title {
  color: var(--first-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-left: 1rem;
}

.menu-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(45deg, var(--first-color), var(--first-color-alt));
  border-radius: 2px;
}

.menu-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-nav-list li {
  margin-bottom: 0.5rem;
}

.menu-nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.menu-nav-link:hover {
  color: white;
  background: rgba(255, 149, 0, 0.1);
  transform: translateX(5px);
}

.menu-nav-link:hover::before {
  left: 100%;
}

.menu-nav-link.active {
  color: var(--first-color);
  background: rgba(255, 149, 0, 0.15);
}

/* Grid de Meses */
.menu-months-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 1rem;
}

.menu-months-grid::-webkit-scrollbar {
  width: 6px;
}

.menu-months-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.menu-months-grid::-webkit-scrollbar-thumb {
  background: var(--first-color);
  border-radius: 3px;
}

.month-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.month-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.month-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--first-color);
  background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.05));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.month-card:hover::before {
  left: 100%;
}

.month-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.month-card:hover .month-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 149, 0, 0.4);
}

.month-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
}

.month-temp {
  font-size: 0.9rem;
  color: var(--first-color);
  font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .menu-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .menu-months-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    max-height: 50vh;
  }
}

@media screen and (max-width: 768px) {
  .menu-content {
    padding: 1rem;
  }
  
  .menu-months-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .month-card {
    padding: 1rem;
  }
  
  .month-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .menu-months-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  
  .month-card {
    padding: 0.8rem;
  }
  
  .month-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .month-name {
    font-size: 1rem;
  }
  
  .month-temp {
    font-size: 0.8rem;
  }
}
/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle, 
.home__data-title, 
.home__social-link, 
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
    
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  transition: all 0.3s ease;
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
}

.home__info-img:hover {
  transform: var(--img-scale);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
    
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
    
}

.about__img-overlay {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  transition: all 0.3s ease;
}

.about__img-one {
  width: 130px;
}

.about__img-two {
  width: 180px;
}

.about__img-one, 
.about__img-two {
  transition: var(--img-transition);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}

/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 220px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  transition: all 0.3s ease;
}

.discover__data {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
}

.discover__title, 
.discover__description {
  color: var(--white-color);
}

.discover__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.discover__description {
  display: block;
  font-size: var(--smaller-font-size);
}

.discover__img {
  transition: var(--img-transition);
}

.discover__img:hover {
  transform: var(--img-scale);
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2.5rem;
  justify-items: center;
}

.experience__content {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  justify-items: center;
  padding: 0 2rem;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.experience__description {
  font-size: var(--small-font-size);
}

.experience__img {
  position: relative;
  padding-bottom: 2rem;
}

.experience__img-one, 
.experience__img-two {
  transition: var(--img-transition);
}

.experience__img-one:hover, 
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  transition: all 0.3s ease;
}

.experience__overlay:nth-child(1) {
  width: 263px;
  margin-right: 2rem;
}

.experience__overlay:nth-child(2) {
  width: 120px;
  position: absolute;
  top: 2rem;
  right: 0;
}

/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

/*=============== PLACES ===============*/

.place.section .section__title {
    font-size: 2rem;
    font-weight: 700;
}

.place__container {
  overflow: hidden;
}

.place__card {
  width: 280px;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  transition: all 0.3s ease;
}

.place__card:hover .place__img {
  transform: var(--img-scale);
}

.place__card:hover {
  box-shadow: 0 12px 32px hsla(0, 0%, 0%, 0.25);
  transform: translateY(-4px);
}

.place__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  transition: all 0.3s ease;
  transition: var(--img-transition);
}

.place__content, .place__title {
  color: var(--white-color);
}

.place__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .75rem .75rem 1rem;
}


.place__activity {
  align-self: flex-end;
  display: flex;
  align-items: center;
    
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.place__activity-icon {
  font-size: .8rem;
  margin-right: 0.2rem;
}

.place__activity-text {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  text-transform: capitalize;
}

/* Estilos específicos para cada nível de atividade */
.place__activity--light {
  color: #2e7d32;
}

.place__activity--moderate {
  color: #f57c00;
}

.place__activity--heavy {
  color: #d32f2f;
}


.place__subtitle, .place__price {
  display: block;
}

.place__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-25);
}

.place__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1-25);
}

.place__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .75rem 1rem;
}


/*=============== FOOTER PREMIUM ===============*/
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 0 2.5rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    border-top: 10px solid var(--first-color);
}

.footer__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Padrão de fundo decorativo */
.footer__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(41, 128, 185, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(41, 128, 185, 0.03) 0%, transparent 20%);
    z-index: 1;
    pointer-events: none;
}

/* Topo do footer */
.footer__top {
}

/* Brand section aprimorada */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__logo-wrapper {
    position: relative;
    display: inline-block;
}

.footer__logo {
    width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.5s ease;
}

.footer__logo:hover {
    transform: scale(1.05);
}

.footer__logo-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--first-color), #2980b9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.footer__logo-badge small {
    font-size: 0.6rem;
    opacity: 0.9;
}

.footer__brand-content {
    padding-right: 2rem;
}

.footer__slogan {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.footer__slogan::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FF9500;
    border-radius: 2px;
}

.footer__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 320px;
}

/* Grid de colunas aprimorado */
.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__column-header {
    text-align: left;
    display: flex;
    align-items: center;
    
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer__icon-wrapper {
    width: 45px;
    height: 45px;
    background: #FF9500;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(41, 128, 185, 0.2);
    transition: transform 0.3s ease;
}

.footer__icon-wrapper:hover {
    transform: translateY(-3px);
}

.footer__icon-wrapper i {
    font-size: 1.4rem;
    color: white;
}

.footer__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer__link-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.footer__link-item:hover {
    transform: translateX(5px);
}

.footer__link-item i {
    color: var(--first-color);
    font-size: 1rem;
    margin-top: 2px;
    opacity: 0.8;
}

.footer__link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.footer__link-item:hover .footer__link {
    color: #ffffff;
}

/* Certificações */
.footer__certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.footer__cert-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer__cert-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

/* Linha divisória decorativa */
.footer__divider {
    display: flex;
    align-items: center;
    
    gap: 2rem;
    margin: 3rem 0;
}

.footer__divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
}

.footer__divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--first-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
    animation: float 3s ease-in-out infinite;
}

.footer__divider-icon i {
    font-size: 1.5rem;
    color: white;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Redes Sociais do Footer */
.footer__social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.footer__social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer__social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer__social-link--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.footer__social-link--tiktok:hover {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    border-color: transparent;
}

.footer__social-link--facebook:hover {
    background: #1877f2;
    border-color: transparent;
}

/* Rodapé inferior aprimorado */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    
    gap: 0.5rem;
}

.footer__copyright i {
    font-size: 1rem;
}

.footer__highlight {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-left: 0.5rem;
}

.footer__dev {
    display: flex;
    align-items: center;
    
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__dev-link {
    display: flex;
    align-items: center;
    
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer__dev-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--first-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.2);
}

.footer__dev-name {
    position: relative;
}

.footer__dev-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--first-color);
    transition: width 0.3s ease;
}

.footer__dev-link:hover .footer__dev-name::after {
    width: 100%;
}

.footer__dev-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.footer__dev-link:hover i {
    transform: translateX(2px);
}

/*=============== RESPONSIVIDADE FOOTER PREMIUM ===============*/
@media screen and (max-width: 1200px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer__brand {
        text-align: center;
        align-items: center;
    
    }
    
    .footer__brand-content {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer__description {
        max-width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer__top {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
        margin-top: 4rem;
    }
    
    .footer__container {
        padding: 0 1.5rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer__column-header {
    text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .footer__divider {
        margin: 2.5rem 0;
        gap: 1rem;
    }
    
    .footer__divider-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .footer__slogan {
        font-size: 1.5rem;
    }
    
    .footer__logo {
        width: 120px;
    }
    
    .footer__logo-badge {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .footer__icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .footer__icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .footer__certifications {
    }
    
    .footer__copyright {
        flex-direction: column;
        gap: 0.5rem;
    }
}



body.dark-theme .footer__icon-wrapper {
    background: linear-gradient(135deg, var(--first-color-alt), #2c3e50);
}

body.dark-theme .footer__divider-icon {
    background: linear-gradient(135deg, var(--first-color-alt), #2c3e50);
}

/* Efeito de hover sutil nos cartões das colunas */
.footer__column {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer__column:hover {
    background: rgba(255, 255, 255, 0.02);
}

/*=============== LOGO CENTRALIZADA ===============*/
.footer__logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.footer__logo-main {
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.footer__logo-main:hover {
    transform: scale(1.05);
}

.footer__slogan-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    gap: 0.5rem;
}

.footer__slogan {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.footer__slogan::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FF9500;
    border-radius: 2px;
}

.footer__tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 400px;
    font-style: italic;
}

/* Ajuste no footer__top para remover a antiga logo */
.footer__top {
    margin-bottom: 4rem;
}

/* Ajuste no grid para 3 colunas */
.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Remover a antiga brand section */
.footer__brand {
    display: none;
}

/*=============== RESPONSIVIDADE ATUALIZADA ===============*/
@media screen and (max-width: 1200px) {
    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .footer__logo-center {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer__slogan {
        font-size: 1.6rem;
    }
    
    .footer__logo-main {
        width: 140px;
    }
}

@media screen and (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer__logo-center {
        margin-bottom: 2.5rem;
    }
    
    .footer__slogan {
        font-size: 1.5rem;
    }
    
    .footer__logo-main {
        width: 120px;
    }
    
    .footer__tagline {
        max-width: 300px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .footer__slogan {
        font-size: 1.3rem;
    }
    
    .footer__logo-main {
        width: 100px;
    }
    
    .footer__tagline {
        max-width: 250px;
        font-size: 0.85rem;
        padding: 0 1rem;
    }
}

/*=============== AJUSTE COLUNA DADOS LEGAIS ===============*/
/* Para telas grandes - dar mais espaço para Dados Legais */
@media screen and (min-width: 769px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr 1.8fr; /* Terceira coluna maior */
        gap: 3rem;
    }
    
    /* Ajuste específico para a coluna de Dados Legais */
    .footer__column:nth-child(3) {
        min-width: 320px; /* Largura mínima maior */
    }
    
    /* Ajustar o conteúdo dentro da coluna de Dados Legais */
    .footer__column:nth-child(3) .footer__link {
        font-size: 0.95rem;
        line-height: 1.6;
        word-break: break-word; /* Garantir quebra de texto */
    }
    
    /* Permitir que o texto dos dados legais quebre em várias linhas */
    .footer__column:nth-child(3) .footer__link-item {
        align-items: flex-start;
    }
    
    .footer__column:nth-child(3) .footer__link-item i {
        margin-top: 4px; /* Alinhar ícone com primeira linha */
    }
}

/* Para telas muito grandes - mais espaço ainda */
@media screen and (min-width: 1200px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr 2fr; /* Ainda mais espaço para Dados Legais */
        gap: 4rem;
    }
    
    .footer__column:nth-child(3) {
        min-width: 350px;
    }
    
    .footer__column:nth-child(3) .footer__link {
        font-size: 1rem;
    }
}

/* Para telas médias (768px a 992px) */
@media screen and (max-width: 992px) and (min-width: 769px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr 2fr;
        gap: 2.5rem;
    }
    
    .footer__column:nth-child(3) {
        min-width: 300px;
    }
    
    .footer__column:nth-child(3) .footer__link {
        font-size: 0.92rem;
    }
}

/* Ajustar para manter responsividade em telas menores */
@media screen and (max-width: 768px) {
    .footer__column:nth-child(3) {
        min-width: auto; /* Remover largura mínima em telas pequenas */
    }
    
    .footer__column:nth-child(3) .footer__link {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .footer__column:nth-child(3) .footer__link-item {
        text-align: left;
    }
}



.footer__column:nth-child(3) .footer__icon-wrapper:hover {
    transform: translateY(-3px) scale(1.05);
}

.footer__column:nth-child(3) .footer__link-item:hover {
    transform: translateX(8px); /* Efeito hover mais pronunciado */
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .home__info {
    width: 190px;
    padding: 1rem;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
  }
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }
  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }
  .home__info {
    bottom: 3rem;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }
  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }
  .home__info-title {
    font-size: var(--normal-font-size);
  }
  .home__info-img {
    width: 240px;
  }
  .about__img-one {
    width: 220px;
  }
  .about__img-two {
    width: 290px;
  }
  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
  }
  .footer__content {
    justify-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container, .home__img {
    height: 640px;
  }
}


/*=============== HOME FILTERS OVERLAY ===============*/
.home__filters-overlay {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 20;
    animation: slideUpFilters 0.8s ease-out 0.5s both;
}

@keyframes slideUpFilters {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home__filters-container {
    max-width: 1200px;
    margin: 0 auto;
}

.filters__wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.filters__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF9500, #FFB74D);
    border-radius: 24px 24px 0 0;
}

.filters__header {
    margin-bottom: 2rem;
    text-align: center;
}

.filters__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.filters__header-icon {
    font-size: 2rem;
    color: #FF9500;
    opacity: 0.9;
}

.filters__title {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(90deg, #000, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.filters__subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

/* Filtros principais */
.filters__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter__item {
    position: relative;
}

.filter__item--button {
    display: flex;
    align-items: flex-end;
}

.filter__input-wrapper {
    position: relative;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter__input-wrapper:hover {
    border-color: #FF9500;
    background: #fff;
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.1);
}

.filter__input-wrapper.active {
    border-color: #FF9500;
    background: #fff;
    box-shadow: 0 5px 20px rgba(255, 149, 0, 0.15);
}

.filter__icon {
    color: #666;
    font-size: 1.25rem;
    margin-right: 0.75rem;
    transition: color 0.3s ease;
}

.filter__input-wrapper:hover .filter__icon,
.filter__input-wrapper.active .filter__icon {
    color: #FF9500;
}

.filter__input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
}

.filter__input::placeholder {
    color: #888;
}

.filter__arrow {
    color: #888;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.filter__input-wrapper.active .filter__arrow {
    transform: rotate(180deg);
    color: #FF9500;
}

/* Dropdown dos filtros */
.filter__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #f0f0f0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 300px;
    overflow-y: auto;
}

.filter__item.active .filter__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter__option {
    padding: 1rem 1.25rem;
    color: #333;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter__option:last-child {
    border-bottom: none;
}

.filter__option:hover {
    background: #f8f9fa;
    color: #FF9500;
    padding-left: 1.5rem;
}

.filter__option.filter__option--light:hover {
    color: #2e7d32;
}

.filter__option.filter__option--moderate:hover {
    color: #f57c00;
}

.filter__option.filter__option--heavy:hover {
    color: #d32f2f;
}

.filter__activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Botão de busca */
.filters__search-btn {
    background: linear-gradient(135deg, #FF9500, #FFB74D);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    height: 52px;
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.25);
}

.filters__search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.35);
    background: linear-gradient(135deg, #FF8C00, #FFA726);
}

.filters__search-btn:active {
    transform: translateY(0);
}

.filters__search-btn i {
    font-size: 1.1rem;
}

/* Filtros ativos */
.filters__active {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    min-height: 40px;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 1rem;
    align-items: center;
}

.active-filter-tag {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #FF9500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInTag 0.3s ease;
}

@keyframes fadeInTag {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.active-filter-tag__remove {
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.active-filter-tag__remove:hover {
    opacity: 1;
}

/* Responsividade */
@media screen and (max-width: 1200px) {
    .filters__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .home__filters-overlay {
        bottom: -100px;
    }
}

@media screen and (max-width: 768px) {
    .home__filters-overlay {
        bottom: -120px;
        padding: 0 1rem;
    }
    
    .filters__wrapper {
        padding: 2rem 1.5rem;
    }
    
    .filters__row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filters__title {
        font-size: 1.5rem;
    }
    
    .filters__header-icon {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .home__filters-overlay {
        bottom: -140px;
    }
    
    .filters__wrapper {
        padding: 1.5rem;
    }
    
    .filters__title-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filters__search-btn {
        padding: 0.875rem 1.5rem;
    }
}

/* Ajuste para garantir que a home tenha espaço suficiente */
.home {
    position: relative;
    padding-bottom: 200px;
}

@media screen and (max-width: 768px) {
    .home {
        padding-bottom: 250px;
    }
}

@media screen and (max-width: 480px) {
    .home {
        padding-bottom: 300px;
    }
}

/* Ajuste no CSS existente da home */
.home__container {
    position: relative;
    z-index: 10;
    padding-top: 6rem; /* Dá espaço para os filtros não cobrirem o conteúdo */
}

@media screen and (max-width: 768px) {
    .home__container {
        padding-top: 8rem;
    }
}


/*=============== CORREÇÃO DO HAMBURGUER ===============*/
/* Aumentar z-index do overlay para ficar acima do botão */
.menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 9999 !important; /* Aumentado de 999 para 9999 */
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    overflow-y: auto !important;
}

.menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ajustar z-index do botão hambúrguer */
.hamburger-menu {
    position: relative !important;
    z-index: 10000 !important; /* Aumentado para ficar acima do overlay quando ativo */
}

/* Garantir que o botão de fechar do overlay funcione */
.menu-close {
    z-index: 10001 !important;
    position: relative !important;
}

/*=============== ACTIVITIES SECTION - MINIMALISTA ===============*/
.activities {
    padding: 3rem 0 2rem;
    background: transparent;
}

.activities__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.activity__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.activity__item:hover {
    transform: translateY(-5px);
}

.activity__icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 149, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.activity__icon i {
    font-size: 1.5rem;
    color: #FF9500;
    transition: all 0.3s ease;
}

.activity__item:hover .activity__icon {
    background: #FF9500;
    transform: scale(1.1);
}

.activity__item:hover .activity__icon i {
    color: #fff;
}

.activity__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.activity__item:hover .activity__label {
    color: #FF9500;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .activities__grid {
        gap: 2rem;
    }
    
    .activity__icon {
        width: 45px;
        height: 45px;
    }
    
    .activity__icon i {
        font-size: 1.25rem;
    }
    
    .activity__label {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .activities {
        padding: 2rem 0 1.5rem;
    }
    
    .activities__grid {
        gap: 1.5rem;
        justify-content: space-around;
    }
    
    .activity__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .activity__icon i {
        font-size: 1.1rem;
    }
    
    .activity__label {
        font-size: 0.65rem;
    }
}

/*=============== FILTROS MINIMALISTAS - AJUSTES ===============*/
/* Tornando os filtros mais clean e minimalistas */
.filters__wrapper {
    padding: 1.5rem !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06) !important;
}

.filters__wrapper::before {
    height: 2px !important;
    border-radius: 16px 16px 0 0 !important;
}

.filters__header {
    margin-bottom: 1.5rem !important;
}

.filters__title-wrapper {
    gap: 0.5rem !important;
    margin-bottom: 0.25rem !important;
}

.filters__header-icon {
    font-size: 1.25rem !important;
    opacity: 0.8 !important;
}

.filters__title {
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

.filters__subtitle {
    color: #777 !important;
    font-size: 0.875rem !important;
}


/*=============== HOME SEARCH MINIMALISTA ===============*/
.home__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home__container {
    position: relative;
    z-index: 2;
    height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
}

.home__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}


/* Search Wrapper */
.search-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out 0.5s both;
}

.search-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    box-shadow: 
        0 25px 80px rgba(255, 149, 0, 0.2),
        0 0 0 2px rgba(255, 149, 0, 0.2);
    transform: translateY(-2px);
}

/* Search Form */
.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.search-icon {
    color: var(--first-color);
    font-size: 1.25rem;
    padding: 0 1rem;
    opacity: 0.8;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1.1rem;
    color: #333;
    padding: 1rem 0;
    min-width: 0;
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-filter-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.25rem;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-filter-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.search-submit-btn {
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    border: none;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
}

.search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.3);
    background: linear-gradient(135deg, var(--first-color-alt), var(--first-color));
}

.search-submit-btn:active {
    transform: translateY(0);
}

.search-submit-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.search-submit-btn:hover i {
    transform: translateX(3px);
}

/* Search Suggestions */
.search-suggestions {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.suggestions-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.suggestions-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.2);
    color: var(--first-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.tag:hover {
    background: var(--first-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.2);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=============== RESPONSIVIDADE ===============*/
@media screen and (max-width: 768px) {
    
    .search-wrapper {
        max-width: 90%;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .search-icon {
        display: none;
    }
    
    .search-input {
        padding: 0.75rem 0;
        text-align: center;
    }
    
    .search-suggestions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .suggestions-label {
        text-align: center;
    }
    
    .suggestions-tags {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
   
    
    .search-container {
        padding: 0.5rem;
    }
    
    .search-submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Modo escuro */
body.dark-theme .search-container {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.dark-theme .search-input {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-theme .search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-theme .search-filter-btn {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-theme .search-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

body.dark-theme .search-suggestions {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-theme .suggestions-label {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-theme .tag {
    background: rgba(255, 149, 0, 0.15);
    color: var(--first-color);
}

/* =============== AJUSTE POSIÇÃO BUSCA =============== */
.home__container {
    display: flex;
    align-items: flex-end;
    padding-bottom: -55vh; /* Ajuste este valor: maior = mais para baixo */
}

/* Para telas menores, ajuste a posição */
@media screen and (max-width: 768px) {
    .home__container {
        padding-bottom: 20vh;
    }
}

@media screen and (max-width: 480px) {
    .home__container {
        padding-bottom: 15vh;
    }
}


/* =============== AJUSTE DE ESPAÇAMENTO ENTRE SEÇÕES =============== */

/* Reduz o padding da seção home */
.home {
    padding-bottom: 30px !important;
}

/* Ajusta a posição da busca para mais para cima */
.home__container {
    margin-bottom: -30px;
}



/* Ajuste responsivo */
@media screen and (max-width: 768px) {
    
    .section {
        padding: 1.5rem 0 1rem !important;
    }
}

@media screen and (max-width: 480px) {
    
    .section {
        padding: 1rem 0 0.75rem !important;
    }
}




/*===============================================================
  RESPONSIVIDADE MOBILE COMPLETA
  Adicione este código ao FINAL do seu arquivo styles.css
================================================================*/

/*=============== MOBILE - 576px e abaixo ===============*/
@media screen and (max-width: 576px) {
    
    /* === CONTAINER E ESPAÇAMENTOS GERAIS === */
    .container {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
    
    .section {
        padding: 3rem 0 1.5rem;
    }
    
    .section__title {
        font-size: var(--h3-font-size);
        margin-bottom: var(--mb-1-5);
    }
    
    /* === HEADER E NAVEGAÇÃO === */
    .header {
        padding: 0 0.5rem;
    }
    
    .nav {
        height: var(--header-height);
        padding: 0 0.5rem;
    }
    
    .nav__logo img {
        width: 80px;
        max-height: 35px;
    }
    
    .hamburger-btn {
        width: 24px;
        height: 18px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
    
    /* === MENU OVERLAY MOBILE === */
    .menu-content {
        padding: 1rem;
    }
    
    .menu-header {
        padding: 0.75rem 0 1.5rem;
    }
    
    .menu-logo img {
        width: 100px;
    }
    
    .menu-close {
        font-size: 1.75rem;
        padding: 0.4rem;
    }
    
    .menu-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-left: 0.75rem;
    }
    
    .menu-section-title::before {
        width: 3px;
        height: 16px;
    }
    
    .menu-nav-link {
        font-size: 1rem;
        padding: 0.6rem 0.75rem;
    }
    
    /* === HOME SECTION === */
    .home {
        padding-bottom: 280px !important;
    }
    
    .home__img {
        object-position: center;
    }
    
    .home__container {
        padding-top: 5rem;
        padding-bottom: 12vh;
    }
    
    .home__content {
        padding: 0 1rem;
    }
    
    .home__data-subtitle {
        font-size: var(--small-font-size);
        margin-bottom: var(--mb-0-5);
    }
    
    .home__data-title {
        font-size: 1.75rem;
        margin-bottom: var(--mb-1-5);
        line-height: 1.2;
    }
    
    .home__social {
        row-gap: 1rem;
    }
    
    .home__social-link {
        font-size: 1rem;
    }
    
    .home__info {
        width: 100%;
        max-width: 200px;
        padding: 1rem 0.75rem;
        bottom: 0.5rem;
        right: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .home__info-overlay {
        border-radius: 0.75rem;
    }
    
    .home__info-img {
        width: 100px;
    }
    
    .home__info-title {
        font-size: var(--smaller-font-size);
        margin-bottom: var(--mb-0-5);
    }
    
    .home__info-button {
        font-size: 0.7rem;
    }
    
    /* === SEARCH/BUSCA MOBILE === */
    .search-wrapper {
        max-width: 95%;
        padding: 0 0.5rem;
    }
    
    .search-container {
        padding: 0.4rem;
        border-radius: 16px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.4rem;
    }
    
    .search-input {
        font-size: 0.95rem;
        padding: 0.6rem 0;
        text-align: center;
    }
    
    .search-actions {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .search-filter-btn {
        padding: 0.6rem;
        font-size: 1.1rem;
    }
    
    .search-submit-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 12px;
        flex: 1;
        max-width: 180px;
    }
    
    .search-submit-btn i {
        font-size: 1rem;
    }
    
    .search-suggestions {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .suggestions-label {
        font-size: 0.8rem;
    }
    
    .suggestions-tags {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    /* === FILTROS OVERLAY MOBILE === */
    .home__filters-overlay {
        bottom: -150px;
        padding: 0 0.75rem;
    }
    
    .filters__wrapper {
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }
    
    .filters__header {
        margin-bottom: 1rem !important;
    }
    
    .filters__title-wrapper {
        flex-direction: column;
        gap: 0.4rem !important;
    }
    
    .filters__header-icon {
        font-size: 1.25rem !important;
    }
    
    .filters__title {
        font-size: 1.1rem !important;
    }
    
    .filters__subtitle {
        font-size: 0.8rem !important;
    }
    
    .filters__row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .filter__input-wrapper {
        padding: 0.75rem 0.875rem;
        border-radius: 10px;
    }
    
    .filter__icon {
        font-size: 1.1rem;
        margin-right: 0.6rem;
    }
    
    .filter__input {
        font-size: 0.875rem;
    }
    
    .filter__arrow {
        font-size: 1.1rem;
    }
    
    .filter__dropdown {
        border-radius: 10px;
        max-height: 250px;
    }
    
    .filter__option {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .filters__search-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
        height: 46px;
        border-radius: 10px;
    }
    
    .filters__search-btn i {
        font-size: 1rem;
    }
    
    .filters__active {
        padding-top: 0.75rem;
        margin-top: 0.75rem;
        gap: 0.5rem;
        min-height: 35px;
    }
    
    .active-filter-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* === ACTIVITIES SECTION MOBILE === */
    .activities {
        padding: 1.5rem 0 1rem;
    }
    
    .activities__grid {
        gap: 1.25rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .activity__item {
        min-width: 60px;
    }
    
    .activity__icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0.4rem;
    }
    
    .activity__icon i {
        font-size: 1rem;
    }
    
    .activity__label {
        font-size: 0.6rem;
    }
    
    /* === ABOUT SECTION MOBILE === */
    .about__container {
        row-gap: 2rem;
    }
    
    .about__data {
        text-align: center;
    }
    
    .about__description {
        font-size: var(--small-font-size);
        margin-bottom: var(--mb-1-5);
        padding: 0 0.5rem;
    }
    
    .about__img {
        justify-content: center;
    }
    
    .about__img-one {
        width: 110px;
    }
    
    .about__img-two {
        width: 150px;
    }
    
    .about__img-overlay {
        border-radius: 0.75rem;
    }
    
    /* === DISCOVER/SWIPER SECTION MOBILE === */
    .discover__card {
        width: 200px;
    }
    
    .discover__data {
        bottom: 1rem;
        left: 0.75rem;
    }
    
    .discover__title {
        font-size: var(--normal-font-size);
        margin-bottom: var(--mb-0-25);
    }
    
    .discover__description {
        font-size: 0.7rem;
    }
    
    /* === EXPERIENCE SECTION MOBILE === */
    .experience__container {
        row-gap: 2rem;
    }
    
    .experience__content {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .experience__number {
        font-size: var(--normal-font-size);
        margin-bottom: var(--mb-0-25);
    }
    
    .experience__description {
        font-size: var(--smaller-font-size);
    }
    
    .experience__overlay:nth-child(1) {
        width: 160px;
        margin-right: 1rem;
    }
    
    .experience__overlay:nth-child(2) {
        width: 70px;
        top: 1.5rem;
    }
    
    .experience__overlay {
        border-radius: 0.75rem;
    }
    
    /* === VIDEO SECTION MOBILE === */
    .video__container {
        padding-bottom: 0.5rem;
    }
    
    .video__description {
        font-size: var(--small-font-size);
        margin-bottom: var(--mb-2);
        padding: 0 0.5rem;
    }
    
    .video__button {
        right: 0.75rem;
        bottom: -0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .video__button-icon {
        font-size: 1rem;
    }
    
    /* === PLACES SECTION MOBILE === */
    .place__container {
        gap: 1rem;
    }
    
    .place__card {
        width: 230px;
        border-radius: 0.75rem;
    }
    
    .place__content {
        padding: 0.6rem 0.6rem 0.75rem;
    }
    
    .place__activity {
        padding: 0.25rem 0.5rem;
        border-radius: 10px;
    }
    
    .place__activity-icon {
        font-size: 0.7rem;
    }
    
    .place__activity-text {
        font-size: 0.65rem;
    }
    
    .place__title {
        font-size: var(--normal-font-size);
        margin-bottom: var(--mb-0-25);
    }
    
    .place__subtitle {
        font-size: 0.7rem;
        margin-bottom: var(--mb-1);
    }
    
    .place__button {
        padding: 0.6rem 0.75rem;
    }
    
    .place__img {
        border-radius: 0.75rem;
    }
    
    /* === BUTTONS MOBILE === */
    .button {
        padding: 0.875rem 1.5rem;
        font-size: var(--small-font-size);
    }
    
    .button--flex {
        column-gap: 0.2rem;
    }
    
    /* === FOOTER MOBILE === */
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
        border-top-width: 6px;
    }
    
    .footer__container {
        padding: 0 1rem;
    }
    
    .footer__logo-center {
        margin-bottom: 2.5rem;
    }
    
    .footer__logo-main {
        width: 90px;
        margin-bottom: 1rem;
    }
    
    .footer__slogan {
        font-size: 1.2rem !important;
        padding-bottom: 0.75rem;
    }
    
    .footer__slogan::after {
        width: 50px;
        height: 2px;
    }
    
    .footer__tagline {
        font-size: 0.8rem;
        max-width: 220px;
        padding: 0 0.5rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__column {
        padding: 1rem;
        text-align: center;
    }
    
    .footer__column-header {
        justify-content: center;
        margin-bottom: 1.25rem;
    }
    
    .footer__icon-wrapper {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    
    .footer__icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .footer__title {
        font-size: 0.95rem;
    }
    
    .footer__links {
        gap: 1rem;
        align-items: center;
    }
    
    .footer__link-item {
        justify-content: center;
    }
    
    .footer__link-item i {
        font-size: 0.9rem;
    }
    
    .footer__link {
        font-size: 0.875rem;
    }
    
    .footer__certifications {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer__cert-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .footer__divider {
        margin: 2rem 0;
        gap: 0.75rem;
    }
    
    .footer__divider-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer__divider-icon i {
        font-size: 1.2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1.25rem;
        padding-top: 1.5rem;
        text-align: center;
    }
    
    .footer__copyright {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .footer__highlight {
        margin-left: 0;
    }
    
    .footer__dev {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .footer__dev-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* === SCROLL UP MOBILE === */
    .scrollup {
        right: 0.75rem;
        padding: 0.4rem;
    }
    
    .scrollup__icon {
        font-size: 1rem;
    }
    
    .show-scroll {
        bottom: 4rem;
    }
    
    /* === SCROLLBAR MOBILE === */
    ::-webkit-scrollbar {
        width: 0.4rem;
    }
}

/*=============== MOBILE EXTRA PEQUENO - 360px e abaixo ===============*/
@media screen and (max-width: 360px) {
    
    .container {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .nav__logo img {
        width: 70px;
    }
    
    .home__data-title {
        font-size: 1.5rem;
    }
    
    .home__info {
        max-width: 170px;
        padding: 0.75rem 0.5rem;
    }
    
    .home__info-img {
        width: 80px;
    }
    
    .search-wrapper {
        max-width: 98%;
    }
    
    .search-submit-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .filters__wrapper {
        padding: 1rem !important;
    }
    
    .filters__title {
        font-size: 1rem !important;
    }
    
    .activity__icon {
        width: 35px;
        height: 35px;
    }
    
    .activity__icon i {
        font-size: 0.9rem;
    }
    
    .activity__label {
        font-size: 0.55rem;
    }
    
    .about__img-one {
        width: 90px;
    }
    
    .about__img-two {
        width: 130px;
    }
    
    .discover__card {
        width: 170px;
    }
    
    .place__card {
        width: 205px;
    }
    
    .experience__overlay:nth-child(1) {
        width: 140px;
    }
    
    .experience__overlay:nth-child(2) {
        width: 60px;
    }
    
    .footer__logo-main {
        width: 80px;
    }
    
    .footer__slogan {
        font-size: 1.1rem !important;
    }
    
    .footer__tagline {
        font-size: 0.75rem;
    }
}

/*=============== LANDSCAPE MOBILE ===============*/
@media screen and (max-width: 767px) and (orientation: landscape) {
    
    .home {
        padding-bottom: 200px !important;
    }
    
    .home__container {
        height: auto;
        min-height: calc(100vh - var(--header-height));
        padding-top: 4rem;
        padding-bottom: 8vh;
    }
    
    .home__img {
        height: 100%;
        min-height: 100vh;
    }
    
    .home__data-title {
        font-size: 1.5rem;
        margin-bottom: var(--mb-1);
    }
    
    .home__filters-overlay {
        bottom: -100px;
    }
    
    .filters__row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities__grid {
        gap: 2rem;
    }
    
    .activity__icon {
        width: 40px;
        height: 40px;
    }
}

/*=============== TABLET PEQUENO - 577px a 767px ===============*/
@media screen and (min-width: 577px) and (max-width: 767px) {
    
    .container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .home__data-title {
        font-size: 2rem;
    }
    
    .home__info {
        width: 220px;
    }
    
    .search-wrapper {
        max-width: 85%;
    }
    
    .search-input-group {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .search-input {
        text-align: left;
    }
    
    .search-actions {
        width: auto;
    }
    
    .filters__row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities__grid {
        gap: 2.5rem;
        max-width: 600px;
    }
    
    .activity__icon {
        width: 45px;
        height: 45px;
    }
    
    .activity__icon i {
        font-size: 1.2rem;
    }
    
    .activity__label {
        font-size: 0.7rem;
    }
    
    .about__img-one {
        width: 130px;
    }
    
    .about__img-two {
        width: 170px;
    }
    
    .discover__card {
        width: 210px;
    }
    
    .place__card {
        width: 255px;
    }
    
    .experience__overlay:nth-child(1) {
        width: 200px;
    }
    
    .experience__overlay:nth-child(2) {
        width: 90px;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer__column {
        text-align: left;
    }
    
    .footer__column-header {
        justify-content: flex-start;
    }
    
    .footer__links {
        align-items: flex-start;
    }
    
    .footer__link-item {
        justify-content: flex-start;
    }
}

/*=============== FIX PARA iOS SAFARI ===============*/
@supports (-webkit-touch-callout: none) {
    .home__img {
        height: -webkit-fill-available;
    }
    
    .menu-overlay {
        height: -webkit-fill-available;
    }
}

/*=============== TOUCH DEVICES - MELHOR USABILIDADE ===============*/
@media (hover: none) and (pointer: coarse) {
    
    /* Aumenta área de toque */
    .hamburger-btn {
        padding: 8px;
        margin: -8px;
    }
    
    .filter__input-wrapper {
        min-height: 50px;
    }
    
    .filter__option {
        min-height: 48px;
    }
    
    .tag {
        min-height: 40px;
        display: flex;
        align-items: center;
    }
    
    .search-submit-btn {
        min-height: 48px;
    }
    
    .filters__search-btn {
        min-height: 48px;
    }
    
    .button {
        min-height: 48px;
    }
    
    .menu-nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .month-card {
        min-height: 100px;
    }
    
    /* Remove hover effects que não funcionam bem em touch */
    .place__card:hover {
        transform: none;
    }
    
    .activity__item:hover {
        transform: none;
    }
    
    .footer__link-item:hover {
        transform: none;
    }
    
    /* Adiciona active states para feedback visual */
    .hamburger-btn:active {
        transform: scale(0.95);
    }
    
    .tag:active {
        transform: scale(0.95);
        background: var(--first-color);
        color: white;
    }
    
    .search-submit-btn:active {
        transform: scale(0.98);
    }
    
    .filters__search-btn:active {
        transform: scale(0.98);
    }
    
    .activity__item:active .activity__icon {
        background: #FF9500;
    }
    
    .activity__item:active .activity__icon i {
        color: #fff;
    }
    
    .place__card:active {
        transform: scale(0.98);
    }
    
    .month-card:active {
        transform: scale(0.98);
        border-color: var(--first-color);
    }
}

/*=============== ACESSIBILIDADE - REDUCED MOTION ===============*/
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .home__content,
    .search-wrapper,
    .home__filters-overlay {
        animation: none !important;
    }
}



/*=============== NOTCH/SAFE AREA (iPhone X+) ===============*/
@supports (padding: max(0px)) {
    .header {
        padding-left: max(0.5rem, env(safe-area-inset-left));
        padding-right: max(0.5rem, env(safe-area-inset-right));
    }
    
    .menu-overlay {
        padding-top: max(1rem, env(safe-area-inset-top));
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
    
    .footer {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
    
    .scrollup {
        bottom: max(5rem, calc(env(safe-area-inset-bottom) + 3rem));
    }
    
    .show-scroll {
        bottom: max(5rem, calc(env(safe-area-inset-bottom) + 3rem));
    }
}
/*=============== CORREÇÕES MOBILE - VERSÃO FINAL ===============*/
/*================================================================
  Correções específicas para mobile:
  1. Hero section ocupa 100vh (primeira dobra inteira)
  2. Remover espaço gigante abaixo da hero
  3. Cards de roteiro maiores
  4. Ícones de filtro em scroll horizontal
  5. Banner ajustado para mobile
  6. Campo de busca estilizado
================================================================*/

@media screen and (max-width: 767px) {
    
    /* === HERO SECTION - OCUPAR PRIMEIRA DOBRA INTEIRA === */
    .home {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
        min-height: -webkit-fill-available !important;
        height: 100vh !important;
        height: 100dvh !important;
        height: 100svh !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    
    /* === BANNER AJUSTADO PARA MOBILE === */
    .home__img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
        min-height: -webkit-fill-available !important;
        object-fit: cover !important;
        object-position: center center !important;
        z-index: 0 !important;
    }
    
    .home__overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: -webkit-fill-available !important;
        z-index: 1 !important;
    }
    
    .home__container {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
        min-height: -webkit-fill-available !important;
        padding-top: var(--header-height) !important;
        padding-bottom: 3rem !important;
        position: relative !important;
        z-index: 2 !important;
        margin-bottom: 0 !important;
    }
    
    .home__content {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-end !important;
        padding: 0 1rem !important;
    }
    
    /* === CAMPO DE BUSCA ESTILIZADO MOBILE === */
    .search-wrapper {
        width: 100% !important;
        max-width: 90% !important;
    }
    
    .search-container {
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-radius: 20px !important;
        padding: 1.5rem !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
        border: none !important;
    }
    
    .search-form {
        width: 100% !important;
    }
    
    .search-input-group {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
        background: #f8f8f8 !important;
        border-radius: 50px !important;
        border: 1.5px solid #e8e8e8 !important;
        padding: 0.2rem 0.3rem 0.2rem 1rem !important;
        transition: all 0.3s ease !important;
    }
    
    .search-input-group:focus-within {
        border-color: var(--first-color) !important;
        background: #fff !important;
        box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.1) !important;
    }
    
    .search-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #aaa !important;
        font-size: 1.25rem !important;
        padding: 0 !important;
        margin-right: 0.5rem !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
    }
    
    .search-input {
        flex: 1 !important;
        border: none !important;
        background: transparent !important;
        outline: none !important;
        font-size: 0.95rem !important;
        color: #333 !important;
        padding: 0.85rem 0 !important;
        text-align: left !important;
        min-width: 0 !important;
    }
    
    .search-input::placeholder {
        color: #999 !important;
        font-weight: 400 !important;
    }
    
    /* Esconder botão de filtro no mobile */
    .search-filter-btn {
        display: none !important;
    }
    
    /* Botão de buscar inline */
    .search-actions {
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }
    
    .search-submit-btn {
        padding: 0.7rem 1.2rem !important;
        border-radius: 50px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        background: linear-gradient(135deg, var(--first-color), var(--first-color-alt)) !important;
        box-shadow: 0 4px 15px rgba(255, 149, 0, 0.25) !important;
        white-space: nowrap !important;
    }
    
    .search-submit-btn span {
        display: inline !important;
    }
    
    .search-submit-btn i {
        font-size: 1rem !important;
    }
    
    /* Sugestões */
    .search-suggestions {
        padding: 1.25rem 0.5rem 0.25rem !important;
        border-top: none !important;
        margin-top: 0 !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.6rem !important;
    }
    
    .suggestions-label {
        font-size: 0.8rem !important;
        color: #777 !important;
        text-align: center !important;
    }
    
    .suggestions-tags {
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .tag {
        padding: 0.45rem 1rem !important;
        font-size: 0.8rem !important;
        border-radius: 25px !important;
        background: rgba(255, 149, 0, 0.12) !important;
        color: #e08600 !important;
        border: 1px solid rgba(255, 149, 0, 0.2) !important;
        font-weight: 500 !important;
        transition: all 0.2s ease !important;
    }
    
    .tag:hover,
    .tag:active {
        background: var(--first-color) !important;
        color: #fff !important;
        border-color: var(--first-color) !important;
        transform: translateY(-1px) !important;
    }
    
    /* === REMOVER ESPAÇO ABAIXO DA HERO === */
    .home + .section,
    .home + .about,
    .home + * {
        margin-top: 0 !important;
        padding-top: 2rem !important;
    }
    
    .about.section {
        padding-top: 2rem !important;
    }
    
    /* === CARDS DE ROTEIRO MAIORES === */
    .place__card {
        width: 330px !important;
        min-width: 330px !important;
    }
    
    .place__card .place__img {
        width: 100% !important;
        height: 100% !important;
    }
    
    .place__title {
        font-size: 1.1rem !important;
    }
    
    .place__subtitle {
        font-size: 0.85rem !important;
    }
    
    .place__price {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
    
    /* === ÍCONES DE FILTRO - SCROLL HORIZONTAL === */
    .activities {
        padding: 1.5rem 0 !important;
        overflow: hidden !important;
    }
    
    .activities__container {
        padding: 0 !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    .activities__grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 1.5rem !important;
        padding: 0.5rem 1rem !important;
        margin: 0 !important;
        max-width: none !important;
        justify-content: flex-start !important;
        scrollbar-width: none !important; /* Firefox */
        -ms-overflow-style: none !important; /* IE/Edge */
    }
    
    /* Esconder scrollbar mas manter funcionalidade */
    .activities__grid::-webkit-scrollbar {
        display: none !important;
        height: 0 !important;
        width: 0 !important;
    }
    
    .activity__item {
        flex: 0 0 auto !important;
        scroll-snap-align: start !important;
        min-width: 70px !important;
    }
    
    .activity__icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .activity__icon i {
        font-size: 1.3rem !important;
    }
    
    .activity__label {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }
}

/* === CORREÇÕES ESPECÍFICAS PARA TELAS PEQUENAS (480px e menos) === */
@media screen and (max-width: 480px) {
    
    /* Hero ocupando tela toda - reforço máximo */
    .home {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
        min-height: -webkit-fill-available !important;
        height: 100vh !important;
        height: 100dvh !important;
        height: 100svh !important;
    }
    
    .home__container {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
        min-height: -webkit-fill-available !important;
        padding-bottom: 2.5rem !important;
    }
    
    .home__img,
    .home__overlay {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
        min-height: -webkit-fill-available !important;
    }
    
    /* Cards ainda maiores em telas pequenas */
    .place__card {
        width: 305px !important;
        min-width: 305px !important;
    }
    
    /* Ajuste do grid de ícones */
    .activities__grid {
        gap: 1.25rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .activity__item {
        min-width: 65px !important;
    }
    
    .activity__icon {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .activity__icon i {
        font-size: 1.2rem !important;
    }
    
    .activity__label {
        font-size: 0.6rem !important;
    }
}

/* === CORREÇÕES PARA TELAS MUITO PEQUENAS (360px e menos) === */
@media screen and (max-width: 360px) {
    
    .home {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
        min-height: -webkit-fill-available !important;
    }
    
    .home__container,
    .home__img,
    .home__overlay {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
        min-height: -webkit-fill-available !important;
    }
    
    .place__card {
        width: 280px !important;
        min-width: 280px !important;
    }
    
    .activity__item {
        min-width: 60px !important;
    }
    
    .activity__icon {
        width: 42px !important;
        height: 42px !important;
    }
    
    .activity__icon i {
        font-size: 1.1rem !important;
    }
    
    .activity__label {
        font-size: 0.55rem !important;
    }
}

/* === FIX ESPECIAL PARA iOS SAFARI === */
@supports (-webkit-touch-callout: none) {
    @media screen and (max-width: 767px) {
        .home {
            min-height: -webkit-fill-available !important;
            height: -webkit-fill-available !important;
        }
        
        .home__img {
            min-height: -webkit-fill-available !important;
            height: -webkit-fill-available !important;
        }
        
        .home__container {
            min-height: -webkit-fill-available !important;
            height: -webkit-fill-available !important;
        }
        
        .home__overlay {
            min-height: -webkit-fill-available !important;
            height: -webkit-fill-available !important;
        }
    }
}

/*=============== FOOTER COMPACTO - MOBILE ===============*/
@media screen and (max-width: 767px) {
    
    .footer {
        padding: 2rem 0 1.5rem !important;
        margin-top: 2rem !important;
        border-top-width: 5px !important;
    }
    
    .footer__container {
        padding: 0 1rem !important;
    }
    
    /* Logo centralizada compacta */
    .footer__logo-center {
        margin-bottom: 1.5rem !important;
    }
    
    .footer__logo-main {
        width: 90px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .footer__slogan {
        font-size: 1.1rem !important;
        padding-bottom: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer__slogan::after {
        width: 50px !important;
        height: 2px !important;
    }
    
    .footer__tagline {
        font-size: 0.75rem !important;
        max-width: 250px !important;
        line-height: 1.4 !important;
    }
    
    /* Grid de colunas compacta */
    .footer__grid {
        gap: 1rem !important;
    }
    
    .footer__column {
        padding: 0.75rem !important;
    }
    
    .footer__column-header {
        margin-bottom: 0.75rem !important;
        gap: 0.5rem !important;
    }
    
    .footer__column-title {
        font-size: 0.9rem !important;
    }
    
    .footer__icon-wrapper {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
    }
    
    .footer__icon-wrapper i {
        font-size: 1rem !important;
    }
    
    /* Links do footer */
    .footer__links {
        gap: 0.4rem !important;
    }
    
    .footer__link-item {
        padding: 0.3rem 0 !important;
    }
    
    .footer__link-item a,
    .footer__link-item span {
        font-size: 0.8rem !important;
    }
    
    .footer__link-icon {
        font-size: 0.9rem !important;
        width: 18px !important;
    }
    
    /* Divider compacto */
    .footer__divider {
        margin: 1rem 0 !important;
        gap: 0.75rem !important;
    }
    
    .footer__divider-line {
        height: 1px !important;
    }
    
    .footer__divider-icon {
        width: 30px !important;
        height: 30px !important;
    }
    
    .footer__divider-icon i {
        font-size: 1rem !important;
    }
    
    /* Bottom footer compacto */
    .footer__bottom {
        padding-top: 1rem !important;
        gap: 0.75rem !important;
    }
    
    .footer__copyright {
        font-size: 0.7rem !important;
        gap: 0.25rem !important;
    }
    
    .footer__copyright i {
        font-size: 0.8rem !important;
    }
    
    .footer__dev {
        font-size: 0.7rem !important;
        gap: 0.5rem !important;
    }
    
    .footer__dev-link {
        padding: 0.35rem 0.75rem !important;
        font-size: 0.7rem !important;
        gap: 0.35rem !important;
    }
    
    .footer__dev-link i {
        font-size: 0.75rem !important;
    }
    
    /* Top do footer */
    .footer__top {
        margin-bottom: 1.5rem !important;
    }
}

/* === FOOTER AINDA MAIS COMPACTO - TELAS PEQUENAS === */
@media screen and (max-width: 480px) {
    
    .footer {
        padding: 1.5rem 0 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .footer__logo-center {
        margin-bottom: 1rem !important;
    }
    
    .footer__logo-main {
        width: 80px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer__slogan {
        font-size: 1rem !important;
    }
    
    .footer__tagline {
        font-size: 0.7rem !important;
    }
    
    .footer__grid {
        gap: 0.75rem !important;
    }
    
    .footer__column {
        padding: 0.5rem !important;
    }
    
    .footer__column-header {
        margin-bottom: 0.5rem !important;
    }
    
    .footer__column-title {
        font-size: 0.85rem !important;
    }
    
    .footer__icon-wrapper {
        width: 28px !important;
        height: 28px !important;
    }
    
    .footer__icon-wrapper i {
        font-size: 0.9rem !important;
    }
    
    .footer__link-item a,
    .footer__link-item span {
        font-size: 0.75rem !important;
    }
    
    .footer__top {
        margin-bottom: 1rem !important;
    }
    
    .footer__divider {
        margin: 0.75rem 0 !important;
    }
    
    .footer__bottom {
        padding-top: 0.75rem !important;
        gap: 0.5rem !important;
    }
    
    .footer__copyright,
    .footer__dev {
        font-size: 0.65rem !important;
    }
}

/*=============== IMAGEM DESKTOP/MOBILE - HERO ===============*/
/* Por padrão, mostrar desktop e esconder mobile */
.home__img--desktop {
    display: block;
}

.home__img--mobile {
    display: none;
}

/* Em telas mobile, inverter */
@media screen and (max-width: 767px) {
    .home__img--desktop {
        display: none !important;
    }
    
    .home__img--mobile {
        display: block !important;
    }
}

/*=============== BUSCA MINIMALISTA MOBILE - HERO ===============*/
@media screen and (max-width: 767px) {
    
    /* Container da hero - busca na parte inferior */
    .home__container {
        justify-content: flex-end !important;
        align-items: center !important;
        padding-bottom: 3rem !important;
    }
    
    .home__content {
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Search wrapper minimalista */
    .search-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    /* Container de busca - estilo minimalista */
    .search-container {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-radius: 16px !important;
        padding: 1rem !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
        border: none !important;
    }
    
    /* Input group - layout vertical */
    .search-input-group {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding: 0 !important;
    }
    
    /* Esconder ícone de busca no mobile */
    .search-icon {
        display: none !important;
    }
    
    /* Input de texto */
    .search-input {
        width: 100% !important;
        text-align: center !important;
        font-size: 0.95rem !important;
        padding: 0.5rem 0 !important;
        color: #666 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    
    .search-input::placeholder {
        color: #999 !important;
        font-weight: 400 !important;
    }
    
    /* Actions - botões */
    .search-actions {
        width: 100% !important;
        justify-content: center !important;
        gap: 0 !important;
    }
    
    /* Esconder botão de filtro no mobile */
    .search-filter-btn {
        display: none !important;
    }
    
    /* Botão de buscar - minimalista */
    .search-submit-btn {
        width: 100% !important;
        max-width: none !important;
        padding: 0.875rem 1.5rem !important;
        border-radius: 12px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        background: linear-gradient(135deg, #FF9500, #E6860D) !important;
        box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3) !important;
        justify-content: center !important;
    }
    
    .search-submit-btn span {
        margin-right: 0.5rem !important;
    }
    
    .search-submit-btn i {
        font-size: 1.1rem !important;
    }
    
    /* Sugestões - compactas e elegantes */
    .search-suggestions {
        padding: 0.875rem 0 0 0 !important;
        border-top: none !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }
    
    .suggestions-label {
        font-size: 0.75rem !important;
        color: #888 !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    .suggestions-tags {
        justify-content: center !important;
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
    }
    
    /* Tags de sugestão - estilo pill minimalista */
    .tag {
        background: rgba(255, 149, 0, 0.1) !important;
        border: 1px solid rgba(255, 149, 0, 0.2) !important;
        color: #FF9500 !important;
        padding: 0.4rem 0.875rem !important;
        border-radius: 20px !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        transition: all 0.2s ease !important;
    }
    
    .tag:hover,
    .tag:active {
        background: #FF9500 !important;
        color: white !important;
        border-color: #FF9500 !important;
    }
}

/* === BUSCA AINDA MAIS COMPACTA - TELAS PEQUENAS === */
@media screen and (max-width: 480px) {
    
    .home__container {
        padding-bottom: 2.5rem !important;
    }
    
    .search-container {
        padding: 0.875rem !important;
        border-radius: 14px !important;
    }
    
    .search-input {
        font-size: 0.9rem !important;
    }
    
    .search-submit-btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }
    
    .suggestions-label {
        font-size: 0.7rem !important;
    }
    
    .tag {
        padding: 0.35rem 0.75rem !important;
        font-size: 0.75rem !important;
    }
}







































.category__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category__card:hover .category__content {
    transform: translateY(0);
}

.category__icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.category__card:hover .category__icon {
    background: #fff;
    transform: scale(1.1);
}

.category__icon i {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.4s ease;
}

.category__card:hover .category__icon i {
    color: var(--first-color);
}

.category__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category__description {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 400;
}

/* Categories Responsive */
@media screen and (max-width: 992px) {
    .categories__grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.25rem;
    }
    
    .categories__title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .categories {
        padding: 4rem 0 3rem;
    }
    
    .categories__header {
        margin-bottom: 2.5rem;
    }
    
    .categories__subtitle::before,
    .categories__subtitle::after {
        display: none;
    }
    
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category__card {
        aspect-ratio: 3/4;
    }
    
    .category__icon {
        width: 42px;
        height: 42px;
    }
    
    .category__icon i {
        font-size: 1.25rem;
    }
    
    .category__name {
        font-size: 0.95rem;
    }
    
    .category__description {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .categories__title {
        font-size: 1.5rem;
    }
    
    .categories__grid {
        gap: 0.75rem;
    }
    
    .category__content {
        padding: 1rem 0.75rem;
    }
    
    .category__icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .category__icon i {
        font-size: 1rem;
    }
    
    .category__name {
        font-size: 0.85rem;
    }
    
    .category__description {
        font-size: 0.65rem;
        display: none;
    }
}

/*=============== MONTHS FILTER SECTION ===============*/
.months-filter {
    padding: 5rem 0;
    background: #fff;
}

.months-filter__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.months-filter__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.months-filter__subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--first-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.months-filter__title {
    font-size: 2.2rem;
    color: var(--title-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.months-filter__description {
    font-size: 1rem;
    color: var(--text-color-light);
    max-width: 500px;
    margin: 0 auto;
}

.months-filter__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Month Filter Card */
.month-filter__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fafafa;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.month-filter__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.month-filter__card:hover {
    background: #fff;
    border-color: var(--first-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 149, 0, 0.15);
}

.month-filter__card:hover::before {
    left: 100%;
}

.month-filter__icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.month-filter__card:hover .month-filter__icon {
    background: var(--first-color);
    transform: scale(1.05);
}

.month-filter__icon i {
    font-size: 1.3rem;
    color: var(--first-color);
    transition: color 0.3s ease;
}

.month-filter__card:hover .month-filter__icon i {
    color: #fff;
}

.month-filter__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.month-filter__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 0.15rem;
}

.month-filter__season {
    font-size: 0.75rem;
    color: var(--text-color-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.month-filter__arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.month-filter__arrow i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.month-filter__card:hover .month-filter__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Season Colors */
.month-filter__card[data-season="summer"] .month-filter__icon {
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.15), rgba(255, 149, 0, 0.1));
}

.month-filter__card[data-season="summer"]:hover .month-filter__icon {
    background: linear-gradient(135deg, #FFB74D, #FF9500);
}

.month-filter__card[data-season="autumn"] .month-filter__icon {
    background: linear-gradient(135deg, rgba(255, 138, 101, 0.15), rgba(230, 81, 0, 0.1));
}

.month-filter__card[data-season="autumn"]:hover .month-filter__icon {
    background: linear-gradient(135deg, #FF8A65, #E65100);
}

.month-filter__card[data-season="winter"] .month-filter__icon {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.15), rgba(25, 118, 210, 0.1));
}

.month-filter__card[data-season="winter"]:hover .month-filter__icon {
    background: linear-gradient(135deg, #64B5F6, #1976D2);
}

.month-filter__card[data-season="spring"] .month-filter__icon {
    background: linear-gradient(135deg, rgba(129, 199, 132, 0.15), rgba(56, 142, 60, 0.1));
}

.month-filter__card[data-season="spring"]:hover .month-filter__icon {
    background: linear-gradient(135deg, #81C784, #388E3C);
}

/* Months Filter Responsive */
@media screen and (max-width: 992px) {
    .months-filter__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .months-filter__title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .months-filter {
        padding: 4rem 0;
    }
    
    .months-filter__header {
        margin-bottom: 2.5rem;
    }
    
    .months-filter__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .month-filter__card {
        padding: 0.875rem 1rem;
    }
    
    .month-filter__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .month-filter__icon i {
        font-size: 1.1rem;
    }
    
    .month-filter__name {
        font-size: 0.9rem;
    }
    
    .month-filter__season {
        font-size: 0.7rem;
    }
    
    .month-filter__arrow {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .months-filter__title {
        font-size: 1.5rem;
    }
    
    .months-filter__description {
        font-size: 0.9rem;
    }
    
    .months-filter__grid {
        gap: 0.75rem;
    }
    
    .month-filter__card {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .month-filter__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
    }
    
    .month-filter__icon i {
        font-size: 1rem;
    }
    
    .month-filter__name {
        font-size: 0.85rem;
    }
    
    .month-filter__season {
        font-size: 0.65rem;
    }
}

/*=============== SEARCH SECTION ===============*/
.search-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.search-section__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.search-section__wrapper {
    position: relative;
    z-index: 2;
}

.search-section__content {
    text-align: center;
}

.search-section__header {
    margin-bottom: 2.5rem;
}

.search-section__subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--first-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.search-section__title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.search-section__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search Form */
.search-section__form {
    margin-bottom: 2rem;
}

.search-section__input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.search-section__input-wrapper:focus-within,
.search-section__input-wrapper.focused {
    box-shadow: 0 25px 80px rgba(255, 149, 0, 0.25);
    transform: translateY(-2px);
}

.search-section__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem 0 1.25rem;
}

.search-section__icon i {
    font-size: 1.4rem;
    color: #999;
    transition: color 0.3s ease;
}

.search-section__input-wrapper:focus-within .search-section__icon i {
    color: var(--first-color);
}

.search-section__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem 0.5rem;
    font-size: 1.05rem;
    color: #333;
    outline: none;
}

.search-section__input::placeholder {
    color: #999;
}

.search-section__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.search-section__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.4);
}

.search-section__btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.search-section__btn:hover i {
    transform: translateX(3px);
}

/* Search Tags */
.search-section__tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.search-section__tags-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.search-section__tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.search-section__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-section__tag:hover {
    background: var(--first-color);
    border-color: var(--first-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 149, 0, 0.3);
}

.search-section__tag i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.search-section__tag:hover i {
    opacity: 1;
}

/* Decoration Circles */
.search-section__decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.search-section__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.search-section__circle--1 {
    width: 500px;
    height: 500px;
    background: var(--first-color);
    top: -200px;
    right: -100px;
}

.search-section__circle--2 {
    width: 300px;
    height: 300px;
    background: var(--first-color);
    bottom: -100px;
    left: -50px;
}

.search-section__circle--3 {
    width: 200px;
    height: 200px;
    background: #fff;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

/* Search Section Responsive */
@media screen and (max-width: 768px) {
    .search-section {
        padding: 4rem 0 5rem;
    }
    
    .search-section__title {
        font-size: 2rem;
    }
    
    .search-section__description {
        font-size: 1rem;
    }
    
    .search-section__input-wrapper {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .search-section__icon {
        display: none;
    }
    
    .search-section__input {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .search-section__btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .search-section__title {
        font-size: 1.6rem;
    }
    
    .search-section__description {
        font-size: 0.9rem;
    }
    
    .search-section__input {
        font-size: 0.95rem;
    }
    
    .search-section__btn {
        font-size: 0.95rem;
    }
    
    .search-section__tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .search-section__tags-list {
        gap: 0.5rem;
    }
}

/*=============== HIDE OLD ACTIVITIES SECTION ===============*/
.activities {
    display: none !important;
}

/*=============== FIX HOME CONTAINER FOR BANNER ONLY ===============*/
.home--banner-only .home__container {
    display: none;
}


/*=============== CATEGORIES SECTION - FILTRO POR CATEGORIA ===============*/
.categories {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.categories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.categories__header {
    text-align: center;
    margin-bottom: 3rem;
}

.categories__subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FF9500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.categories__title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0;
    font-weight: 700;
}

/* Slider das Categorias */
.categories__slider {
    overflow: hidden;
    padding: 10px 0;
}

.categories__slider .swiper-wrapper {
    padding-bottom: 5px;
}

/* Card da Categoria no Slider */
.categories__slider .category__card {
    width: 280px !important;
    min-width: 280px;
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4/5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex-shrink: 0;
}

.categories__slider .category__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Grid das Categorias - mantido para compatibilidade */
.categories__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

/* Card da Categoria */
.category__card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4/5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Wrapper da Imagem */
.category__img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Imagem */
.category__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category__card:hover .category__img {
    transform: scale(1.1);
}

/* Overlay Gradiente */
.category__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: background 0.4s ease;
}

.category__card:hover .category__overlay {
    background: linear-gradient(
        180deg,
        rgba(255, 149, 0, 0) 0%,
        rgba(255, 149, 0, 0.1) 40%,
        rgba(255, 149, 0, 0.85) 100%
    );
}

/* Conteúdo do Card */
.category__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

/* Ícone */
.category__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.category__card:hover .category__icon {
    background: #ffffff;
    transform: scale(1.1);
    border-color: transparent;
}

.category__icon i {
    font-size: 1.25rem;
    color: #ffffff;
    transition: color 0.4s ease;
}

.category__card:hover .category__icon i {
    color: #FF9500;
}

/* Nome da Categoria */
.category__name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Descrição */
.category__description {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.3;
}

/*=============== RESPONSIVIDADE - CATEGORIES ===============*/

/* Tablets grandes */
@media screen and (max-width: 1024px) {
    .categories__slider .category__card {
        width: 280px !important;
        min-width: 280px;
    }
    
    .categories__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .category__card {
        aspect-ratio: 4/5;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .categories {
        padding: 4rem 0 3rem;
    }
    
    .categories__header {
        margin-bottom: 2rem;
    }
    
    .categories__subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .categories__title {
        font-size: 1.6rem;
    }
    
    .categories__slider .category__card {
        width: 240px !important;
        min-width: 240px;
    }
    
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category__card {
        aspect-ratio: 4/5;
        border-radius: 14px;
    }
    
    .category__content {
        padding: 1rem 0.75rem;
    }
    
    .category__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .category__icon i {
        font-size: 1.1rem;
    }
    
    .category__name {
        font-size: 0.9rem;
    }
    
    .category__description {
        font-size: 0.65rem;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .categories {
        padding: 3rem 0 2.5rem;
    }
    
    .categories__container {
        padding: 0 1rem;
    }
    
    .categories__title {
        font-size: 1.4rem;
    }
    
    .categories__slider .category__card {
        width: 220px !important;
        min-width: 220px;
    }
    
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .category__card {
        aspect-ratio: 4/5;
        border-radius: 12px;
    }
    
    .category__content {
        padding: 0.875rem 0.5rem;
    }
    
    .category__icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.4rem;
    }
    
    .category__icon i {
        font-size: 1rem;
    }
    
    .category__name {
        font-size: 0.8rem;
        letter-spacing: 0;
    }
    
    .category__description {
        display: none;
    }
}

/* Mobile muito pequeno */
@media screen and (max-width: 360px) {
    .categories__slider .category__card {
        width: 180px !important;
        min-width: 180px;
    }
    
    .categories__grid {
        gap: 0.5rem;
    }
    
    .category__card {
        border-radius: 10px;
    }
    
    .category__content {
        padding: 0.75rem 0.4rem;
    }
    
    .category__icon {
        width: 32px;
        height: 32px;
    }
    
    .category__icon i {
        font-size: 0.9rem;
    }
    
    .category__name {
        font-size: 0.75rem;
    }
}


/*=============== CORREÇÃO - HOME BANNER ONLY ===============*/
/* Substitua os estilos existentes da home--banner-only por estes */

/* Hero Section - Apenas Banner */
.home--banner-only {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

/* Primeira seção (home) deve começar do topo absoluto */
.main > .home:first-child,
.main > section:first-child.home {
    margin-top: 0;
    padding-top: 0;
}

/* Reset específico para banner-only - sobrescreve qualquer padding de .section */
.home.home--banner-only {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Imagem do Banner */
.home--banner-only .home__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay sutil */
.home--banner-only .home__overlay--subtle {
    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(0, 0, 0, 0.25) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Esconder container interno da home quando só tem banner */
.home--banner-only .home__container {
    display: none !important;
}

/* IMPORTANTE: Garantir que a seção categories venha DEPOIS da hero */
.categories {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Garantir que about também tenha z-index correto */
.about.section {
    position: relative;
    z-index: 10;
    background: #fff;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .home--banner-only {
        height: 75vh;
        min-height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .home--banner-only {
        height: 65vh;
        min-height: 350px;
    }
}

/*=============== IMAGEM DESKTOP/MOBILE - HERO ===============*/
/* Garantir que funcione corretamente */
.home--banner-only .home__img--desktop {
    display: block;
}

.home--banner-only .home__img--mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .home--banner-only .home__img--desktop {
        display: none !important;
    }
    
    .home--banner-only .home__img--mobile {
        display: block !important;
    }
}

/*=============== SEARCH SECTION - ULTRA PREMIUM DESIGN ===============*/

.search-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #f8f8f8;
}

/* Container */
.search-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Wrapper principal */
.search-section__wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.15),
        0 30px 60px -30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    min-height: 650px;
}

/*=============== LADO VISUAL (ESQUERDO) ===============*/
.search-section__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Imagem de fundo */
.search-section__visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('assets/img/search-bg.jpg') center/cover no-repeat;
    transition: transform 8s ease;
}

.search-section__wrapper:hover .search-section__visual-bg {
    transform: scale(1.05);
}

/* Overlay com gradiente premium */
.search-section__visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            135deg,
            rgba(255, 149, 0, 0.92) 0%,
            rgba(255, 120, 0, 0.88) 30%,
            rgba(230, 100, 0, 0.9) 70%,
            rgba(200, 80, 0, 0.95) 100%
        );
}

/* Padrão de textura sobre o overlay */
.search-section__visual-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* Conteúdo visual */
.search-section__visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem;
    color: #fff;
    max-width: 480px;
}

/* Logo/Ícone principal */
.search-section__visual-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
}

.search-section__visual-logo-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ring-rotate 20s linear infinite;
}

.search-section__visual-logo-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.search-section__visual-logo-ring:nth-child(2) {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    animation-direction: reverse;
    animation-duration: 15s;
    border-style: dashed;
    opacity: 0.5;
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.search-section__visual-logo-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-section__visual-logo-icon i {
    font-size: 2rem;
    color: #fff;
}

/* Título visual */
.search-section__visual-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.search-section__visual-title span {
    display: block;
    font-weight: 400;
    font-size: 1.5rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.search-section__visual-text {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Estatísticas em cards */
.search-section__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.search-section__stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.25rem 0.75rem;
    transition: all 0.3s ease;
}

.search-section__stat:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
}

.search-section__stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.search-section__stat-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.search-section__stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.search-section__stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Decorações do visual */
.search-section__visual-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.search-section__visual-decor--1 {
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.search-section__visual-decor--2 {
    bottom: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    animation: float 8s ease-in-out infinite reverse;
}

.search-section__visual-decor--3 {
    top: 50%;
    left: 5%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulse-dot 3s ease-in-out infinite;
}

.search-section__visual-decor--4 {
    bottom: 30%;
    right: 15%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulse-dot 4s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

/*=============== LADO DO FORMULÁRIO (DIREITO) ===============*/
.search-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

/* Decoração de fundo */
.search-section__content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.search-section__content-inner {
    position: relative;
    z-index: 2;
}

/* Badge superior */
.search-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #FF9500, #FF7800);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.75rem;
    box-shadow: 
        0 4px 15px rgba(255, 149, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.search-section__badge i {
    font-size: 0.9rem;
}

/* Header */
.search-section__header {
    margin-bottom: 2rem;
}

.search-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.875rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.search-section__title-highlight {
    background: linear-gradient(135deg, #FF9500, #E6860D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-section__subtitle {
    font-size: 1rem;
    color: #777;
    line-height: 1.7;
}

/* Formulário */
.search-section__form {
    margin-bottom: 2rem;
}

.search-section__input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Campo de input premium */
.search-section__input-wrapper {
    position: relative;
}

.search-section__input {
    width: 100%;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 1.35rem 1.5rem 1.35rem 3.75rem;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.02),
        inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.search-section__input::placeholder {
    color: #aaa;
}

.search-section__input:hover {
    border-color: #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.search-section__input:focus {
    border-color: #FF9500;
    box-shadow: 
        0 0 0 4px rgba(255, 149, 0, 0.1),
        0 10px 40px rgba(255, 149, 0, 0.08);
}

.search-section__input-icon {
    position: absolute;
    left: 1.35rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.35rem;
    color: #ccc;
    transition: all 0.3s ease;
    z-index: 2;
}

.search-section__input:focus ~ .search-section__input-icon,
.search-section__input-wrapper:focus-within .search-section__input-icon {
    color: #FF9500;
    transform: translateY(-50%) scale(1.1);
}

/* Botão premium */
.search-section__btn {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border: none;
    padding: 1.35rem 2rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search-section__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF9500 0%, #FF7800 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.search-section__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.search-section__btn:hover::before {
    opacity: 1;
}

.search-section__btn:hover::after {
    left: 100%;
}

.search-section__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 149, 0, 0.35);
}

.search-section__btn span,
.search-section__btn i {
    position: relative;
    z-index: 1;
}

.search-section__btn i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.search-section__btn:hover i {
    transform: translateX(5px);
}

/* Divisor */
.search-section__divider {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 2rem 0;
}

.search-section__divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.search-section__divider-text {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Tags de destinos */
.search-section__tags {
    margin-bottom: 2rem;
}

.search-section__tags-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.search-section__tags-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-section__tags-icon i {
    font-size: 0.9rem;
    color: #FF9500;
}

.search-section__tags-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.search-section__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.search-section__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 12px;
    color: #555;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.search-section__tag::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #FF9500, #FF7800);
    transition: height 0.3s ease;
    z-index: 0;
}

.search-section__tag i,
.search-section__tag span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.search-section__tag i {
    font-size: 0.9rem;
    color: #FF9500;
}

.search-section__tag:hover {
    border-color: #FF9500;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.2);
}

.search-section__tag:hover::before {
    height: 100%;
}

.search-section__tag:hover i,
.search-section__tag:hover span {
    color: #fff;
}

/* Features/Trust badges */
.search-section__trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.search-section__trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.search-section__trust-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-section__trust-item:hover .search-section__trust-icon {
    background: linear-gradient(135deg, #FF9500, #FF7800);
}

.search-section__trust-icon i {
    font-size: 1rem;
    color: #FF9500;
    transition: color 0.3s ease;
}

.search-section__trust-item:hover .search-section__trust-icon i {
    color: #fff;
}

.search-section__trust-text {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/*=============== RESPONSIVIDADE ===============*/

@media screen and (max-width: 1200px) {
    .search-section__container {
        padding: 4rem 1.5rem;
    }
    
    .search-section__wrapper {
        grid-template-columns: 1fr 1fr;
        min-height: 600px;
    }
    
    .search-section__visual-content {
        padding: 2.5rem;
    }
    
    .search-section__visual-title {
        font-size: 2.25rem;
    }
    
    .search-section__content {
        padding: 3rem;
    }
    
    .search-section__title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .search-section__container {
        padding: 3rem 1.5rem;
    }
    
    .search-section__wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 24px;
    }
    
    .search-section__visual {
        min-height: 400px;
        border-radius: 24px 24px 0 0;
    }
    
    .search-section__visual-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
    }
    
    .search-section__visual-logo-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .search-section__visual-logo-icon i {
        font-size: 1.75rem;
    }
    
    .search-section__visual-title {
        font-size: 2rem;
    }
    
    .search-section__visual-title span {
        font-size: 1.25rem;
    }
    
    .search-section__visual-text {
        font-size: 1rem;
    }
    
    .search-section__stats {
        gap: 0.75rem;
    }
    
    .search-section__stat {
        padding: 1rem 0.5rem;
    }
    
    .search-section__stat-number {
        font-size: 1.5rem;
    }
    
    .search-section__content {
        padding: 2.5rem;
    }
    
    .search-section__title {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .search-section__container {
        padding: 2rem 1rem;
    }
    
    .search-section__wrapper {
        border-radius: 20px;
    }
    
    .search-section__visual {
        min-height: 350px;
        border-radius: 20px 20px 0 0;
    }
    
    .search-section__visual-content {
        padding: 2rem 1.5rem;
    }
    
    .search-section__visual-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .search-section__visual-logo-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .search-section__visual-logo-icon i {
        font-size: 1.5rem;
    }
    
    .search-section__visual-title {
        font-size: 1.65rem;
    }
    
    .search-section__visual-title span {
        font-size: 1.1rem;
    }
    
    .search-section__visual-text {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .search-section__stat-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }
    
    .search-section__stat-icon i {
        font-size: 1rem;
    }
    
    .search-section__stat-number {
        font-size: 1.35rem;
    }
    
    .search-section__stat-label {
        font-size: 0.65rem;
    }
    
    .search-section__content {
        padding: 2rem 1.5rem;
    }
    
    .search-section__badge {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }
    
    .search-section__title {
        font-size: 1.5rem;
    }
    
    .search-section__subtitle {
        font-size: 0.9rem;
    }
    
    .search-section__input {
        padding: 1.15rem 1.25rem 1.15rem 3.25rem;
        font-size: 0.95rem;
        border-radius: 14px;
    }
    
    .search-section__input-icon {
        font-size: 1.2rem;
        left: 1.15rem;
    }
    
    .search-section__btn {
        padding: 1.15rem 1.5rem;
        border-radius: 14px;
        font-size: 0.95rem;
    }
    
    .search-section__trust {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .search-section {
        background: #f5f5f5;
    }
    
    .search-section__container {
        padding: 1.5rem 1rem;
    }
    
    .search-section__wrapper {
        border-radius: 16px;
        box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.15);
    }
    
    .search-section__visual {
        min-height: 280px;
        border-radius: 16px 16px 0 0;
    }
    
    .search-section__visual-content {
        padding: 1.5rem 1rem;
    }
    
    .search-section__visual-logo {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .search-section__visual-logo-ring {
        display: none;
    }
    
    .search-section__visual-logo-icon {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 16px;
    }
    
    .search-section__visual-logo-icon i {
        font-size: 1.5rem;
    }
    
    .search-section__visual-title {
        font-size: 1.35rem;
    }
    
    .search-section__visual-title span {
        font-size: 0.95rem;
        margin-top: 0.25rem;
    }
    
    .search-section__visual-text {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .search-section__stats {
        gap: 0.5rem;
    }
    
    .search-section__stat {
        padding: 0.75rem 0.4rem;
        border-radius: 12px;
    }
    
    .search-section__stat-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        margin-bottom: 0.4rem;
    }
    
    .search-section__stat-icon i {
        font-size: 0.85rem;
    }
    
    .search-section__stat-number {
        font-size: 1.15rem;
    }
    
    .search-section__stat-label {
        font-size: 0.6rem;
    }
    
    .search-section__visual-decor {
        display: none;
    }
    
    .search-section__content {
        padding: 1.5rem 1.25rem 2rem;
    }
    
    .search-section__badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .search-section__header {
        margin-bottom: 1.5rem;
    }
    
    .search-section__title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .search-section__subtitle {
        font-size: 0.85rem;
    }
    
    .search-section__input-group {
        gap: 0.75rem;
    }
    
    .search-section__input {
        padding: 1rem 1rem 1rem 2.75rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .search-section__input-icon {
        font-size: 1.1rem;
        left: 1rem;
    }
    
    .search-section__btn {
        padding: 1rem;
        border-radius: 12px;
        font-size: 0.9rem;
    }
    
    .search-section__divider {
        margin: 1.5rem 0;
    }
    
    .search-section__divider-text {
        font-size: 0.7rem;
    }
    
    .search-section__tags-header {
        margin-bottom: 0.75rem;
    }
    
    .search-section__tags-icon {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }
    
    .search-section__tags-icon i {
        font-size: 0.75rem;
    }
    
    .search-section__tags-title {
        font-size: 0.8rem;
    }
    
    .search-section__tags-list {
        gap: 0.5rem;
    }
    
    .search-section__tag {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    
    .search-section__tag i {
        font-size: 0.8rem;
    }
    
    .search-section__trust {
        padding-top: 1.5rem;
        gap: 0.75rem;
    }
    
    .search-section__trust-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }
    
    .search-section__trust-icon i {
        font-size: 0.85rem;
    }
    
    .search-section__trust-text {
        font-size: 0.7rem;
    }
}


/*=============== MONTHS FILTER SECTION - ULTRA PREMIUM ===============*/

.months-filter {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    overflow: hidden;
}

/* Decoração de fundo */
.months-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(255, 149, 0, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(255, 149, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.months-filter__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ========== HEADER DA SEÇÃO ========== */
.months-filter__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.months-filter__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E0 100%);
    border: 1px solid rgba(255, 149, 0, 0.15);
    color: #FF9500;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.months-filter__badge i {
    font-size: 0.9rem;
}

.months-filter__title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.months-filter__title-highlight {
    background: linear-gradient(135deg, #FF9500, #E6860D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.months-filter__description {
    font-size: 1.1rem;
    color: #777;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== FILTRO DE ESTAÇÕES ========== */
.months-filter__seasons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.months-filter__season-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.months-filter__season-btn i {
    font-size: 1.1rem;
}

.months-filter__season-btn:hover {
    border-color: #ddd;
    background: #fafafa;
}

.months-filter__season-btn.active,
.months-filter__season-btn:focus {
    border-color: #FF9500;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E0 100%);
    color: #FF9500;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.15);
}

/* Cores por estação */
.months-filter__season-btn[data-season="summer"] i { color: #FF9500; }
.months-filter__season-btn[data-season="autumn"] i { color: #E65100; }
.months-filter__season-btn[data-season="winter"] i { color: #1976D2; }
.months-filter__season-btn[data-season="spring"] i { color: #388E3C; }

/* ========== GRID DOS MESES ========== */
.months-filter__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ========== CARD DO MÊS - DESIGN PREMIUM ========== */
.month-filter__card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.month-filter__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--season-color, #FF9500), var(--season-color-light, #FFB74D));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.month-filter__card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 149, 0, 0.1);
}

.month-filter__card:hover::before {
    transform: scaleX(1);
}

/* Header do card */
.month-filter__card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

/* Ícone do mês */
.month-filter__icon-wrapper {
    position: relative;
}

.month-filter__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--season-bg, #FFF8F0) 0%, var(--season-bg-alt, #FFF0E0) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.month-filter__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--season-color, #FF9500), var(--season-color-light, #FFB74D));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.month-filter__card:hover .month-filter__icon {
    transform: scale(1.05) rotate(-5deg);
}

.month-filter__card:hover .month-filter__icon::before {
    opacity: 1;
}

.month-filter__icon i {
    font-size: 1.5rem;
    color: var(--season-color, #FF9500);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.month-filter__card:hover .month-filter__icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Badge da estação */
.month-filter__season-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.month-filter__season-badge i {
    font-size: 0.7rem;
}

.month-filter__card:hover .month-filter__season-badge {
    background: var(--season-bg, #FFF8F0);
    color: var(--season-color, #FF9500);
}

/* Conteúdo do card */
.month-filter__content {
    flex: 1;
}

.month-filter__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.month-filter__card:hover .month-filter__name {
    color: var(--season-color, #FF9500);
}

.month-filter__temp {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #999;
}

.month-filter__temp i {
    font-size: 0.85rem;
    color: #ccc;
}

/* Footer do card */
.month-filter__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f5f5f5;
}

.month-filter__activities {
    display: flex;
    gap: 0.4rem;
}

.month-filter__activity-icon {
    width: 28px;
    height: 28px;
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.month-filter__activity-icon i {
    font-size: 0.8rem;
    color: #bbb;
    transition: color 0.3s ease;
}

.month-filter__card:hover .month-filter__activity-icon {
    background: var(--season-bg, #FFF8F0);
}

.month-filter__card:hover .month-filter__activity-icon i {
    color: var(--season-color, #FF9500);
}

.month-filter__arrow {
    width: 36px;
    height: 36px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.month-filter__arrow i {
    font-size: 1rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.month-filter__card:hover .month-filter__arrow {
    background: var(--season-color, #FF9500);
    transform: translateX(5px);
}

.month-filter__card:hover .month-filter__arrow i {
    color: #fff;
}

/* ========== VARIÁVEIS POR ESTAÇÃO ========== */

/* Verão */
.month-filter__card[data-season="summer"] {
    --season-color: #FF9500;
    --season-color-light: #FFB74D;
    --season-bg: #FFF8F0;
    --season-bg-alt: #FFF0E0;
}

/* Outono */
.month-filter__card[data-season="autumn"] {
    --season-color: #E65100;
    --season-color-light: #FF8A65;
    --season-bg: #FFF3E0;
    --season-bg-alt: #FFE0B2;
}

/* Inverno */
.month-filter__card[data-season="winter"] {
    --season-color: #1976D2;
    --season-color-light: #64B5F6;
    --season-bg: #E3F2FD;
    --season-bg-alt: #BBDEFB;
}

/* Primavera */
.month-filter__card[data-season="spring"] {
    --season-color: #388E3C;
    --season-color-light: #81C784;
    --season-bg: #E8F5E9;
    --season-bg-alt: #C8E6C9;
}

/* ========== CALL TO ACTION ========== */
.months-filter__cta {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.months-filter__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.months-filter__cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF9500, #E6860D);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.months-filter__cta-btn:hover::before {
    opacity: 1;
}

.months-filter__cta-btn span,
.months-filter__cta-btn i {
    position: relative;
    z-index: 1;
}

.months-filter__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 149, 0, 0.3);
}

.months-filter__cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.months-filter__cta-btn:hover i {
    transform: translateX(5px);
}

/* ========== ELEMENTOS DECORATIVOS ========== */
.months-filter__decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.months-filter__decor--1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 149, 0, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.months-filter__decor--2 {
    bottom: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    border: 1px dashed rgba(255, 149, 0, 0.08);
    border-radius: 24px;
    animation: float 10s ease-in-out infinite reverse;
}

.months-filter__decor--3 {
    top: 40%;
    right: 3%;
    width: 10px;
    height: 10px;
    background: rgba(255, 149, 0, 0.2);
    border-radius: 50%;
    animation: pulse-dot 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* ========== RESPONSIVIDADE ========== */

@media screen and (max-width: 1200px) {
    .months-filter__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .months-filter {
        padding: 5rem 0;
    }
    
    .months-filter__container {
        padding: 0 1.5rem;
    }
    
    .months-filter__title {
        font-size: 2.25rem;
    }
    
    .months-filter__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .month-filter__card {
        padding: 1.5rem 1.25rem;
    }
    
    .month-filter__icon {
        width: 50px;
        height: 50px;
    }
    
    .month-filter__name {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .months-filter {
        padding: 4rem 0;
    }
    
    .months-filter__header {
        margin-bottom: 3rem;
    }
    
    .months-filter__title {
        font-size: 1.85rem;
    }
    
    .months-filter__description {
        font-size: 1rem;
    }
    
    .months-filter__seasons {
        margin-bottom: 2rem;
        gap: 0.5rem;
    }
    
    .months-filter__season-btn {
        padding: 0.6rem 1.15rem;
        font-size: 0.8rem;
    }
    
    .months-filter__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .month-filter__card {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }
    
    .month-filter__card-header {
        margin-bottom: 1rem;
    }
    
    .month-filter__icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }
    
    .month-filter__icon i {
        font-size: 1.25rem;
    }
    
    .month-filter__season-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }
    
    .month-filter__name {
        font-size: 1.1rem;
    }
    
    .month-filter__temp {
        font-size: 0.85rem;
    }
    
    .month-filter__card-footer {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .month-filter__activity-icon {
        width: 26px;
        height: 26px;
    }
    
    .month-filter__arrow {
        width: 32px;
        height: 32px;
    }
    
    .months-filter__cta {
        margin-top: 2.5rem;
    }
    
    .months-filter__cta-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .months-filter {
        padding: 3rem 0;
    }
    
    .months-filter__container {
        padding: 0 1rem;
    }
    
    .months-filter__badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    
    .months-filter__title {
        font-size: 1.5rem;
    }
    
    .months-filter__description {
        font-size: 0.9rem;
    }
    
    .months-filter__seasons {
        gap: 0.4rem;
    }
    
    .months-filter__season-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
        border-radius: 30px;
    }
    
    .months-filter__season-btn span {
        display: none;
    }
    
    .months-filter__season-btn i {
        font-size: 1rem;
    }
    
    .months-filter__grid {
        gap: 0.75rem;
    }
    
    .month-filter__card {
        padding: 1rem 0.875rem;
        border-radius: 14px;
    }
    
    .month-filter__card::before {
        height: 3px;
    }
    
    .month-filter__card-header {
        margin-bottom: 0.75rem;
    }
    
    .month-filter__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .month-filter__icon i {
        font-size: 1.1rem;
    }
    
    .month-filter__season-badge {
        display: none;
    }
    
    .month-filter__name {
        font-size: 1rem;
    }
    
    .month-filter__temp {
        font-size: 0.8rem;
    }
    
    .month-filter__card-footer {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .month-filter__activities {
        display: none;
    }
    
    .month-filter__arrow {
        width: 28px;
        height: 28px;
    }
    
    .month-filter__arrow i {
        font-size: 0.9rem;
    }
    
    .months-filter__cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .months-filter__decor {
        display: none;
    }
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/*=============== CATEGORIES SWIPER ===============*/
.categories__swiper {
    overflow: visible;
    padding: 0 1rem;
    margin: 0 -1rem;
}

.categories__swiper .swiper-wrapper {
    padding: 1rem 0;
}

.categories__swiper .category__card {
    width: 280px !important;
    height: auto;
    aspect-ratio: 4/5;
    flex-shrink: 0;
}

.categories__swiper .category__card.swiper-slide {
    width: 280px !important;
}

/* Responsividade do Swiper de Categorias */
@media screen and (max-width: 768px) {
    .categories__swiper {
        padding: 0 0.5rem;
        margin: 0 -0.5rem;
    }
    
    .categories__swiper .category__card,
    .categories__swiper .category__card.swiper-slide {
        width: 220px !important;
    }
}

@media screen and (max-width: 480px) {
    .categories__swiper .category__card,
    .categories__swiper .category__card.swiper-slide {
        width: 200px !important;
    }
    
    .categories__swiper .swiper-wrapper {
        padding: 0.75rem 0;
    }
}

/* Estilos específicos para a frase principal e autor */
.about__title--main {
  color: #999999 !important; /* Cinza para a frase principal */
}

.about__author {
  color: #333333; /* Cor mais escura para o nome */
  font-weight: 600; /* Deixa o nome mais destacado */
  margin-bottom: var(--mb-2);
}