/* ===================================================================
   Abundia — Preguntas frecuentes
   Requiere base.css
   =================================================================== */

/* Pill (variante crema para esta página) */
.pill {
  border-radius: 50px;
  padding: 16px 48px;
  margin: 0 auto 40px;
  width: max-content;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
.pill--cream { background: #fffdef; }
.pill h1 {
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #7cc242;
  margin: 0;
  text-align: center;
}

/* ===================================================================
   FAQ (fondo gris claro)
   =================================================================== */
.faq {
  position: relative;
  overflow: hidden;
  background: var(--gray-bg);
}
.faq__bg,
.contacto__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.faq__inner {
  position: relative;
  z-index: 2;
  padding-block: 56px 80px;
}
.faq__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.faq__hada {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 24px;
}
.faq__left .qa { margin-top: 8px; }
.faq__right { display: flex; flex-direction: column; gap: 24px; }

/* Pregunta + respuesta */
.qa__q {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #1f1f1f;
  margin: 0 0 8px;
}
.qa__a {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Tarjeta verde con 2 preguntas */
.qa-card {
  background: #a2e65e;
  border-radius: 18px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.qa-card .qa__q { color: #1f3514; }
.qa-card .qa__a { color: #335024; }

/* ===================================================================
   CONTÁCTANOS (fondo naranja)
   =================================================================== */
.contacto {
  position: relative;
  overflow: hidden;
}
.contacto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(13 20 26 / 12%);
  z-index: 1;
}
.contacto__inner {
  position: relative;
  z-index: 2;
  padding-block: 60px 80px;
}
.contacto__title {
  text-align: center;
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  margin: 0 0 40px;
}
.contacto__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Formulario de contacto → estilos en base.css (compartido con soluciones) */

/* Ilustración (se recorta a la altura del formulario) */
.contacto__art {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.contacto__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 920px) {
  .faq__cols { grid-template-columns: 1fr; gap: 32px; }
  .contacto__cols { grid-template-columns: 1fr; }
  .contacto__art { min-height: 280px; }
}
