/* Reset simples */
* {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  color: #222;
}

main{
  background: #f4f4f4;
}

/* só mobile */
@media (max-width: 767px) {

  .cabecalho{
    display: none;
  }

 

  .cabecalho-mobile {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    z-index: 999;
         box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }

  .botao-contactar{
    border-radius: 50px;
    background-color: #F36D53;
    height: 45px;
     width: 45px;
     border: none;
     margin-left: 5px;
  }

  .logo img {
    height: 58px;
  }

  .menu-toggle {
    font-size: 28px;
    background: none;
    border: none;
    color: #FFF;
    background-color: #F36D53;
     height: 45px;
     width: 45px;
      border-radius: 50px;
      margin-right: 5px;
  }

 .menu-mobile {
   display: none;
  position: fixed;
  top: 0; /* começa em cima */
  right: 0;
  width: 75%;
  height: 100%;
  background: white;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
  z-index: 9999;
  }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(53, 113, 134, 0.3); /* azul transparente */
  display: none;
  z-index: 1;
}

.overlay.ativo {
  display: block;
}

/* BOTÃO X EM CIMA */
.fechar {
  position: absolute;
  top: 18px;
  left: -12px;
  border: none;
  background: #F36D53;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  width: 36px;
  height: 40px;
  border-radius: 10%;
  

}

/* BLOQUEAR SCROLL */
body.travado {
  overflow: hidden;
}

  .log {
  display: flex;          /* deixa imagem e textos na mesma linha */
  align-items: center;    /* centraliza verticalmente */
  gap: 10px;   
  background-color: rgb(239, 245, 248);  
  margin-top: 80px;
       
}

.log img {
  width: 53px;            /* ajusta o tamanho da imagem */
  height: auto;
}

.log .textos h1 {
  font-size: 1.1rem;
  margin: 0;
  color: #111;
  font-weight: 400;
}

.log .textos h2 {
  font-size: 1rem;
  margin: 0;
  font-weight: 200;    /* opcional */
    color: #111;
    font-style: italic;
    border-bottom: solid 1px #111;
}


 .menu-mobile a {
    display: block;       /* força cada link em sua própria linha */
    text-decoration: none;
    color: #F36D53;
    font-size: 1.2rem;
    font-weight: 400; 
    margin: 10px 0;       /* opcional: espaço entre os links */
}
    .menu-mobile a:hover{
        cursor: pointer;
    }

 .menu-mobile .botao-contactar {
  color: #fff;
  border-radius: 8px;
  padding: 6px 0 0 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #F36D53;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 70%;
  margin-top: 220px;
  justify-content: center;
  justify-items: center;
  margin-left: 40px;
     }

}

















/* ============================
   TRANSPARÊNCIA MOBILE (Apenas Index)
   ============================ */

@media (max-width: 767px) {
    
    /* 1. Estado Transparente (na Sessão 1) 
    .cabecalho-mobile.modo-transparente {
        background: transparent !important;
        box-shadow: none !important;
    }
    
    
    .cabecalho-mobile.modo-transparente .menu-toggle {
        color: #FFF !important; 
        background-color: #F36D53; 
    }
*/
    /* 2. Estado quando o Menu está Aberto */
    /* Quando o menu lateral branco abre, forçamos o topo a ficar branco também */
    .cabecalho-mobile.menu-aberto {
        background: #fff !important;
        box-shadow: 0 6px 20px rgba(46, 48, 49, 0.06) !important;
    }

    /* Garante que o ícone do menu (X ou ☰) fique laranja quando o fundo é branco */
    .cabecalho-mobile.menu-aberto .menu-toggle {
        color: #F36D53 !important;
    }
}











@media (max-width: 767px) {

  /* ==================== MENU FOOTER ==================== */
  .menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;   /* Contactar esquerda | Idioma direita */
    margin-top: auto;                 /* Empurra para o fundo */
    padding: 20px 25px 40px 25px;     /* Mais espaço em baixo */
    width: 100%;
    box-sizing: border-box;
  }

  /* Botão Contactar mais pequeno - Esquerda */
  .botao-contactar-menu {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background-color: #F36D53;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .botao-contactar-menu img {
    width: 20px;
    height: 20px;
  }

  /* Seletor de Idioma - Direita */
  .seletor-idioma-mobile {
    position: relative;
  }

  .idioma-selecionado-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 8px 14px;
    height: 42px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1rem;
  }

  /* Lista de idiomas abre para cima */
  .lista-idiomas-mobile {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 0;
    margin-bottom: 8px;
    width: 190px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 10000;
  }

  .lista-idiomas-mobile.ativo {
    display: block;
  }

  .lista-idiomas-mobile li {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .lista-idiomas-mobile li:hover {
    background: #f8f8f8;
  }
}

@media (max-width: 767px) {
    .menu-mobile.ativo {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .menu-mobile {
        display: none;           /* importante */
    }
    
    .menu-mobile.ativo {
        display: flex !important;
    }
}





/* ESCONDER COMPLETAMENTE GOOGLE TRANSLATE */

#google_translate_element{
display:none;
}

.goog-te-banner-frame{
display:none !important;
}

.goog-te-banner-frame.skiptranslate{
display:none !important;
}

.goog-te-gadget{
display:none !important;
}

.goog-te-gadget-simple{
display:none !important;
}

.goog-te-combo{
display:none !important;
}

.goog-te-balloon-frame{
display:none !important;
}

.goog-tooltip{
display:none !important;
}

.skiptranslate{
display:none !important;
}

@supports (-webkit-touch-callout: none) {

  *{
    font-family: 'Poppins', sans-serif !important;
  }

}
