*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  width:100%;
  background:#000;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}

.hero{
  width:100%;
  position:relative;
  background:#000;
}

.hero-image{
  width:100%;
  height:auto;
  display:block;
}

/* ÁREAS CLICÁVEIS DO MENU SOBRE A IMAGEM PRINCIPAL */
.hotspot{
  position:absolute;
  display:block;
  z-index:5;
  cursor:pointer;
}

/*
  As posições abaixo foram ajustadas para a imagem principal aprovada.
  Caso você troque a imagem, talvez precise ajustar left/top/width/height.
*/
.hotspot.inicio{
  left:29.4%;
  top:5.2%;
  width:4.2%;
  height:3.8%;
}

.hotspot.sobre{
  left:35.8%;
  top:5.2%;
  width:7.2%;
  height:3.8%;
}

.hotspot.linhas{
  left:45.0%;
  top:5.2%;
  width:6.5%;
  height:3.8%;
}

.hotspot.produtos{
  left:53.6%;
  top:5.2%;
  width:7.2%;
  height:3.8%;
}

.hotspot.catalogos{
  left:62.8%;
  top:5.2%;
  width:8.0%;
  height:3.8%;
}

.hotspot.contato{
  left:72.3%;
  top:5.2%;
  width:6.4%;
  height:3.8%;
}

.hotspot.fale{
  left:83.3%;
  top:4.0%;
  width:13.5%;
  height:5.8%;
}

/* CONTEÚDO INTERNO */
.content{
  background:
    radial-gradient(circle at 70% 0%, rgba(201,151,46,.18), transparent 24%),
    repeating-linear-gradient(45deg, #050505 0 8px, #111 8px 16px, #030303 16px 24px);
  border-top:1px solid rgba(201,151,46,.35);
}

.section{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  padding:90px 0;
  border-bottom:1px solid rgba(201,151,46,.22);
}

.label{
  display:block;
  color:#c9972e;
  text-transform:uppercase;
  letter-spacing:7px;
  font-size:14px;
  font-weight:800;
  margin-bottom:14px;
}

h2{
  font-size:42px;
  text-transform:uppercase;
  margin-bottom:22px;
}

p{
  font-size:19px;
  line-height:1.65;
  color:#d6d6d6;
  max-width:950px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:35px;
}

.card,
.product,
.catalog-box{
  background:rgba(0,0,0,.72);
  border:1px solid rgba(201,151,46,.52);
  border-radius:18px;
  padding:28px;
  box-shadow:0 18px 35px rgba(0,0,0,.4);
}

.card h3,
.product h3{
  color:#c9972e;
  text-transform:uppercase;
  font-size:24px;
  margin-bottom:12px;
}

.product-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:35px;
}

.catalog-box{
  margin-top:30px;
  font-size:20px;
  color:#e8e8e8;
}

.button{
  margin-top:28px;
  display:inline-flex;
  padding:16px 28px;
  border:1px solid #c9972e;
  border-radius:8px;
  color:#f2c45f;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:900;
}

.button:hover{
  background:#c9972e;
  color:#000;
}

footer{
  padding:28px;
  text-align:center;
  color:#bdbdbd;
  background:#030303;
  border-top:1px solid rgba(201,151,46,.25);
}

@media(max-width:900px){
  .grid,
  .product-list{
    grid-template-columns:1fr;
  }

  h2{
    font-size:32px;
  }

  p{
    font-size:17px;
  }

  .section{
    padding:65px 0;
  }
}

@media(max-width:650px){
  /*
    No celular, a imagem principal continua intacta.
    Os hotspots seguem proporcionais porque usam porcentagem.
  */
  h2{
    font-size:28px;
  }

  .label{
    letter-spacing:4px;
  }
}
