/* 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;
  }

  .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;
    }
    
    /* Garante que o ícone do menu (☰) seja branco no modo transparente */
    .cabecalho-mobile.modo-transparente .menu-toggle {
        color: #FFF !important; 
        background-color: #F36D53; /* Mantém o botão laranja */
    }

    /* 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;
    }
}