/**
 * Bloque "La hacemos única para vosotros" + "De vuestra foto a vuestra invitación"
 * Específico de la página de detalle de la plantilla Finca (template_detail.html.twig).
 * Tipografías ya cargadas por la página: Playfair Display (títulos) + Plus Jakarta Sans.
 * Mantiene SIEMPRE 2 columnas (también en móvil), como en el diseño de referencia.
 */
.fu {
  --fu-bg: #f7f0ea;
  --fu-bg-2: #f3e9e3;
  --fu-ink: #2f2a27;
  --fu-rose: #c46f67;
  --fu-rose-soft: #f6e2dd;
  --fu-rose-line: #ead7d1;
  --fu-text: #5d534e;
  --fu-serif: 'Playfair Display', Georgia, serif;
  --fu-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-family: var(--fu-sans);
  color: var(--fu-text);
}

.fu__block {
  padding: 3rem 1.25rem;
}
.fu-unique { background: var(--fu-bg); }
.fu-steps  { background: var(--fu-bg-2); }

.fu__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.fu__title {
  font-family: var(--fu-serif);
  font-weight: 600;
  color: var(--fu-ink);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.12;
  margin: 0 0 0.75rem;
}
.fu__sub {
  font-size: clamp(0.92rem, 2.6vw, 1.05rem);
  line-height: 1.5;
  margin: 0;
}

/* ── Parte 1: media + features (siempre 2 columnas) ── */
.fu-unique__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(0.75rem, 3vw, 2rem);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.fu-unique__media {
  /* La columna de características es más alta; mantenemos el sobre a la vista
     mientras se desplaza, centrado respecto a ellas. */
  position: sticky;
  top: 1.5rem;
}
.fu-unique__media img {
  display: block;
  width: 100%;
  height: auto;
}

.fu-feat {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fu-feat__item {
  display: flex;
  gap: clamp(0.6rem, 2vw, 1rem);
  align-items: flex-start;
  padding: clamp(0.7rem, 2vw, 1rem) 0;
  border-bottom: 1px solid var(--fu-rose-line);
}
.fu-feat__item:last-child { border-bottom: 0; }

.fu-feat__icon {
  flex: 0 0 auto;
  width: clamp(36px, 9vw, 48px);
  height: clamp(36px, 9vw, 48px);
  border-radius: 50%;
  background: var(--fu-rose-soft);
  color: var(--fu-rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fu-feat__icon svg { width: 52%; height: 52%; }

.fu-feat__title {
  font-family: var(--fu-serif);
  font-weight: 600;
  color: var(--fu-ink);
  font-size: clamp(0.95rem, 2.6vw, 1.12rem);
  margin: 0.15rem 0 0.25rem;
}
.fu-feat__text {
  font-size: clamp(0.8rem, 2.3vw, 0.92rem);
  line-height: 1.45;
  margin: 0;
}

/* ── Caja destacada ── */
.fu-note {
  display: flex;
  gap: 1rem;
  align-items: center;
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--fu-rose-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
}
.fu-note--center { text-align: center; flex-direction: column; gap: 0.75rem; }
.fu-note__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fu-rose-soft);
  color: var(--fu-rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fu-note__icon svg { width: 24px; height: 24px; }
.fu-note__text {
  margin: 0;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.5;
}
.fu-note__text strong { color: var(--fu-rose); font-weight: 700; }

/* ── Parte 2: 3 pasos (imagen + texto, siempre 2 columnas) ── */
.fu-steps__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
}
.fu-step {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(0.8rem, 3vw, 1.75rem);
  align-items: center;
}
.fu-step__media {
  position: relative;
}
.fu-step__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(80, 50, 45, 0.12);
}
.fu-step__badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fu-rose);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(150, 80, 70, 0.3);
}
.fu-step__badge svg { width: 20px; height: 20px; }

.fu-step__title {
  font-family: var(--fu-serif);
  font-weight: 600;
  color: var(--fu-ink);
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  margin: 0 0 0.4rem;
}
.fu-step__num { color: var(--fu-rose); font-weight: 700; }
.fu-step__text {
  font-size: clamp(0.85rem, 2.4vw, 0.98rem);
  line-height: 1.5;
  margin: 0;
}

.fu-step__arrow {
  display: flex;
  justify-content: center;
  color: var(--fu-rose);
  padding: 0.5rem 0;
  /* alinear con la columna de texto */
  padding-left: 35%;
}
.fu-step__arrow svg { width: 22px; height: 22px; }

@media (max-width: 380px) {
  .fu__block { padding: 2.25rem 0.9rem; }
}
