/* ============================================================
   HERO — mensaje principal + tarjeta de cotización rápida
   ============================================================ */

.hero{
  background: linear-gradient(120deg, var(--color-blue-900) 0%, var(--color-blue-700) 55%, var(--color-blue-600) 100%);
  color: #fff;
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1{
  font-size: 42px;
  font-weight: 800;
}

.hero p.lead{
  font-size: 18px;
  color: #d4e0f2;
  max-width: 520px;
  margin-bottom: 26px;
}

.hero-badges{
  display: flex;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-badge{
  font-size: 13px;
  color: #cfe0f7;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.hero-badge .dot{
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
  background: var(--color-accent);
}

.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lead-card{
  background: #fff;
  color: var(--color-gray-900);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.lead-card h3{
  font-size: 20px;
}

.lead-card p{
  font-size: 13.5px;
  color: var(--color-gray-600);
  margin-bottom: 18px;
}

.lead-card input,
.lead-card select,
.lead-card textarea{
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-family: inherit;
}

.lead-card textarea{
  resize: vertical;
  min-height: 70px;
  line-height: 1.4;
}

.lead-card .btn-primary{
  width: 100%;
  justify-content: center;
}

.lead-card small{
  color: var(--color-gray-600);
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 11.5px;
}

.lead-card .hp-field{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-mensaje{
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
}

.form-mensaje.visible{
  display: block;
}

.form-mensaje.exito{
  background: rgba(31,161,92,0.12);
  color: var(--color-green);
}

.form-mensaje.error{
  background: rgba(220,53,69,0.1);
  color: #c0392b;
}

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

  .hero h1{
    font-size: 32px;
  }
}
