/* ====== ESTILOS GERAIS ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat Alternates', sans-serif;
  color: #2D2B2A;
  line-height: 1.6;
  background-color: #fff;
}

body, body * {
  font-family: 'Montserrat Alternates', sans-serif;
}

/* === TOPO === */
.top-bar {
  position: relative;
  z-index: 1100;
}


.top-bar-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  padding: 6px;
}

/* Botão redondo (idioma, etc.) */
.round-btn {
  font-family: 'Montserrat Alternates', sans-serif;
  background: none;
  border: none;
  padding: 5px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

/* Painel superior (dropdown de idiomas, etc.) */
.top-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  transition: all 0.3s ease;
}

.top-panel.hidden {
  display: none;
}

.panel-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* Bandeiras */
.flags button {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 16px;
  color: #2D2B2A;
  background: none;
  border: none;
  margin: 0 10px;
  cursor: pointer;
}

.flags img {
  width: 24px;
  height: auto;
  transition: transform 0.2s;
}

/* Ícone da bandeira atual */
.flag-icon {
  width: 24px;
  height: auto;
}

/* ====== NAVBAR ====== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  position: relative;
  z-index: 1000;
  width: 1420px;
  max-width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
}

.logo img {
  height: 45px;
}

.main-nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s;
  margin: 0 12px;
}

.main-nav a:hover {
  color: #FF8100;
}

/* ====== SEARCH BUTTON ====== */
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}

.search-btn:hover {
  color: #FF8100;
}

/* ====== SEARCH BAR ====== */
.search-bar {
  position: absolute;
  top: calc(100% + 8px);
  right: 20px;
  width: 260px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  padding: 8px;
  z-index: 1200;
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.search-bar.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.search-bar form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-bar input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 14px;
}

.search-bar button[type="submit"] {
  background: #FF8100;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.search-bar button[type="submit"]:hover {
  background: #e56f00;
}


/* ====== HERO ====== */
#hero {
  height: 80vh;
  background: url('imagens/bg-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

/* ====== HERO TITLE & SUBTITLE ====== */
.hero-content h1 {
  font-size: 4rem; 
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-content .subtitulo {
  font-size: 1.6rem; 
  font-weight: 400;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content .subtitulo {
    font-size: 1.3rem;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content .subtitulo {
    font-size: 1.1rem;
  }
}

/* ====== FORMULÁRIO HERO ====== */
.form-hero {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: 25px auto 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  align-items: end;
}

.form-hero .campo {
  display: flex;
  flex-direction: column;
}

.form-hero label {
  font-size: 0.85rem;
  color: #2D2B2A;
  margin-bottom: 6px;
  font-weight: 600;
  text-align: left;
}

.form-hero select,
.form-hero input[type="date"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Montserrat Alternates', sans-serif;
}


.checkbox-campo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkbox-campo input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #FF8100;
  cursor: pointer;
}

.checkbox-campo label {
  margin: 0;
  color: #2D2B2A;
  font-size: 0.85rem;
  cursor: pointer;
}

.form-hero .btn-primario {
  height: 44px;
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #FF8100;
  border-radius: 6px;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .form-hero {
    grid-template-columns: repeat(4, 1fr); 
  }
}

@media (max-width: 800px) {
  .form-hero {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-hero .campo {
    align-items: stretch;
  }
}

@media (max-width: 500px) {
  .form-hero {
    grid-template-columns: 1fr;
  }
}


/* ====== DESTINOS ====== */
.section-destinos {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-destinos h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0b007d;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.destino-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.8s ease;
}

.destino-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.destino-card-content {
  padding: 20px;
}

.destino-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2D2B2A;
  text-align: left;
}

.destino-card-content p:first-of-type {
  text-align: left;
  margin-bottom: 4px;
}

.destino-preco {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ff8100;
  margin: 0;
}

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

.destino-btn {
  background: #ff8100;
  color: #fff;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background 0.3s;
  margin-top: 0;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {
  .section-destinos h2 {
    text-align: center;
    font-size: 1.6rem;
  }

  .destino-card img {
    height: 180px;
  }

  .destino-card h3 {
    font-size: 1.1rem;
  }
}

/* --- Slider Novo (namespaced) --- */
.hero-slider-novo {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  font-family: 'Montserrat Alternates', sans-serif;
}

/* slides */
.hero-slider-novo .slide-novo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.hero-slider-novo .slide-novo.active {
  opacity: 1;
  z-index: 3;
}

/* conteúdo */
.hero-slider-novo .content-novo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 4;
}
.hero-slider-novo h2 { font-size: 42px; color: #FF8100; margin-bottom: 8px; font-weight: 600;}
.hero-slider-novo p { font-size: 20px; }

/* setas */
.hero-slider-novo .arrow-novo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.0);
  color: #fff;
  border: none;
  padding: 10px 12px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider-novo .arrow-novo:hover { color: #FF8100; background: rgba(0,0,0,0.0); }
.hero-slider-novo .arrow-novo.left-novo { left: 16px; }
.hero-slider-novo .arrow-novo.right-novo { right: 16px; }

/* força IcoMoon nos ícones (caso haja override) */
.hero-slider-novo .arrow-novo i {
  font-family: 'IcoMoon' !important;
  font-size: 26px;
  line-height: 1;
  display: inline-block;
}

/* paginação */
.pagination-novo {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 12;
}
.pagination-novo button {
  width: 10px; height: 10px; border: none; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.6);
  transition: all .3s;
}
.pagination-novo button.active { background: #FF8100; width: 20px; border-radius: 10px; }



/* ====== FOOTER ====== */
.footer {
  background: #fff;
  color: #2D2B2A;
  font-family: 'Montserrat Alternates', sans-serif;
  padding: 60px 5% 0px;
  width: 100%;
}

.footer a {
  color: #2D2B2A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #FF8100;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: #FF8100;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

.footer-col p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  overflow: hidden;
  max-width: 400px;
}

.newsletter-form input[type="email"] {
  color: #2D2B2A;
  font-family: 'Montserrat Alternates', sans-serif;
  flex: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  background: #FF8100;
  color: #fff;
  border: none;
  padding: 0 16px;
  cursor: pointer;
}


.social {
  display: flex;
  gap: 10px;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:#2D2B2A;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 16px;
}

.social a:hover {
  color: #2D2B2A;
  background: #FF8100;
}

.footer-bottom {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 30px;
  padding: 20px 5%;
  background-color: #0b007d; 
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #FF8100;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 4px;
}

.footer-links a:not(:last-child)::after {
  content: "|";
  color: rgba(255, 255, 255, 0.6);
  margin-left: 8px;
}


.footer-copy {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}


/* ====== BARRA DE COOKIES ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2D2B2A;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 3000;
  font-size: 0.95rem;
  flex-wrap: wrap;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
}

.cookie-banner.oculto {
  display: none;
}


.cookie-banner .cookie-texto {
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: #FF8100;
  text-decoration: underline;
}

.cookie-banner button {
  background: #FF8100;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: 600;
  font-family: 'Montserrat Alternates';
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.cookie-banner button:hover {
  background: #e67100;
}

.cookie-banner.oculto {
  display: none;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner button {
    align-self: flex-end;
    margin-top: 10px;
  }
}
