/* =========================================
   STANDS PARA EXPOS — extiende css/promocionales.css
   (misma base visual: hero, trust, projects/portafolio,
   categorías, cta-bar, lightbox — reutilizados tal cual)
   ========================================= */

/* ── HERO: imagen de fondo propia + versión compacta ──────
   El H1 exigido (más largo que el de promocionales.html) no
   cabe en una pantalla de laptop con el alto/spacing heredado
   de promocionales.css, así que se compacta aquí sin tocar el
   texto del H1. */
.stands-page #promo-hero {
  background:
    radial-gradient(circle at top left, rgba(185, 77, 40, 0.3), transparent 34%),
    linear-gradient(145deg, rgba(13, 28, 41, 0.88), rgba(9, 20, 31, 0.72)),
    url("../img/stands/stand-para-expo-cdmx-markekint.jpg") center 30% / cover no-repeat;
  min-height: 0;
  padding: 2.4rem 0 2rem;
}

/* La tarjeta hero del portafolio (promocionales.css) usa un recorte 21:9
   pensado para fotos horizontales; se usa un collage de 3 fotos reales del
   mismo proyecto (ancho natural ~3:1) en vez de recortar una sola foto
   vertical. width:100% es necesario porque aspect-ratio + max-height
   combinados hacían que el ancho se calculara a partir del alto máximo
   en vez de llenar el contenedor, dejando un hueco vacío a la derecha. */
.stands-page .project-card--hero .project-card-img {
  aspect-ratio: 3 / 1;
  max-height: 440px;
  width: 100%;
}
.stands-page .project-card--hero .project-card-img img {
  width: 100%;
  object-position: center center;
}
@media (max-width: 767.98px) {
  .stands-page .project-card--hero .project-card-img {
    aspect-ratio: 2 / 1;
    max-height: 260px;
    width: 100%;
  }
}

/* Portafolio: 8 tarjetas en el subgrid — se auto-acomodan en vez de
   depender del sistema fijo de "repeat(6,1fr) + span" de promocionales.css,
   pensado para 6. Así siempre quedan filas parejas sin huecos. */
.stands-page .projects-subgrid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.stands-page .projects-subgrid .project-card,
.stands-page .projects-subgrid .project-card--portrait {
  grid-column: auto;
}

.stands-page #promo-hero h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  margin-bottom: 0.75rem;
}

.stands-page #promo-hero .hero-badge {
  padding: 0.5rem 1.2rem;
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  margin-bottom: 1rem;
}

.stands-page #promo-hero .lead {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  margin-bottom: 1.2rem;
}

.stands-page #promo-hero .hero-benefits {
  gap: 0.35rem 2.5rem;
  margin-bottom: 1.4rem;
}

.stands-page #promo-hero .hero-benefits li {
  font-size: 0.86rem;
}

/* CTA "Cotiza tu stand": reutiliza la forma de .btn-hero-secondary pero
   en naranja de marca en vez de vidrio translúcido, para que destaque
   como el CTA principal de la página. */
.stands-page .js-quote-cta.btn-hero-secondary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(185, 77, 40, 0.38);
}
.stands-page .js-quote-cta.btn-hero-secondary:hover {
  background: #a1431f;
  border-color: #a1431f;
  color: #fff;
}

@media (max-width: 767.98px) {
  .stands-page #promo-hero {
    padding: 2rem 0 1.75rem;
  }
  .stands-page #promo-hero h1 {
    font-size: clamp(1.6rem, 7.5vw, 2.1rem);
  }
}

/* ── TRUST SECTION: chips de proyectos en vez de logos ─── */
.st-trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.st-trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  background: #f5f6f8;
  border: 1px solid rgba(24, 33, 47, 0.08);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--secondary);
}
.st-trust-chips span i {
  color: var(--primary);
  font-size: 0.8rem;
}
.st-trust-chips span img {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

/* ── CATEGORY-STYLE GRID para "servicio integral" (8 pasos) ── */
.st-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 991.98px) {
  .st-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .st-process-grid { grid-template-columns: 1fr; }
}
.st-process-grid .cat-card-img {
  aspect-ratio: 3 / 2;
  position: relative;
  padding: 0;
  background: var(--secondary);
}
.st-process-grid .cat-card-img img {
  object-fit: cover;
  border-radius: 0;
}
.st-process-grid .st-process-num {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ── STANDS PERSONALIZADOS ────────────────────────────── */
.st-personalized-section {
  background: #fff;
}
.st-personalized {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 991.98px) {
  .st-personalized { grid-template-columns: 1fr; }
}
.st-personalized-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(13, 45, 74, 0.14);
  aspect-ratio: 4 / 5;
}
.st-personalized-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.st-factor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 575.98px) {
  .st-factor-list { grid-template-columns: 1fr; }
}
.st-factor-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  color: var(--secondary);
  font-weight: 600;
}
.st-factor-list i {
  color: var(--primary);
  margin-top: 0.2rem;
}

