/**
 * Página /orcamento/ — captura de lead estilo WhatsApp (referência Tavora)
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body.page-orcamento {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  font-family: "Saira Expanded", system-ui, sans-serif;
  color: #1a1a1a;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(18, 172, 4, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #eef9eb 0%, #f7fbf5 45%, #fafafa 100%);
}

body.page-orcamento #wa-widget,
body.page-orcamento .wa-widget {
  display: none !important;
}

.orcamento-topbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, #0f9a04 0%, #12ac04 100%);
  color: #fff;
  text-align: center;
}

.orcamento-topbar__brand {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.orcamento-topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.95;
}

.orcamento-topbar__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #7dff6a;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.orcamento-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 2rem 1.25rem 2.5rem;
}

.orcamento-page {
  width: 100%;
  max-width: 34rem;
  text-align: center;
}

.orcamento-page__intro {
  margin-bottom: 1.5rem;
}

.orcamento-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: #12ac04;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orcamento-page__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111;
}

.orcamento-page__brand {
  display: inline;
  padding: 0.08em 0.28em;
  border-radius: 0.2em;
  background: #12ac04;
  color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.orcamento-page__desc {
  margin: 0 auto;
  max-width: 34ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4a4a4a;
}

.orcamento-card {
  width: 100%;
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.orcamento-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.orcamento-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.orcamento-form__field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.orcamento-form__field input {
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid #d8d8d8;
  border-radius: 0.65rem;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.35;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.orcamento-form__field input::placeholder {
  color: #aaa;
}

.orcamento-form__field input:focus {
  outline: none;
  border-color: #12ac04;
  box-shadow: 0 0 0 3px rgba(18, 172, 4, 0.18);
}

.orcamento-form__phone {
  display: flex;
  align-items: stretch;
  border: 1px solid #d8d8d8;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.orcamento-form__phone:focus-within {
  border-color: #12ac04;
  box-shadow: 0 0 0 3px rgba(18, 172, 4, 0.18);
}

.orcamento-form__phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  border-right: 1px solid #e5e5e5;
  background: #fafafa;
  color: #555;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.orcamento-form__phone input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.orcamento-form__phone input:focus {
  box-shadow: none;
}

.orcamento-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.25rem;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(180deg, #57f255 0%, #12ac04 55%, #0a8a03 100%);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(18, 172, 4, 0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}

.orcamento-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(18, 172, 4, 0.42);
}

.orcamento-form__submit:active {
  transform: translateY(0);
}

.orcamento-form__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.orcamento-form__message {
  min-height: 1.25rem;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.orcamento-form__message.is-error {
  color: #c0392b;
}

.orcamento-form__message.is-success {
  color: #0a8a03;
}

.orcamento-legal {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #888;
  text-align: center;
}

.orcamento-legal a {
  color: #12ac04;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.orcamento-back {
  display: inline-block;
  margin-top: 1.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #555;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.orcamento-back:hover {
  color: #12ac04;
}

@media (min-width: 640px) {
  .orcamento-main {
    padding-top: 2.75rem;
  }

  .orcamento-card {
    padding: 1.75rem 1.65rem 1.35rem;
  }
}
