/* Reset básico */
* {
  
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000000;
  line-height: 1.6;
}

/* Cabeçalho */
header img.logo {

  width: 150px; /* Ajuste o tamanho da logo conforme necessário */
  height: auto;
  margin-right: 20px;
}

header {
  background-color: #0b0b0bc2;
  padding: 1.25rem 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  padding: 3rem 7rem;
}

header h1 {
  color: #c0c0c0; /* prata */
  font-size: 1.5rem;
  letter-spacing: 0.0625rem;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  gap: 20px;

}

nav ul li {
  margin: 0 10px;
}

nav ul li.menu-icon {
  margin-left: auto;
  font-size: 24px;
}


nav a {
  color: #f0f0f0;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.3s, color 0.3s;
}

nav a:hover {
  background-color: #c0c0c0;
  color: #000;
}

.menu {
  display: flex;
  align-items: center; /* Alinha todos os itens verticalmente no centro */
  justify-content: space-between;
  height: 60px; /* altura do menu */
}

.hamburguer {
  font-size: 32px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 1001;
  color: white;
  padding: 15px 20px;
  line-height: 60px; 
  vertical-align: middle;
  }

.menu-lateral {
  height: 100%;
  width: 250px; /* largura fixa */
  position: fixed;
  top: 0;
  right: 0;
  background-color: #3f3f3f;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
}

.menu-lateral a {
  margin-top: 40px;
  padding: 6px 24px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  display: block;
  transition: 0.3s;
}

.menu-lateral a:hover {
  background-color: #575757;
}

.menu-lateral.aberto {
  transform: translateX(0%);
}


/*_______________________________________________________________________________________________________________________________________________*/

.banner { 
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.75rem 2.5rem;
  background: linear-gradient(to left, #000000, #7e7e7e, #f0f0f0 );
  flex-wrap: wrap;
}

.banner-imagem {
  flex: 1;
  max-width: 56.25rem;
  margin: -7.5rem -3.125rem -7.5rem 0;
}
  
.banner img {
  width: 100%;
  height: 56.25rem; 
  object-fit: cover;
  border-radius: 0.75rem;
}

.banner-texto {
    font-family: "Iceland", sans-serif;
    font-weight: 400;
    font-style: normal;
    flex: 1;
    max-width: 43.75rem;     /* 700px */
    margin-left: 5rem;
    text-align: left;
    

}

.banner-texto h2 {
  
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1.25rem;
}

.banner-texto p {
  font-size: 1.5625rem;
  color: #000000;
  margin-bottom: 1.875rem;
}


.botoes-banner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  align-items: flex-start; 
}

.botao {
  color: #000000;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.botao:hover {
  color: #a8a7a7;
  transform: translateX(-2px);

}

.seta {
  font-size: 1.5rem;
}

/*_______________________________________________________________________________________________________________________________________________*/

