* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      /*font-family: Arial, sans-serif;*/
	  font-family: TimesNewRoman, "Times New Roman";
	  color: #12182C;
    }

    /* Header fixo e transparente */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      transition: all 0.3s ease;
      background-color: transparent;
      color: white;
    }

    header.scrolled, header:hover {
      background-color: white;
      color: #12182C;
    }

    .logo {
      font-size: 1.5em;
      font-weight: bold;
    }
	
	.logo img{
		width: 30%;
	}

    nav {
      display: flex;
      gap: 20px;
    }

    nav a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s;
    }

   /* header.scrolled nav a,
    header:hover nav a {
      color: #F6A21C;
    }*/
	
	a:hover {
      color: #F6A21C;
	  scale: 1.2;
	  font-weight: bold;
    }

    /* Menu hamburger para mobile */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background-color: white;
      transition: background-color 0.3s;
    }

    header.scrolled .menu-toggle div,
    header:hover .menu-toggle div {
      background-color: #12182C;
    }
	
	header button {
      padding: 10px 20px;
      font-size: 1em;
      background-color: #12182C;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
	
	.imagem-beneficios button {
      padding: 10px 20px;
      font-size: 1em;
      background-color: #12182C;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .hero {
      background-image: url('a.png');
      height: 100vh;
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding-top: 80px;
      color: white;
    }

    .hero-content {
      /*background-color: rgba(0,0,0,0.5);*/
      padding: 20px;
      border-radius: 10px;
    }

    .hero h1 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .hero button {
      padding: 10px 20px;
      font-size: 1em;
      background-color: #12182C;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }


.container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 80%;
  overflow-x: hidden;
  margin: 0 auto; /* Centraliza horizontalmente */
}


    .topo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .topo h1 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .conteudo {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      width: 100%;
    }

    button {
  background-color: #1E284A;
  color: white;
  border: none; /* Borda removida */
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  height: fit-content;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra adicionada */
  border-radius: 5px;
}


    button:hover {
      background-color: #F6A21C;
      color: white;
    }
	
	/*button:hover {
background-color: #F6A21C;
}*/

    .imagem-central {
      display: flex;
      flex-direction: row;
      gap: 5px;
      flex-grow: 1;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      width: 100%;
    }

    .imagem-esquerda,
    .imagem-direita {
      flex: 1;
	  width: 30%;
    }

    .imagem-esquerda img {
  width: 100%;
  height: auto;
  border-top-left-radius: 50px; /* ajuste o valor conforme desejar */
}


    .imagem-direita {
      display: flex;
      flex-direction: column;
      gap: 5px;
	  width: 30%;
    }

    .imagem-direita img {
      width: 100%;
      height: auto;
    }

    .descricao {
      text-align: center;
      margin-top: 20px;
      font-size: 16px;
      width: 20%;
    }
	
	#imgPrincipal:hover{
  transform: scale(0.9);
}

#imgSecundaria1:hover{
  transform: scale(0.9);
}

#imgSecundaria2:hover{
  transform: scale(0.9);
  /*filter: blur(1px) brightness(0.5);*/
}

.texto_oculto1{
    display: none;
	font-size:24px;
	font-weight: bold;
}

.texto_oculto2{
    display: none;
	font-size:24px;
	font-weight: bold;
}

.texto_oculto3{
    display: none;
	font-size:24px;
	font-weight: bold;
}
.imgPrincipal:hover .texto_oculto1{
    display: block;
}

.imgSecundaria1:hover .texto_oculto2{
    display: block;
}
.imgSecundaria2:hover .texto_oculto3{
    display: block;
}
	
	
	.imagem-beneficios {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.imagem-beneficios img {
  width: 70%;
  height: auto;
  display: block;
}

.beneficio-box {
  position: absolute;
  bottom: 20px;
  left: 80%;                     /* Inicia a 20% da largura da imagem */
  transform: translateX(-60%) translateY(30%); /* Puxa 20% para dentro e 30% para baixo */
  
  width: 50%;
  
  background-color: #12182C;
  color: white;
  padding: 20px;
  
  text-align: center;
  font-weight: bold;
  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-top-left-radius: 50px;
}	
	
	
	
	
	
	.secao-mapa {
		margin-top:5%;
  text-align: center;
  padding: 40px 20px;
}

.titulo {
  font-size: 2em;
  margin-bottom: 10px;
  color: #12182C;
}

.descricao_mapa {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #444;
}

.mapa-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 800px;
}

