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

html, body {
     overflow-x: hidden !important;
     width: 100% !important;
     max-width: 100vw !important;
     position: relative;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0);
}

/* Cabeçalho */
#logo-coroa {
  position: fixed;
  top: 50px;
  left: 2rem;
  width: 70px;
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.3s ease;
}


.topo-site {
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: rgba(0, 0, 0, 0) solid 1px;
}

.hamburguer {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(255, 255, 255);
  position: fixed;
  right: 2rem;
  top: 30px;
  z-index: 2000;
}

.menu-lateral {
  position: fixed;
  display: flex;
  align-items: flex-start;
  top: 0;
  right: 0;
  height: 100%;
  width: 200px;
  background-color: #000;
  padding: 40px 20px;
  transform: translateX(100%); /* Esconde o menu pra fora da tela */
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  flex-direction: column; /* empilha verticalmente */
}

.menu-lateral.aberto {
  transform: translateX(0); /* Traz o menu pra dentro da tela */
  background-color: #808080;
  color: #ffffff;
  gap: 5px;
}

.menu-lateral a {
  color: white;            
  text-decoration: none;    
  transition: color 0.3s;
  margin-top: 80px;
  margin-bottom: -50px;
  font-size: 1.2rem;
  text-decoration: none;
  
}

.menu-lateral a:hover {
  color: #000000; /* efeito hover */
}

#fundo-escuro {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
}

.wrapper-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .wrapper-menu {
    display: none !important; /* sumir com menu horizontal */
  }
  #menu-hamburguer {
    display: block !important; /* mostrar o hambúrguer */
    cursor: pointer; /* muda o cursor pra mostrar que é clicável */
  }
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 40px;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0);
  flex-wrap: wrap;
  width: 100%;
  max-width: fit-content;
  box-sizing: border-box;
  height: 70px;
  overflow: hidden;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
  width: 100%;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: light;
  font-size: 1.2rem;
  text-align: center;
  line-height: 2;
  z-index: 1000;
  flex-wrap: nowrap;
  white-space: nowrap;
  display: inline-block;
}

.menu a:hover {
  color: #ffffff;
  background-color: #808080;
  padding: 1px 10px;
  border-radius: 10px;
}

.banner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 40px 20px;
  margin: 0;
  position: relative;
  gap: 20px;
  height: 90vh; 

}

/*.fotos1 {
  position: absolute;
  top: -18rem;
  left: -20vw;
  width: 100%;
  z-index: 0;
  
  }
  
  .fotos1 img {
    max-width: 100%;
    height: auto;
    opacity: 0.6;
    }
    
.fotos2 {
  position: absolute;
  bottom: -25rem;
  right: -25vw;
  width: auto;
  z-index: 10;
  
  }
  
  .fotos2 img {
    max-width: 80%;
    height: auto;
    opacity: 0.6;
    }

    .fotos3 {
      position: absolute;
      top: 60%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      z-index: -1;
      display: flex;
      align-items: center;
      justify-content: center;
      }
      
      .fotos3 img {
        max-width: 40rem; 
        width: 100%;
        height: auto;
        opacity: 0.4; 
        mask-image: linear-gradient(to top, transparent 0%, black 10%);
        -webkit-mask-image: linear-gradient(to top, transparent 0%, black 10%);
        }
        
        .conteudo-hero {
          margin-top: 150px;
          flex: 1 1 300px;
          text-align: center;
          padding: 20px;
          }
          
.conteudo-hero .logo {
  width: 200px;
  margin-bottom: 15px;
  }
  
  .conteudo-hero h1 {
    font-size: 8rem;
  margin: -50px 0 -30px;
  font-family: "Jomolhari", serif;
  font-weight: 400;
  font-style: normal;
}

.subtitulo {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  }
  
  .conteudo-hero p {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin: 40px 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  }
  */
  .bg-desktop,
  .bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
    margin: -1px 0 -50rem;
    
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0, 0, 0, 0.521) 10%, rgb(0, 0, 0) 20%);
  mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0, 0, 0, 0.473) 10%, rgb(0, 0, 0) 20%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Mostrar só desktop por padrão */
.bg-mobile {
  display: none;
}

/* Trocar para mobile em telas pequenas */
@media (max-width: 1024px) {
  .bg-desktop {
    display: none;
  }
  .bg-mobile {
    display: block;
  }
}

.btn-servicos {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.69) 0%, #000000 100%);
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid white;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 200px
}

.btn-servicos:hover {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.69) 0%, #ffffff 100%);
  color: rgb(255, 255, 255);
}


/*_______________________________________________________________________________________________________________________________________________*/

.sobre-nos {
  height: auto;
  background-color: #00000000;
  border: rgba(0, 0, 0, 0) solid 1px;
  margin-bottom: 1rem;
}

.cabecalho-sobre {
  margin: 30px 100px 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}   

.cabecalho-sobre .intro {
  text-align: left;
  font-size: 2rem;
  color: white;
  font-weight: 300;
  font-style: normal;
}

.cabecalho-sobre .titulo-principal {
  text-align: flex-start;
  font-size: 6rem;
  font-weight: bold;
  color: white;
  font-weight: 700;
  font-style: bold;
}

/* Layout do conteúdo */
.conteudo-sobre {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
  margin-bottom: 30px;
  padding: 0 50px 50px 20px;
}

.imagem-sobre img {
  width: 500px;
  height: auto;
  border-radius: 10px;
  align-items: flex-start;
  margin-left: 100px;
}

.texto-sobre {
  flex: 1;
  max-width: 1200px;
}

.texto-sobre h3 {
  font-size: 5rem;
  width: 100%;
  color: white;
  font-weight: 700;
  margin: 50px 0 20px;
  white-space: nowrap;
}

.texto-sobre p {
  font-size: 1.5rem;
  color: white;
  line-height: 1.6;
  margin: 130px 0 0;
}

.texto-lateral {
  max-width: 300px;
  padding: auto;
}

.texto-lateral p {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  color: white;
  line-height: 1.3;
  margin-left: 900px;
  margin-top: -295px;  
}

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

.contato {
    background: url('../imagens/Sistema2.png') rgba(31, 31, 31, 0);
    background-size: 900px 850px;
    background-repeat: no-repeat;
    background-position: left;    
    position: relative;
    color: #fffbfb;
    padding: 10rem 1.25rem;
    z-index: 1;
    font-family: "Iceland", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: auto;
  } 
  
  .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: #808080;
  color: #000000;
  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: 120px 20px 50px;
  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: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
  align-items: center;
}

.servico {
  background: #3d3d3d;
  border-radius: 12px;
  padding: 50px;
  display: flex; /* coloca imagem e texto lado a lado */
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: transform 0.3s, background 0.3s;
  width: 80%;

}

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

.servico img {
  width: 400px; /* tamanho fixo para imagem */
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0; /* impede a imagem de encolher */
 
}

.servico-conteudo {
  flex: 1;
}

.servico h3 {
  font-size: 2rem;
  color: #e0e0e0;
  margin: 0 0 10px 0; /* Espaço entre título e parágrafo */
  text-align: left;
}

.servico p {
  font-size: 1.5rem;
  color: #ccc;
  text-align: left;
  margin-top: 20px;
}

.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: 120px 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;
}
