/* Estilos gerais */
  body {
    margin: 0;
    padding-top: 60px; /* espaço para o menu fixo */
    font-family: 'Poppins', sans-serif;
  }

  /* Cabeçalho fixo */
  .top-menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    height: 50px;
  }

  .menu-right {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .menu-linksa {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
  }

  .menu-linksa:hover {
    color: #007bff;
  }
  
  .menu-linksb {
    text-decoration: none;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
  }



  .social-icons a {
    color: #333;
    font-size: 20px;
    margin: 0 8px;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #007bff;
  }

  /* Bandeiras de idioma */
  .lang-flags {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .lang-flags img {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }

  .lang-flags img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
  }
  
  
  
  
  
  
  
  
  .div_sobre_imagem{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.25);
}

.imagem_topo{
	position:relative;
	z-index:-1;
	width:100%;
	height:260px;
	background-size:cover;
	background-position:center;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
}

.imagem_topo_tours{
	position:relative;
	z-index:-1;
	width:100%;
	height:360px;
	background-size:cover;
	background-position:center;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
}

.titulo_topo{
	position:relative;color:white;font-size:2.4em;margin:0;padding:0 10px;text-shadow: 2px 0 black, 2px 0 black;
}

.section_conteiner{
	line-height:1.3;
}

.titleSession{ 
	display: block; 
	margin: 20px 0px; 
	padding-left: 15px; 
	font-size: 24px; 
	font-style:italic;
	border-left: 5px solid rgb(247, 146, 57);
	margin: 0 0 10px 0;
}

.div_conteiner{
	max-width:80%;margin:-40px auto 0 auto;padding:40px;background:white;border-radius:6px;
}

.div_part{
	margin-bottom:50px;
}

.div_part p{
	margin: 8px 0px 0px 10px; 
    text-align: justify;
}

.btn_see_all_tours{
	background-color:#007BFF; color:white; padding:10px 20px; text-decoration:none; border-radius:4px; display:inline-block;
}

.div_123{
	display:flex;gap:15px;flex-wrap:wrap;
}

.div_123rev{
	display:flex;gap:15px;flex-wrap:wrap;flex-direction:row-reverse;
}

.div_234{
	flex:1;min-width:200px;
}







.gallery-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .gallery-slide.active {
    opacity: 1;
  }

  .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 5% 4%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .gallery-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
  }

  .gallery-btn.prev { left: 10px; }
  .gallery-btn.next { right: 10px; }
  
  
  
  
  
  
  
  
  .lista-tours {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .lista-tours .item {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        background: #ffffff;
        box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        border-radius: 6px;
        overflow: hidden;
        transition: 0.2s ease;
    }

    .lista-tours .item:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    }

    .lista-tours .item img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .lista-tours .item h3 {
        margin: 15px;
        color: #333;
        font-size: 1rem;
        font-weight: 600;
    }

    /* Responsivo */
    @media (max-width: 900px) {
        .lista-tours {
            grid-template-columns: repeat(2, 1fr);
        }
    }

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




.p_loc {
  position: relative;
  padding-left: 26px;
  padding-bottom: 15px;
}

.p_loc::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}



.p_check {
  position: relative;
  padding-left: 26px;
  padding-bottom: 15px;
}

.p_check::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}



.flag {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-right: 6px;
}

.langs span {
  margin-right: 20px;
}



.blink-btn {
    background-color: #007BFF;
    color: white;
    padding: 8px 16px;
    border: 2px solid #007BFF;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.blink-btn:hover {
    background-color: white;
    color: #007BFF;
}