/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Container principal */
body {
  background: #1f2937; /* cinza escuro neutro */
  color: #111827; /* quase preto */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

#container {
  width: 360px;
  min-height: 90vh;
  background: url('./assets/gesso-decoracao-fundo.png') no-repeat center center;
  background-size: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  padding: 24px;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay elegante */
#container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.5),   /* topo mais claro */
    rgba(255, 255, 255, 0.2)    /* degradê suave */
  );
  border-radius: 16px;
  z-index: 0;
}

#container > * {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Perfil */
#profile {
  margin-bottom: 30px;
}

#profile img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #d4af37; /* dourado sofisticado */
  margin-bottom: 15px;
  object-fit: cover;
}

#profile h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #374151; /* cinza elegante */
  margin-bottom: 6px;
}

#profile p {
  font-size: 1rem;
  color: #6b7280; /* cinza médio */
}

/* Menu de contato */
nav {
  margin-bottom: 30px;
  width: 100%;
}

nav .menu li {
  list-style: none;
  margin: 10px 0;
}

nav .menu a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f9fafb; /* branco gelo */
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  border: 1px solid #e5e7eb;
}

nav .menu a:hover {
  background: #d4af37; /* dourado */
  color: #fff;
  border-color: #d4af37;
  transform: translateY(-2px);
}


/* Caixa principal */
#form-orcamento {
  display: none;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  max-width: 650px;
  margin: 20px auto;
}

/* Título */
#form-orcamento h2 {
  color: #333;
  margin-bottom: 15px;
}

/* Labels */
#orcamentoForm label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

/* Inputs, selects e textarea */
#orcamentoForm input,
#orcamentoForm select,
#orcamentoForm textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

/* Checkboxes mais compactos e em linha */
#orcamentoForm .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* espaço entre eles */
  margin: 8px 0 15px 0;
}

#orcamentoForm .checkbox-group label {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 5px;
}


/* Botões container */
#orcamentoForm .botoes {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

/* Botão Enviar */
#orcamentoForm .btn-enviar {
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease; /* efeito suave */
}

#orcamentoForm .btn-enviar:hover {
  background: #1ebe57;   /* tom mais escuro */
  transform: scale(1.05); /* leve aumento */
}

/* Botão Cancelar */
#orcamentoForm .btn-cancelar {
  background: #ccc;
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease; /* efeito suave */
}

#orcamentoForm .btn-cancelar:hover {
  background: #999;       /* tom mais escuro */
  transform: scale(1.05); /* leve aumento */
}





/* Redes sociais */
#social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  width: 100%;
}

#social-links a {
  color: #d4af37; /* dourado */
  font-size: 1.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

#social-links a:hover {
  color: #6b7280; /* cinza */
  transform: scale(1.2);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Responsividade */
@media (max-width: 420px) {
  #container {
    padding: 18px;
    width: 100%;
  }

  #profile img {
    width: 95px;
    height: 95px;
  }

  #profile h2 {
    font-size: 1.2rem;
  }
}