/* ── RENDERIZACIÓN: render vs. terminado ──────────────── */
.st-render-section {
  background: transparent;
}
.st-render-group-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.st-render-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
@media (max-width: 767.98px) {
  .st-render-compare { grid-template-columns: 1fr; }
}
.st-render-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(13, 45, 74, 0.14);
}
.st-render-panel img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.st-render-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.st-render-tag--render { background: #17b8e0; color: #fff; }
.st-render-tag--final { background: var(--primary); color: #fff; }
.st-render-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.st-render-features span {
  background: rgba(185, 77, 40, 0.1);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── RENTA O VENTA ─────────────────────────────────────── */
.st-rental-section {
  background: #fff;
}
.st-rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
@media (max-width: 767.98px) {
  .st-rental-grid { grid-template-columns: 1fr; }
}
.st-rental-card {
  background: rgba(255, 252, 246, 0.97);
  border: 1px solid rgba(24, 33, 47, 0.07);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 6px 22px rgba(13, 45, 74, 0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.st-rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(13, 45, 74, 0.14);
}
.st-rental-card .st-rental-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.st-rental-card--rent .st-rental-icon { background: rgba(23, 184, 224, 0.14); color: #17b8e0; }
.st-rental-card--buy .st-rental-icon { background: rgba(185, 77, 40, 0.12); color: var(--primary); }
.st-rental-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.st-rental-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.st-rental-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.st-rental-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.st-rental-card ul i { color: #22b573; margin-top: 0.2rem; }

/* ── FORMULARIO DE COTIZACIÓN ──────────────────────────── */
.st-quote-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #0f2533 0%, #163346 55%, #0c1d2b 100%);
}
.st-quote-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: rgba(255, 252, 246, 0.98);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
}
@media (max-width: 991.98px) {
  .st-quote-wrap { grid-template-columns: 1fr; }
}
.st-quote-side {
  background: linear-gradient(165deg, var(--secondary), #0d1c29);
  color: #fff;
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.st-quote-side .section-eyebrow { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.18); color: #ffb894; }
.st-quote-side h2 { font-family: "Space Grotesk", sans-serif; color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 0.8rem; }
.st-quote-side p { color: #cdd7e1; line-height: 1.6; margin-bottom: 1.5rem; }
.st-quote-perks { list-style: none; padding: 0; margin: 0; }
.st-quote-perks li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; margin-bottom: 0.7rem; color: #eef2f6; }
.st-quote-perks i { color: #6fe3ff; }
.st-quote-form { padding: 2.75rem 2.5rem; }
.st-form-row { display: flex; gap: 1rem; margin-bottom: 1rem; }
.st-form-row .st-field { flex: 1; min-width: 0; }
.st-field { margin-bottom: 1rem; }
.st-field label { display: block; font-family: "Space Grotesk", sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.35rem; }
.st-field input, .st-field select, .st-field textarea {
  width: 100%; box-sizing: border-box; padding: 0.65rem 0.85rem; border-radius: 12px;
  border: 1px solid #d7dbe0; font-size: 16px; font-family: inherit; background: #fff; color: #182029;
}
.st-field textarea { resize: vertical; min-height: 80px; }
.st-field input:focus, .st-field select:focus, .st-field textarea:focus {
  outline: none; border-color: #17b8e0; box-shadow: 0 0 0 3px rgba(23, 184, 224, 0.18);
}
.st-field input:invalid.touched, .st-field select:invalid.touched { border-color: #e0483f; }
.st-quote-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.st-quote-submit {
  width: 100%; margin-top: 0.4rem; padding: 0.95rem 1rem; border: none; border-radius: 999px;
  background: var(--primary); color: #fff; font-family: "Space Grotesk", sans-serif;
  font-weight: 800; font-size: 1rem; cursor: pointer; transition: background 0.22s ease, transform 0.22s ease;
  box-shadow: 0 10px 26px rgba(185, 77, 40, 0.32);
}
.st-quote-submit:hover { background: #a1431f; transform: translateY(-2px); }
.st-quote-submit:disabled { opacity: 0.7; cursor: default; transform: none; }
.st-quote-error { color: #e0483f; font-size: 0.82rem; margin: 0.5rem 0 0; display: none; }
.st-quote-error.show { display: block; }
@media (max-width: 575.98px) {
  .st-form-row { flex-direction: column; gap: 1rem; }
}

/* ── FAQ ────────────────────────────────────────────────── */
.st-faq-section { background: #fff; }
.st-faq-list { max-width: 820px; margin: 0 auto; }
.st-faq-item { border-bottom: 1px solid rgba(24, 33, 47, 0.08); }
.st-faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0;
  font-family: "Space Grotesk", sans-serif; font-size: 1.02rem; font-weight: 700; color: var(--secondary);
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
}
.st-faq-q i { transition: transform 0.25s ease; color: var(--primary); flex-shrink: 0; margin-left: 1rem; }
.st-faq-item.is-open .st-faq-q i { transform: rotate(180deg); }
.st-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.st-faq-a p { color: var(--muted); line-height: 1.65; padding-bottom: 1.25rem; margin: 0; }

/* ── Responsive: hero benefits a 3 columnas en desktop grande ── */
@media (min-width: 1200px) {
  .stands-page .hero-benefits { max-width: 640px; }
}