.mapa-angola {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sobreposicao {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  background-color: white;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #12182C;
  font-weight: bold;
  max-width: 80%;
  text-align: center;
}



.secao-destaque {
  position: relative;
  padding: 40px 20px;
  width:80%;
  margin: 0 auto;
}

.titulo-direita {
  position: absolute;
  top: 20px;
  font-size: 24px;
  color: #12182C;
  
}

.grid-destinos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px; /* espaço abaixo do título */
  gap: 20px;
}

.destino {
  flex: 1 1 22%; /* para 4 por linha com espaçamento */
  background-color: white;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.destino img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.destino p {
  padding: 10px;
  font-weight: bold;
  color: #333;
}

.destino:hover {
  transform: scale(1.03);
}



.footer {
  background-color: #f5f5f5;
  color: #333;
  font-family: Arial, sans-serif;
}

.clima-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  flex-wrap: wrap;
}

.clima-section p {
  flex: 1;
  margin: 0;
  font-size: 16px;
}

.btn-saber-mais {
  padding: 10px 20px;
  background-color: #12182C;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-saber-mais:hover {
  /*background-color: #1f2845;*/
  background-color: #F6A21C;
}

.separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0 20px;
}

.blocos-informativos {
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.bloco {
  flex: 1 1 30%;
  text-align: center;
}

.bloco img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin: 10px 0;
}

.bloco a {
  display: inline-block;
  margin-top: 10px;
  color: #12182C;
  text-decoration: none;
  font-weight: bold;
}

.footer-base {
  background-color: #12182C;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.footer-coluna {
  flex: 1 1 30%;
  margin: 10px 0;
}

.logo-footer {
  width: 100px;
  margin-bottom: 10px;
}

.redes-sociais a {
  margin-right: 10px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.footer-creditos {
  text-align: center;
  background-color: white;
  /*
  color: #ccc;*/
  padding: 15px;
  font-size: 14px;
}

.footer-creditos img{
	width:20%;
	margin-right:20%;
}

.footer-coluna img{
	width:50%;
	margin-bottom:10%;
}
a i {
  font-size: 22px;
  margin: 0 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

a i:hover {
  color: #F6A21C;
  transform: scale(1.2);
}

footer a{
	text-decoration:none;
	color:white;
}

.footer-creditos a{
	color:black;
	padding:5%;
}

.texto_oculto{
    display: none;
}

.destino:hover .texto_oculto{
    display: block;
}


	
    /* Responsivo */
    @media (max-width: 768px) {
      nav {
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: white;
        flex-direction: column;
        display: none;
        width: 200px;
        padding: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }

      nav.show {
        display: flex;
      }

      nav a {
        color: #12182C;
        padding: 10px 0;
      }

      .menu-toggle {
        display: flex;
      }
	  
	  
	  .logo img{
		width: 25%;
	}
	
	
	
	
	
	
	
	 .imagem-central {
        flex-direction: column;
      }

      .imagem-esquerda,
      .imagem-direita {
        width: 100%;
      }
	  
	  .descricao {
      text-align: justify;
      margin-top: 20px;
      font-size: 16px;
      width: 100%;
    }
	
	 .beneficio-box {
    position: relative;                    /* agora flui normalmente abaixo da imagem */
    top: -20%;                             /* sobe 20% para dentro da imagem */
    left: 0;
    transform: none;                       /* remove o translate usado no desktop */
    width: 90%;                            /* ajusta a largura para caber bem no mobile */
    margin: 0 auto;                        /* centraliza */
    height: auto;                          /* altura automática para texto crescer */
    padding: 15px;
  }
  
  
   .grid-destinos {
    flex-direction: column;
  }

  .destino {
    flex: 1 1 100%;
  }

  .titulo-direita {
    position: static;
    text-align: right;
    margin-bottom: 20px;
  }
  
  
  .clima-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .blocos-informativos {
    flex-direction: column;
    gap: 30px;
  }

  .footer-base {
    flex-direction: column;
    text-align: center;
  }

    }