/* RESET E BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #333;
  color: white;
  font-family: sans-serif;
}

/* TOPO COM LOGO E REDES */
.top-bar {
  background: #333;
  color: white;
  padding: 12px 5%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  z-index: 1000;
  position: relative;
}

.contato {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contato a {
  color: white;
  text-decoration: none;
  font-size: clamp(0.8rem, 2vw, 1rem);
  white-space: nowrap;
}

.redes-sociais {
  display: flex;
  gap: clamp(10px, 2vw, 15px);
  margin-left: auto;
}

.redes-sociais a {
  color: white;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  transition: opacity 0.3s;
}

.redes-sociais a:hover {
  opacity: 0.8;
}

/* TOPO QUE SOME AO ROLAR */
.top-infos {
  transition: transform 0.3s ease;
}

.top-infos.escondido {
  transform: translateY(-100%);
}

/* MENU PRINCIPAL */
.menu-topo {
  width: 100%;
  padding: 10px 5%;
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu-topo.normal {
  position: static;
}

.menu-topo.fixo {
  position: fixed;
  top: 0;
  left: 0;
}

/* Aplica margem ao conteúdo só quando o menu estiver fixo */
body.menu-fixo .conteudo {
  margin-top: 70px;
}

/* MENU LISTA DESKTOP */
.menu-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.menu-topo ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.menu-topo a {
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.menu-topo a:hover {
  background: #444;
  color: #ccc;
}

/* BOTÃO MENU HAMBÚRGUER */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  right: 5%;
  top: 12px;
  z-index: 1100;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-wrapper {
    display: none;
    flex-direction: column;
    background: #111;
    width: 100%;
    margin-top: 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    padding: 10px 0;
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease forwards;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
  }

  .menu-wrapper ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
  }

  .menu-wrapper ul li {
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid #333;
  }

  .menu-wrapper ul li:last-child {
    border-bottom: none;
  }

  .menu-wrapper ul li a {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    padding: 8px 0;
  }

  .menu-wrapper.active {
    display: flex;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* NÚMERO DE TELEFONE */
#numero {
  text-align: left;
}
