:root {
  --dourado: #d4af37;
  --dourado-claro: #f5d76e;
  --dourado-escuro: #b8962e;
}

body {
  font-family: Arial;
  margin: 0;
  background: #0a0a0a;
  color: #fff;
  padding: 0;
  margin-top: 0;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #111;
  position: relative;
  z-index: 1002;
}

/* BOTÃO */
.menu-toggle {
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1002;
}

/* MENU (CORRIGIDO) */
#menu {
  position: fixed;
  top: 0;
  left: -360px; /* 🔥 corrigido (antes estava right) */
  width: 260px;
  height: 80;
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  transition: left 0.3s ease; /* 🔥 corrigido */
  z-index: 1003;
}

#menu.active {
  left: 0; /* 🔥 corrigido */
}

/* LINKS */
#menu a {
  color: white;
  margin: 15px 0;
  text-decoration: none;
  font-size: 18px;
}

/* BOTÃO FECHAR */
.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1002;
}

nav a {
  color: var(--dourado);
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  height: 550px;
  background: url('images/banner.jpg') center/cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.hero-content h2 {
 font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-shadow: 3px 3px 15px rgba(0,0,0,0.9);
}

.hero-content p {
  font-size: 10px;
  margin-top: 10px;
  color: #ddd;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
}

.hero-content {
  position: relative;
  color: white;
  height: 160%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0%;   
  align-items: center;
  text-align: center;
  padding: 30px;
  animation: fadeUp 3s ease;
}

.hero-content h2,
.hero-content p {
  color: white;
}

.hero-content h2 {
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-content p {
  text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  color: black;
  font-weight: bold;
  padding: 12px 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  border-radius: 5px;
}

/* SERVIÇOS */
.servicos {
  padding: 60px;
  text-align: center;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  width: 280px;
  background: #1a1a1a;
  color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
  border-bottom: 3px solid var(--dourado);
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
}

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

.card ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.card li {
  margin: 5px 0;
}

/* DESTINOS */
.destinos {
  padding: 60px;
  text-align: center;
}

.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.item img {
  transition: 0.4s;
  width: 250px;
  height: 150px;
}

.item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.item span {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 5px;
}

/* GALERIA */
.galeria {
  padding: 60px;
  text-align: center;
}

.galeria .grid img {
  width: 200px;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
  transition: 0.3s;
}

.galeria .grid img:hover {
  transform: scale(1.08);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}

.autoridade .cards {
  flex-wrap: wrap;
  justify-content: center;
}

.autoridade .cards {
  flex-wrap: wrap;
  justify-content: center;
}

.autoridade .card {
  width: 280px;
  text-align: center;
}

/* garante 3 por linha */
@media (min-width: 900px) {
  .autoridade .cards {
    max-width: 900px;
    margin: 0 auto;
  }
}

/* botão centralizado SEM esticar */
.autoridade .btn {
  display: inline-block;
  margin-top: 40px;
}
.autoridade {
  text-align: center;
}

/* RODAPÉ */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
}

/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: center; /* centraliza tudo */
  align-items: flex-start;
  gap: 80px; /* espaço entre os dois */
  max-width: 1000px;
  margin: 0 auto;
  text-align: center; /* centraliza texto */
}

/* COLUNAS */
.footer-col {
  flex: none; /* impede de esticar */
  width: 250px;
}

/* TÍTULOS */
.footer-col h3 {
margin-bottom: 15px;
  color: #d4af37;
}

/* TEXTOS */
.footer-col p {
  margin: 5px 0;
  font-size: 14px;
}

/* RESPONSIVO (celular) */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* REMOVIDO BUG GLOBAL */
/* * { transition: all 0.3s ease; } */

/* WHATSAPP */
.whatsapp-fixo{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 4px 12px rgba(0,0,0,0.4);
z-index:999;
transition:0.3s;
}

.whatsapp-fixo svg{
width:32px;
height:32px;
}

.whatsapp-fixo:hover{
transform:scale(1.1);
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    padding: 30px;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  /* REMOVE QUALQUER INTERFERÊNCIA DO GOOGLE */
body > .skiptranslate {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

iframe {
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  position: absolute !important;
}
/* ESCONDE QUALQUER COISA DO GOOGLE TRANSLATE */
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-combo,
iframe.goog-te-banner-frame,
iframe {
  display: none !important;
}

/* REMOVE ESPAÇO BUGADO */
body {
  top: 0 !important;
  position: static !important;
}
}
/* ESCONDE COMPLETAMENTE O TRADUTOR ORIGINAL */
#google_translate_element {
  display: none !important;
}

/* REMOVE BARRA SUPERIOR DO GOOGLE */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
/* ESCONDE O SELECT DO GOOGLE */
.goog-te-gadget {
  display: none !important;
}
/* REMOVE ESPAÇO NO TOPO */
html {
  margin-top: 0px !important;
}
/* ESCONDE QUALQUER RESTO */
.skiptranslate {
  display: none !important;
}


/* BOTÃO */
.lang-btn {
  position: fixed;
  top: 15px;
  right: 20px;
  background: #111;
  color: #fff;
  border: 1px solid #d4af37;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 9999;
}

/* MENU */
.lang-menu {
  position: fixed;
  top: 55px;
  right: -220px;
  width: 200px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  z-index: 9998;
}

.lang-menu.active {
  right: 20px;
}

/* ITENS */
.lang-menu div {
  padding: 12px;
  color: white;
  cursor: pointer;
  border-bottom: 1px solid #222;
}

.lang-menu div:hover {
  background: #111;
}

