/* RESET E CONFIGURAÇÃO */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.corpo-pagina {
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  color: #111827;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* CABEÇALHO E NAVEGAÇÃO */

.cabecalho-topo {
  background-color: #111827;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.barra-navegacao {
  max-width: 1200px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 40px;
}

.menu-esquerda,
.menu-direita {
  list-style: none;
  display: flex;
  gap: 40px;
}

.menu-esquerda a,
.menu-direita a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 0.95rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.menu-esquerda a:hover,
.menu-direita a:hover {
  color: #eab308;
}

/* LOGO CENTRAL */

.escudo-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background-color: #111827;
  width: 220px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 25px;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 65%);
  transition: transform 0.3s ease;
  z-index: 1001;
  
}

.logo-na-seta {
  width: 125px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.9));
}

.escudo-logo:hover {
  transform: translateX(-50%) translateY(12px);
}

/* CONTEÚDO PRINCIPAL */

.conteudo-principal {
  flex-grow: 1;
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.linha-divisoria {
  border: 0;
  border-top: 1px solid #cbd5e1;
  width: 100%;
}

.secao-quem-somos,
.secao-imersoes {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
}

.titulo-principal,
.titulo-secundario {
  color: #1e3a8a;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.titulo-principal {
  font-size: 2.25rem;
}

.titulo-secundario {
  font-size: 2rem;
}

.texto-descritivo {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #374151;
}

/* CARTÕES DE IMERSÃO */

.grade-destinos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.cartao-destino {
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.cartao-destino:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.4);
}

.fundo-china {
  background-image:
    linear-gradient(
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.95)
    ),
    url("/assets/img/fundo-china.webp");
  background-size: cover;
  background-position: center;
}

.fundo-paraguai {
  background-image:
    linear-gradient(
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.95)
    ),
    url("/assets/img/fundo-paraguai.webp");
  background-size: cover;
  background-position: center;
}

.cartao-titulo {
  font-size: 1.75rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cor-branca {
  color: #ffffff;
}

.cor-branca-opaca {
  color: #d1d5db;
}

.cartao-texto {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1;
}

/* BOTÕES DOS CARTÕES */

.botao-china-claro,
.botao-paraguai-claro {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  background-color: transparent;
  display: block; 
  text-decoration: none;
}

.botao-china-claro {
  border: 2px solid #cc3434;
  color: #e24646;
}

.botao-china-claro:hover {
  background-color: #df3838;
  color: #ffffff;
}

.botao-paraguai-claro {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.botao-paraguai-claro:hover {
  background-color: #010f92;
  color: #ffffff;
}

/* RODAPÉ NOVO */

.rodape-pagina {
  background-color: #172554;
  color: #ffffff;
  padding: 64px 24px 24px;
  margin-top: auto;
}

.rodape-conteudo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.rodape-coluna {
  flex: 1;
}

.rodape-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rodape-logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.titulo-rodape-coluna {
  font-size: 1.25rem;
  color: #eab308;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rodape-menu ul {
  list-style: none;
}

.rodape-menu li {
  margin-bottom: 12px;
}

.rodape-menu a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.rodape-menu a:hover {
  color: #eab308;
}

.rodape-info p {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.rodape-info strong {
  color: #ffffff;
}

.mt-4 {
  margin-top: 32px;
}

.rodape-empresa {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rodape-empresa p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 4px;
}

.rodape-base {
  text-align: center;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #9ca3af;
}

/* RESPONSIVIDADE */

@media (min-width: 768px) {
  .grade-destinos {
    grid-template-columns: 1fr 1fr;
  }
  
  .rodape-conteudo {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .rodape-logo-container {
    justify-content: flex-start;
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.9));

    
  }
}

/* LINKS DE CONTATO NO RODAPÉ */

.link-contato {
  color: #d1d5db; 
  text-decoration: none;
  background: none;
  transition: color 0.3s ease;
}

.link-contato:hover {
  color: #eab308;
}
/* ÍCONES DE REDES SOCIAIS */

.redes-sociais {
  margin-top: 16px;
}

.link-icone {
  display: inline-block;
  color: #d1d5db;
  transition: transform 0.3s ease, color 0.3s ease;
}

.link-icone:hover {
  color: #eab308;
  transform: translateY(-3px);
}

/* CONFIGURAÇÕES DO MENU MOBILE (Oculto no Desktop) */
.botao-menu-mobile {
  display: none;
  background: none;
  border: none;
  color: #eab308;
  cursor: pointer;
  z-index: 2000;
  transition: transform 0.3s ease;
}

.menu-lateral-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  

  background-color: rgba(17, 24, 39, 0.9); 
  
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.5);
  transition: right 0.4s ease;
  z-index: 1500;
  padding-top: 100px;
}

.menu-lateral-mobile.ativo {
  right: 0;
}

.links-mobile {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.links-mobile a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.links-mobile a:hover {
  color: #eab308;
}

/* ---------------------------------------------------
   MEDIA QUERIES (Ponto de quebra para telas menores)
--------------------------------------------------- */
@media (max-width: 900px) {
  .menu-esquerda,
  .menu-direita {
    display: none;
  }

  .barra-navegacao {
    justify-content: flex-end;
  }
  
  .botao-menu-mobile {
    display: block;
  }

  .escudo-logo {
    width: 160px;
    height: 120px;
    padding-top: 15px;
    left: 20px;
    transform: translateX(0) translateY(0);
  }

  .escudo-logo:hover {
    transform: translateY(8px);
  }

  .logo-na-seta {
    width: 90px;
  }
  
  .conteudo-principal {
    padding-top: 60px;
  }
}