.sobre-nos {
  background-color: #000000;
  color: #ffffff;
  padding: 9rem 1rem; /* antes: 100px 50px */
  font-family: "Iceland", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.sobre-nos .container {
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.sobre-nos h2 {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-align: center;
}

.conteudo-sobre {
  width: 100%;
  display: flex;
  flex-wrap: wrap; /* empilha em telas pequenas */
  justify-content: center; /* centraliza horizontalmente */
  align-items: stretch;
  gap: 2rem;
}

.texto-sobre {
  flex: 1 1 30rem;
  max-width: 30rem;
}

.texto-sobre p {
  font-size: 1.24rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.imagem-sobre {
  flex: 1 1 45rem;
  max-width: 100%;
  display: flex;
  align-items: stretch;
}

.imagem-sobre img {
  width: 100%;
  height: 100%;
  max-height: 35rem;
  border-radius: 0.75rem;
  display: block;
  object-fit: cover;
  }

/*_______________________________________________________________________________________________________________________________________________*/
/* Seção Slogan */

  .slogan {
  background-image: url('../imagens/sea.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0;
  text-align: center;
}

.slogan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.479); /* fade preto */
  z-index: 0;
}

.slogan > * {
  position: relative;
  z-index: 1;
}

.container-slogan {
  max-width: 900px;
  margin: 0 auto;
}

.slogan-logo {
  width: 900px;
  height: auto;
  margin-bottom: 20px;
}

.slogan-texto {
  font-size: 2rem;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 60px;

}
/*_______________________________________________________________________________________________________________________________________________*/
/* Seção Fale Conosco */

.contato {
    background: url('../imagens/Sistema2.png') rgb(31, 31, 31);
    background-size: 900px 850px;
    background-repeat: no-repeat;
    background-position: left;    
    position: relative;
    color: #fffbfb;
    padding: 6.25rem 1.25rem;
    margin-top: 0px;
    z-index: 1;
    font-family: "Iceland", sans-serif;
    font-weight: 400;
    font-style: normal;
} 

.contato .container {
  max-width: 75rem;
  padding: 0 1.25rem;
  margin: 0 auto;
  box-sizing: border-box;
  }

.contato h2 {

  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 3.125rem;
  text-align: center;
}

.contato-conteudo {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; 
  justify-content: space-between;
  align-items: flex-start;
}

.redes-sociais {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.redes-sociais a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.redes-sociais a:hover img {
  transform: scale(1.1);
}

.mapa {
  flex: 1 1 45%;
  min-width: 21.875rem; 
  max-width: 50rem;
}

.mapa iframe {
  height: 31.25rem; 
  border-radius: 0.75rem;
  border: 0;
  z-index: 1;
}

.info-formulario {
  flex: 1 1 50%;
  min-width: 18.75rem;    
  max-width: 50rem;      
  gap: 2rem; 
  display: flex;
  flex-direction: column;
}

.info-contato p {
  margin: 0.9375rem 0;
  font-size: 1rem;
}

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


.form-contato input,
.form-contato textarea {
  padding: 0.75rem;     
  border-radius: 0.5rem;
  background-color: #313131;
  color: #fff;
  border: none;
  font-size: 1rem;
}

.form-contato button {
  padding: 0.75rem; 
  border-radius: 0.5rem;
  background-color: #757575;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-contato button:hover {
  background-color: #c0c0c0;
  color: #000;
}

/*_______________________________________________________________________________________________________________________________________________*/

.whatsapp-button {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
  width: 3.75rem;
  height: 3.75rem; 
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

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

.whatsapp-button img {
  width: 3.75rem;
  height: 3.75rem;
}


/*_______________________________________________________________________________________________________________________________________________*/

/* Rodapé */
footer {
  text-align: center;
  padding: 1.40rem;
  background-color: #0b0b0b;
  color: #fffdfd;
  font-size: 0.875rem;
}

.voltar-topo {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #ffffff;
  color: #000;
  height: 50px;
  width: 50px;
  font-size: 30px;
  text-align: center;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  display: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.voltar-topo:hover {
  background-color: #33333380;
  color: #ffffff;
}
/*_______________________________________________________________________________________________________________________________________________*/

/* Página de Serviços */

.pagina-servicos {
  padding: 60px 20px;
  color: white;
  background-image: url('../imagens/sea.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.pagina-servicos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.842); /* fade preto */
  z-index: 0;
}

.pagina-servicos > * {
  position: relative;
  z-index: 1;
}

.pagina-servicos h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #c0c0c0;
  text-align: center;
}

.pagina-servicos p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.servico {
  background: #3d3d3d;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.servico:hover {
  transform: scale(1.02);
  background: #1a1a1a;
}

.servico img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.servico h3 {
  margin: 10px 0;
  font-size: 1.4rem;
  color: #e0e0e0;
}

.servico p {
  font-size: 1rem;
  color: #ccc;
}

.cta-contato {
  text-align: center;
  margin-top: 60px;
  
}

.cta-contato h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #c0c0c0;
}

.cta-contato .botao {
  display: inline-block; 
  background: #c0c0c0;
  color: #000;
  padding: 12px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-contato .botao:hover {
  background: white;
}

/*_______________________________________________________________________________________________________________________________________________*/
/* Página de Catálogo */

.pagina-catalogo {
  padding: 60px 20px;
  background-color: #0b0b0b;
  color: white;
  text-align: center;
  font-family: "Iceland", sans-serif;
}

.pagina-catalogo h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #c0c0c0;
}

.pagina-catalogo p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.item-catalogo {
  background: #3a3a3a;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.item-catalogo:hover {
  transform: scale(1.02);
  background: #2a2a2a;
}

.imagem-produto {
  background: #777777;
  border-radius: 10px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #999;
  font-size: 1rem;
}

.item-catalogo h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.item-catalogo .descricao {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 10px;
}

.item-catalogo .disponivel {
  font-size: 0.9rem;
  color: #000000;
}

.botao-compra {
  display: inline-block;
  margin-top: 15px;
  background-color: #ffffff;
  color: #000000;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.botao-compra:hover {
  background-color: #000000;
  color: #ffffff;
  transform: scale(1.03);
}

/*_______________________________________________________________________________________________________________________________________________*/
/* Página de Pagamento */

.pagina-pagamento {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container-pagamento {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.container-pagamento h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #c0c0c0;
}

.form-pagamento {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-pagamento label {
  font-weight: bold;
}

.form-pagamento input,
.form-pagamento select {
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #333;
  color: #fff;
}

.form-pagamento input::placeholder {
  color: #bbb;
}

.botao-finalizar {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.botao-finalizar:hover {
  background-color: #3a9e40;
}

/*_______________________________________________________________________________________________________________________________________________*/
/* Página de Registro/Login */
.pagina-login {
  background: url('../imagens/Sistema3.png') rgb(0, 0, 0);
  background-size: 900px 850px;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 150px 20px 0;
}


body.pagina-login {
  display: flex;
  justify-content: center;
}

.container-login {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  text-align: center;
  margin-bottom: 12rem;
}

.container-login h1 {
  margin-bottom: 25px;
  font-size: 2rem;
  color: #c0c0c0;
}

.container-login label {
  display: block;
  text-align: left;
  margin-top: 12px;
  margin-bottom: 4px;
  font-weight: bold;
  color: #ddd;
}

.container-login input {
  width: 100%;
  padding: 10px;
  background-color: #2b2b2b;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

.container-login input::placeholder {
  color: #aaa;
}

.botao-login {
  width: 100%;
  background-color: #ffffff;
  color: rgb(3, 3, 3);
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.botao-login:hover {
  background-color: #919191;
}

/* Estilo exclusivo para a página de recuperar senha */
.container-recuperar {
  background-color: #1a1a1a;
  max-width: 500px;
  margin-top: 160px;
  margin-bottom: 12rem;
  padding: 50px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.07);
}

.container-recuperar h1 {
  font-size: 1.8rem;
  color: #c0c0c0;
}

.container-recuperar .botao-login {
  background-color: #c0c0c0;
  color: #000;
}

.container-recuperar .botao-login:hover {
  background-color: #ffffff;
}

.mensagem-esqueci {
  margin-top: 10px;
  font-size: 0.95rem;
}

.mensagem-esqueci a {
  color: #3a9e40;
  text-decoration: none;
  font-weight: bold;
}

.mensagem-esqueci a:hover {
  text-decoration: underline;
}

.mensagem-registro {
  margin-top: 20px;
  font-size: 0.95rem;
}

.mensagem-registro a {
  color: #3a9e40;
  text-decoration: none;
  font-weight: bold;
}

.mensagem-registro a:hover {
  text-decoration: underline;
}

.imagem-login {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.container-redefinir {
  background-color: #1a1a1a;
  max-width: 500px;
  margin-top: 160px;
  margin-bottom: 12rem;
  padding: 50px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.07);
}

/*_______________________________________________________________________________________________________________________________________________*/
/* Painel do Cliente */
.painel-cliente {
  margin-top: 110px;
  padding: 2rem 7rem;
  background-color: #121212;
  min-height: calc(100vh - 110px);
  color: #c0c0c0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.painel-cliente h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.painel-cliente .menu-painel {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}

.painel-cliente .menu-painel li a {
  color: #c0c0c0;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: #2a2a2a;
  transition: background-color 0.3s ease;
}

.painel-cliente .menu-painel li a:hover {
  background-color: #575757;
}

.painel-cliente .conteudo-painel {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  color: #ddd;
}