/* ============================================================
   VENDAS.CSS — Blocos de conversão adicionados ao hub-landing
   Paleta: dark #08080A / orange #F97316 / rose alerts
   ============================================================ */

/* ----- Âncora de Preço ----- */
.price-anchor {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 22px auto 0;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(249,115,22,0.06), rgba(249,115,22,0.02));
  border: 1px solid rgba(249,115,22,0.28);
  border-radius: 14px;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 8px 32px -16px rgba(249,115,22,0.4);
}
.price-anchor .pa-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.price-anchor .pa-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(236, 234, 229, 0.5);
  text-transform: uppercase;
}
.price-anchor .pa-value {
  font-size: 22px;
  font-weight: 700;
  color: #ECEAE5;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}
.price-anchor .pa-value i {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.55;
  margin-left: 2px;
}
.price-anchor .pa-old .pa-value { color: #7D7670; }
.price-anchor .pa-old s { text-decoration-color: #E04338; text-decoration-thickness: 2px; }
.price-anchor .pa-new .pa-value { color: #F97316; text-shadow: 0 0 24px rgba(249,115,22,0.4); font-size: 28px; }
.price-anchor .pa-arrow {
  font-size: 22px;
  color: #F97316;
  font-weight: 300;
  opacity: 0.7;
}
.price-anchor .pa-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 3px 10px;
  background: #F97316;
  color: #08080A;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 4px 14px rgba(249,115,22,0.5);
}

/* ----- Reasseguramento ----- */
.hero-reassure {
  list-style: none;
  margin: 18px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
  font-size: 13px;
  color: rgba(236, 234, 229, 0.7);
  font-family: 'Inter', system-ui, sans-serif;
}
.hero-reassure li { display: inline-flex; align-items: center; gap: 6px; }
.hero-reassure .hr-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(40, 179, 98, 0.14);
  color: #28B362;
  font-size: 11px;
  font-weight: 700;
}
.hero-reassure .hr-sep { color: rgba(236, 234, 229, 0.2); }

/* ----- Pain Section ----- */
.pain-section {
  position: relative;
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
}
.pain-head { text-align: center; margin-bottom: 56px; }
.pain-head .section-title em {
  font-style: italic;
  color: #F97316;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pain-card {
  background: linear-gradient(180deg, #111114 0%, #0C0C10 100%);
  border: 1px solid #1D1D22;
  border-radius: 16px;
  padding: 26px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(224, 67, 56, 0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.pain-card:hover {
  border-color: rgba(224, 67, 56, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -20px rgba(224, 67, 56, 0.3);
}
.pain-card:hover::before { opacity: 1; }
.pain-ico { font-size: 28px; margin-bottom: 14px; }
.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ECEAE5;
  margin: 0 0 10px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.3;
}
.pain-card p {
  font-size: 13.5px;
  color: rgba(236, 234, 229, 0.6);
  line-height: 1.55;
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
}
.pain-foot {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 15px;
  color: rgba(236, 234, 229, 0.85);
  font-family: 'Inter', system-ui, sans-serif;
}
.pain-foot strong { color: #F97316; }

/* ----- FAQ ----- */
.faq-section {
  padding: 100px 32px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head .section-title em {
  font-style: italic;
  color: #F97316;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #111114;
  border: 1px solid #1D1D22;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item[open] {
  border-color: rgba(249, 115, 22, 0.35);
  background: linear-gradient(180deg, rgba(249,115,22,0.04), rgba(17,17,20,1));
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #ECEAE5;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: #F97316;
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: #F97316; }
.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 14px;
  color: rgba(236, 234, 229, 0.68);
  line-height: 1.6;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ----- Responsive ----- */
@media (max-width: 880px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-section, .faq-section { padding: 64px 20px; }
  .price-anchor { gap: 10px; padding: 14px 16px; }
  .price-anchor .pa-arrow { display: none; }
  .price-anchor .pa-new .pa-value { font-size: 22px; }
  .price-anchor .pa-value { font-size: 18px; }
  .hero-reassure { font-size: 12px; gap: 6px 10px; }
  .hero-reassure .hr-sep { display: none; }
}
