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

/* Corpo da página e background */
body {
  font-family: Arial, sans-serif;
  height: 100vh;
  background: url('bg-construct-02.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

/* Camada escura para destacar texto */
.overlay {
  background-color: rgba(0,0,0,0.55);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Caixa principal */
.box {
  background-color: rgba(108, 6, 72, 0.9);
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Título */
h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Subtítulo */
h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f5d6eb;
}

/* Contatos */
.contato {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Ícones antes do texto */
.icon-zap::before {
  content: url('zap-icon.png');
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.icon-phone::before {
  content: url('phone-icon.png');
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* Responsividade */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 16px;
  }
  .contato {
    font-size: 18px;
    flex-direction: column;
    gap: 8px;
  }
  .box {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 14px;
  }
  .contato {
    font-size: 16px;
  }
}
