/* ============================================================
   ADIÇÕES — bloco de oferta (preços + "escolha o jeito" + formulário)
   Complementa style.css + theme-aivana.css, não os substitui.
   ============================================================ */

/* OFERTA — 3 caminhos */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-card-strong);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-md);
}

.offer-card.offer-featured {
  border: 1px solid rgba(197, 160, 89, 0.45);
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.08), rgba(255,255,255,0.03));
}

.offer-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--white);
}

.offer-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
}

.offer-card .btn {
  margin-top: 18px;
  width: 100%;
}

/* FORMULÁRIO */
.lead-form-wrap {
  margin-top: 56px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(11, 24, 42, 0.96), rgba(8, 17, 31, 0.94));
  border: 1px solid rgba(197, 160, 89, 0.18);
  box-shadow: var(--shadow-lg);
  scroll-margin-top: 100px;
}

.lead-form-header {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.lead-form-header h3 {
  margin: 12px 0 10px;
  font-size: 1.6rem;
}

.lead-form-header p {
  color: var(--text-soft);
  line-height: 1.7;
}

.lead-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 6px;
  font-weight: 600;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  font-size: 0.95rem;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: rgba(197, 160, 89, 0.5);
}

/* Corrige o texto invisível (branco sobre branco) na lista de opções
   nativa do <select> em navegadores baseados em Chromium/Edge/Safari */
.lead-form select option {
  background: #0d1b2f;
  color: #f5f7fb;
}

.lead-form .btn {
  margin-top: 6px;
  width: 100%;
}

.lead-form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}

/* GARANTIA / RISCO ZERO */
.guarantee-strip {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line-soft);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.guarantee-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-strong);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .lead-form .form-row {
    grid-template-columns: 1fr;
  }
  .lead-form-wrap {
    padding: 24px;
  }
}
