/*  reset e fonte base  */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  text-align: left;
  scroll-behavior: smooth;
  background-color: #fafafa;
}

/*  header  */
.topo-elegante {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  justify-content: center; 
  align-items: center;
  max-height: 80px;
}

.topo-elegante.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(0);
}
.container-header-elegante {
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-height: 80px; /* ou outro valor que funcione para você */
  height: auto;
  width: auto;
}

.logo-grande {
  transform: scale(1.2); /* efeito visual maior sem ocupar espaço extra */
  transform-origin: left center;
}


.menu-elegante a {
  font-size: 16px;
  text-decoration: none;
  color: #212121;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.menu-elegante a:hover {
  background-color: rgba(30, 136, 229, 0.12);
  color: #1e88e5;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(30, 136, 229, 0.1);
}


    .galeria-trabalhos {
      padding: 30px 20px;
      background: linear-gradient(180deg, #fefefe 0%, #f4f6f8 100%);
    }

    .galeria-container {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .galeria-container h2 {
      font-size: 40px;
      color: #212121;
      margin-bottom: 30px;
      position: relative;
      font-weight: 700;
    }

    .galeria-container h2::after {
      content: '';
      width: 80px;
      height: 4px;
      background: #1e88e5;
      display: block;
      margin: 14px auto 0;
      border-radius: 2px;
    }

    .grid-imagens {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

.grid-imagens .item {
  background: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0; /* borda sutil */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05); /* sombra mais destacada */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.grid-imagens .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30, 136, 229, 0.15); /* azul suave no hover */
  border-color: #bbdefb;
}


.grid-imagens img {
      width: 100%;
      display: block;
      object-fit: cover;
      height: 200px;
    }

.grid-imagens p {
  padding: 8px 12px; /* menos espaço */
  font-size: 16px;
  font-weight: 600;
}



    .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.modal-conteudo {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

.hamburger{
    display: none;
}

/* botao zap */


.botao-voltar-footer{
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  margin-top: 40px;
  padding-bottom: 40px;
}

.botao-voltar-footer a {
  font-size: 40px;
  text-decoration: none;
  color: #212121;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  background-color: transparent;
  text-align: center
}

.botao-voltar-footer a:hover {
  background-color: rgba(30, 136, 229, 0.12);
  color: #1e88e5;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(30, 136, 229, 0.1);
}


.rodape {
  background: #1d1d1d;
  color: white;
  padding: 60px 20px 30px;
}

.container-rodape {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.container-rodape h3 {
  color: #ff9800;
  font-size: 20px;
  margin-bottom: 15px;
}

.container-rodape a,
.container-rodape p {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.6;
}

.container-rodape a:hover {
  color: #ffab40;
}

.info-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* whatsapp fixo */

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 18px;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.whatsapp-fixo i {
  font-size: 24px;
}

.whatsapp-fixo:hover {
  transform: scale(1.05);
  background-color: #1ebe57;
}




/* menu mobile igual ao site principal */
@media (max-width: 768px) {
  .menu-elegante {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .menu-elegante.ativo {
    display: flex;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    z-index: 1100;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .hamburger span {
    height: 3px;
    width: 24px;
    background-color: #686868;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .hamburger.ativo span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.ativo span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.ativo span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .grid-imagens {
    gap: 20px;
  }

  .grid-imagens img {
    height: 180px;
  }

  .botao-voltar-footer {
    text-align: center;
    margin-top: 30px;
  }

  .botao-voltar-footer a {
    font-size: 18px;
    padding: 12px 24px;
  }
}

.botao-voltar-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.botao-voltar-footer a {
  font-size: 20px;
  padding: 14px 28px;
  background-color: #1e88e5;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.botao-voltar-footer a:hover {
  background-color: #1565c0;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.info-sac .sac-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-sac a {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
}

.info-sac a:hover {
  color: #ffab40;
}

.info-sac p {
  margin: 0;
  color: #ccc;
  font-size: 16px;
}

/*creditos */

.info-credito a {
  display: inline-block;
  color: #25d366;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-credito a:hover {
  color: #1ebe57;
}
