/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

.hero-section {
  position: relative;
  height: 100vh;
  background-image: url('https://videos.openai.com/vg-assets/assets%2Ftask_01jvpg636xf6vbz2w2sqk484y7%2F1747733229_img_0.webp?st=2025-05-20T10%3A03%3A16Z&se=2025-05-26T11%3A03%3A16Z&sks=b&skt=2025-05-20T10%3A03%3A16Z&ske=2025-05-26T11%3A03%3A16Z&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skoid=3d249c53-07fa-4ba4-9b65-0bf8eb4ea46a&skv=2019-02-02&sv=2018-11-09&sr=b&sp=r&spr=https%2Chttp&sig=Rrq%2F6pOeFr93%2Bb7BSgdKG6FOP71WeMf%2BVkOZoTEf%2BZI%3D&az=oaivgprodscus');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.33);
  z-index: 1;
}

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

.hero-content h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  background-color: #FFBE0B;
  color: #000;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #f9c848;
}

/* ANIMAÇÃO FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TOURS EM DESTAQUE */
.tours-destaque {
  background-color: #F9F9F9;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.container-tours {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tours-destaque h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.tour-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 30px;
}

.tour-card:hover {
  transform: translateY(-6px);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-card h3 {
  font-size: 20px;
  margin: 20px 20px 10px;
  font-weight: 600;
}

.tour-card p {
  font-size: 15px;
  margin: 0 20px 20px;
  color: #555;
}

.tour-button {
  background-color: #3A86FF;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  width: fit-content;
  margin: 0 auto;
}

.tour-button:hover {
  background-color: #2b6dcf;
}

/* ANIMAÇÃO */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vantagens {
  background-color: #f9f9f9;
  padding: 100px 20px;
  text-align: center;
}

.container-vantagens {
  max-width: 1100px;
  margin: 0 auto;
}

.vantagens-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.vantagem-card {
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex: 1 1 280px;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.vantagem-card:hover {
  transform: translateY(-5px);
}

.vantagem-card img {
  width: 50px;
  margin-bottom: 20px;
}

.vantagem-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.vantagem-card p {
  font-size: 16px;
  color: #555;
}

.transfer-bloco {
  background-color: #ffffff;
  padding: 100px 20px;
}

.container-transfer {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.transfer-texto {
  flex: 1 1 450px;
}

.transfer-texto h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.transfer-texto p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.botao-transfer {
  background-color: #3A86FF;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.botao-transfer:hover {
  background-color: #265dc3;
}

.transfer-imagem {
  flex: 1 1 400px;
}

.transfer-imagem img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.reviews-bloco {
  background-color: #f9f9f9;
  padding: 100px 20px;
}

.container-reviews {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.container-reviews h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.reviews-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.review-card {
  background-color: white;
  flex: 0 0 300px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 30px;
  scroll-snap-align: center;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: scale(1.03);
}

.review-card p {
  font-size: 16px;
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.review-card span {
  font-weight: bold;
  color: #222;
}

/* Google Font moderna */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');


.button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.see-all-button {
  background-color: #3A86FF;
  color: white;
  padding: 12px 50px; /* Aumentamos o padding horizontal para deixá-lo mais longo e mais fino */
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px; /* Aumentando o arredondamento das bordas para o tornar mais elegante */
  transition: background-color 0.3s ease;
  width: auto; /* Largura automática para deixar o botão mais estreito */
  max-width: 500px; /* Máxima largura do botão */
  text-align: center;
}

.see-all-button:hover {
  background-color: #265dcf;
}

/* Estilos gerais */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F5F5F5;
}

/* Header da página */
.tours-header {
  background-color: #F5F5F5;
  background-image: url('https://dynamic-media.tacdn.com/media/photo-o/2f/04/9a/27/caption.jpg?w=1100&h=800&s=1');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  color: #000000; /* Torna o texto preto */
}

.tours-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.5); /* Branco semi-transparente sobre a imagem */
  z-index: 1;
}

.tours-header * {
  position: relative;
  z-index: 2; /* Garante que o conteúdo fique acima da camada de transparência */
}



/* Estilo das categorias de tours */
.tour-category {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-top: 40px;
}

.tour-category h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.tour-category p {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

/* Grid de tours */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card de tour */
.tour-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tour-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tour-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Botão de categoria */
.categoria-button {
  display: inline-block;
  background-color: #3A86FF;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  text-align: center;
}

.categoria-button:hover {
  background-color: #265dcf;
}

/* Estilos para o botão "Ver mais Tours" */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.see-all-button {
  background-color: #3A86FF;
  color: white;
  padding: 12px 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  width: auto;
  max-width: 500px;
  text-align: center;
}

.see-all-button:hover {
  background-color: #265dcf;
}

/* Estilo para o botão em cada categoria */
.tour-button {
  background-color: #3A86FF;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.tour-button:hover {
  background-color: #265dcf;
}


/* Estilo para o Header da Página */
.blog-intro {
  background-color: #F5F5F5;
  background-image: url('https://dynamic-media.tacdn.com/media/photo-o/2e/f9/ea/b1/caption.jpg?w=1100&h=800&s=1');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #000000; /* Garante que todo o texto fique preto */
}

.blog-intro::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.5); /* Camada branca semi-transparente */
  z-index: 1;
}

.blog-intro * {
  position: relative;
  z-index: 2;
  color: #000000 !important; /* Força o texto a ser preto mesmo com estilos herdados */
}

.blog-intro h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-intro p {
  font-size: 18px;
}

/* Estilo para os Roteiros */
.roteiro {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-top: 40px;
}

.roteiro h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.roteiro p {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

/* Estilo dos Cards dos Tours */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tour-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tour-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Estilo para o botão de reserva */
.tour-button {
  background-color: #3A86FF;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.tour-button:hover {
  background-color: #265dcf;
}

/* Estilo para os botões "Ver mais Tours" */
.categoria-button {
  display: inline-block;
  background-color: #3A86FF;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  text-align: center;
}

.categoria-button:hover {
  background-color: #265dcf;
}

/* Estilos gerais */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F5F5F5;
}

/* Header */
.blog-intro {
  background-color: #F5F5F5;
  padding: 80px 20px;
  text-align: center;
}

.blog-intro h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-intro p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Roteiros */
.roteiro {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-top: 40px;
}

.roteiro h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.roteiro p {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

/* Tour Cards */
.tour-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tour-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tour-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Botão de reserva */
.tour-button {
  background-color: #3A86FF;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.tour-button:hover {
  background-color: #265dcf;
}

.legal-links {
  background-color: #f5f5f5;
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 0.5rem;
  margin-top: 3rem;
}

.legal-links p {
  font-size: 1rem;
  color: #333;
}

.legal-links a {
  color: #14213D;
  text-decoration: underline;
}

.legal-links a:hover {
  color: #FCA311;
}

.contact-section {
  padding: 2rem 1rem !important;
  background-color: #f9f9f9 !important;
}

.contact-container {
  max-width: 600px !important;
  margin: 0 auto !important;
  background-color: #fff !important;
  padding: 2rem !important;
  border-radius: 1rem !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.contact-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.form-group {
  display: flex !important;
  flex-direction: column !important;
}

.form-group label {
  font-weight: bold !important;
  margin-bottom: 0.5rem !important;
  color: #14213D !important;
  font-size: 1rem !important;
}

.form-group input,
.form-group textarea {
  width: 100% !important;
  padding: 0.8rem !important;
  border: 1px solid #ccc !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  box-sizing: border-box !important;
  background-color: #fff !important;
}

.contact-button {
  background-color: #14213D !important;
  color: #fff !important;
  border: none !important;
  padding: 1rem !important;
  font-size: 1rem !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
}

.contact-button:hover {
  background-color: #000 !important;
}

.site-footer {
  background: #062f33;
  color: #e5e5e5;
  padding: 4rem 1rem 2rem;
  font-size: 0.95rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h4 {
  color: #fca311;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #fca31133;
  padding-bottom: 0.5rem;
}

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

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #fca311;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer-column {
    min-width: 100%;
  }

  .footer-column h4 {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 1.5rem;
    margin-top: 2rem;
  }
}

/* HEADER GERAL */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* CONTAINER mais compacto */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 120px; /* Reduzido para um header mais pequeno */
}

/* MENU NORMAL (desktop) */
.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #0077cc;
  text-decoration: none;
}

/* HAMBURGUER (mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
