:root {
  --gold: #c9a96e;
  --dark: #151515;
  --card: #1f1f1f;
  --text: #f0f0f0;
  --input-bg: #252525;
}

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

body {
  font-family: 'Monteserrat', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  color: white;
}

/* NAVBAR ALINHADA */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(21, 21, 21, 0.50);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1.25rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  font-family: 'Monteserrat', sans-serif;
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 3px;
  font-weight: normal;
}

.container {
  max-width: 1100px;
  margin: 140px auto 100px;
  padding: 0 5%;
}

.header-text {
  font-size: 1.65rem;
  text-align: center;
  margin-bottom: 60px;
}

.header-text h1 {
  font-size: 1.65rem;
  text-align: center;
}

.title {
  font-family: 'Monteserrat', sans-serif;
  color: var(--gold);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

/* CARD DE FORMULÁRIO ESTRUTURADO */
.encomenda-form {
  background: var(--card);
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 10px;
  color: #ccc;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

label i {
  color: var(--gold);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--input-bg);
  border: 1px solid #444;
  border-radius: 14px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: none;
  background: #2a2a2a;
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.1);
}

/* SECÇÕES INTERNAS */
.section-header {
  margin: 40px 0 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.section-header h3 {
  font-size: 1.25rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 15px;
}

.submit-btn {
  width: 100%;
  background: var(--gold);
  color: #151515;
  padding: 22px 8px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.4s;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.submit-btn:hover {
  background: #e0c080;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.success-message {
  display: none;
  text-align: center;
  padding: 40px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold);
  border-radius: 20px;
  margin-top: 30px;
  color: var(--gold);
}

@media (max-width: 768px) {
  .encomenda-form {
    padding: 30px 20px;
  }

  .title {
    font-size: 2.2rem;
  }
}