/**
 * Fotomatón Tarragona — capa visual premium (2026)
 * Animaciones · bento · CRO · magia visual
 */

/* ─── Reveal on scroll (sin ocultar contenido si falla JS) ─── */
.ft-reveal {
  opacity: 1;
  transform: none;
}

html.js .ft-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .ft-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.ft-reveal--delay-1 { transition-delay: 0.1s; }
.ft-reveal--delay-2 { transition-delay: 0.2s; }
.ft-reveal--delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .ft-reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Hero cinematográfico ─── */
body.ft-tarragona .fg-hero--cinematic {
  position: relative;
  min-height: min(92vh, 900px);
  padding: 0;
  overflow: hidden;
  background: var(--fg-ink);
}

body.ft-tarragona .fg-hero--cinematic .fg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.ft-tarragona .fg-hero--cinematic .fg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

body.ft-tarragona .fg-hero--cinematic .fg-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 15% 85%, rgba(196, 97, 58, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(30, 69, 86, 0.55) 0%, transparent 50%),
    linear-gradient(105deg, rgba(28, 40, 48, 0.88) 0%, rgba(28, 40, 48, 0.55) 45%, rgba(28, 40, 48, 0.25) 100%);
}

body.ft-tarragona .fg-hero--cinematic .fg-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: end;
  min-height: min(92vh, 900px);
  padding: 7.5rem 0 4.5rem;
}

body.ft-tarragona .fg-hero--cinematic .fg-hero__copy .fg-eyebrow {
  color: var(--fg-gold-light);
}

body.ft-tarragona .fg-hero--cinematic .fg-hero__copy .fg-eyebrow::before {
  background: var(--fg-gold-light);
}

body.ft-tarragona .fg-hero--cinematic h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

body.ft-tarragona .fg-hero--cinematic .fg-hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 34rem;
}

body.ft-tarragona .fg-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
  list-style: none;
  padding: 0;
}

body.ft-tarragona .fg-hero__pills li {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(8px);
}

body.ft-tarragona .fg-hero__floats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-self: center;
  padding-bottom: 2rem;
}

body.ft-tarragona .fg-hero__float-card {
  border-radius: var(--fg-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.ft-tarragona .fg-hero__float-card:hover {
  transform: translateY(-6px) scale(1.02);
}

body.ft-tarragona .fg-hero__float-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

body.ft-tarragona .fg-hero__float-card--wide {
  grid-column: span 2;
}

body.ft-tarragona .fg-hero__float-card--wide img {
  aspect-ratio: 21/9;
}

body.ft-tarragona .fg-hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

body.ft-tarragona .fg-hero__scroll-hint i {
  animation: ft-bounce 2s ease infinite;
}

@keyframes ft-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .fg-hero__scroll-hint i { animation: none; }
  .fg-hero__float-card:hover { transform: none; }
}

/* ─── Showcase servicios (3 cards visuales) ─── */
.ft-showcase {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #fff;
}

.ft-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ft-showcase__card {
  position: relative;
  border-radius: var(--fg-radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--fg-shadow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.ft-showcase__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(30, 69, 86, 0.18);
  color: #fff;
}

.ft-showcase__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ft-showcase__card:hover img {
  transform: scale(1.06);
}

.ft-showcase__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.08) 0%, rgba(8, 18, 28, 0.35) 40%, rgba(8, 18, 28, 0.88) 72%, rgba(6, 14, 22, 0.96) 100%);
  z-index: 1;
}

.ft-showcase__body {
  position: relative;
  z-index: 2;
  padding: 1.85rem 1.75rem 1.65rem;
  background: linear-gradient(0deg, rgba(6, 14, 22, 0.55) 0%, transparent 100%);
}

.ft-showcase__tag {
  display: inline-block;
  font-family: var(--fg-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5d78a;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.65rem;
  background: rgba(232, 184, 74, 0.22);
  border: 1px solid rgba(245, 215, 138, 0.45);
  border-radius: 999px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Anula fg-premium (texto oscuro global) dentro de las cards */
.ft-showcase__card .ft-showcase__body h3,
body.fg-site .ft-showcase__card .ft-showcase__body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--fg-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.ft-showcase__card .ft-showcase__body p,
body.fg-site .ft-showcase__card .ft-showcase__body p {
  margin: 0 0 1.1rem;
  font-family: var(--fg-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
  opacity: 1;
}

.ft-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffe9a8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.2s, gap 0.2s;
}

.ft-showcase__card:hover .ft-showcase__link {
  color: #fff;
  gap: 0.6rem;
}

.ft-showcase__card--featured {
  grid-column: span 1;
  min-height: 420px;
}

/* ─── Bento galería exclusiva ─── */
.ft-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 0.85rem;
}

.ft-bento__item {
  position: relative;
  border-radius: var(--fg-radius);
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--fg-ink);
}

.ft-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s;
}

.ft-bento__item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.ft-bento__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.1rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 14, 22, 0.55) 35%, rgba(6, 14, 22, 0.92) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  transform: translateY(0);
  transition: padding 0.35s ease;
}

body.ft-tarragona .ft-bento__item figcaption {
  color: #fff !important;
}

.ft-bento__item:hover figcaption {
  padding-bottom: 1.15rem;
}

.ft-bento__item--a { grid-column: span 7; grid-row: span 2; }
.ft-bento__item--b { grid-column: span 5; grid-row: span 1; }
.ft-bento__item--c { grid-column: span 5; grid-row: span 1; }
.ft-bento__item--d { grid-column: span 4; grid-row: span 2; }
.ft-bento__item--e { grid-column: span 4; grid-row: span 1; }
.ft-bento__item--f { grid-column: span 4; grid-row: span 1; }

/* ─── Barra CRO sticky ─── */
.ft-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(30, 69, 86, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}

.ft-sticky-cta.is-visible {
  transform: translateY(0);
}

.ft-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--fg-container);
  margin: 0 auto;
  flex-wrap: wrap;
}

.ft-sticky-cta__text {
  color: #fff;
  font-size: 0.92rem;
  margin: 0;
}

.ft-sticky-cta__text strong {
  display: block;
  font-family: var(--fg-font-display);
  font-size: 1.05rem;
}

.ft-sticky-cta__actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.ft-sticky-cta .fg-btn--gold {
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
}

.ft-sticky-cta .fg-btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

/* ─── Social proof strip ─── */
.ft-proof-strip {
  background: linear-gradient(90deg, var(--fg-sand) 0%, var(--fg-cream) 50%, var(--fg-sand) 100%);
  padding: 2.5rem 0;
  border-block: 1px solid var(--fg-line);
}

.ft-proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.ft-proof-strip__item strong {
  display: block;
  font-family: var(--fg-font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--fg-sea);
  font-weight: 700;
  line-height: 1.1;
}

.ft-proof-strip__item span {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ─── Formulario premium glow ─── */
body.ft-tarragona .fg-form-panel {
  border-radius: var(--fg-radius-lg);
  box-shadow: 0 0 0 1px var(--fg-line), 0 24px 64px rgba(30, 69, 86, 0.1);
}

body.ft-tarragona .fg-form-panel__head h3 {
  font-family: var(--fg-font-display);
  color: var(--fg-sea);
}

body.ft-tarragona .fg-service-pick:has(input:checked) {
  background: var(--fg-sea);
  border-color: var(--fg-sea);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 69, 86, 0.25);
}

body.ft-tarragona .fg-btn--submit {
  background: linear-gradient(135deg, var(--fg-terra) 0%, #d4734a 100%);
  border-radius: 999px;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 28px -6px rgba(196, 97, 58, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

body.ft-tarragona .fg-btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -6px rgba(196, 97, 58, 0.6);
}

/* ─── Header CTA glow ─── */
body.ft-tarragona .fg-header__cta--desktop {
  box-shadow: 0 4px 20px -4px rgba(196, 97, 58, 0.45);
}

body.ft-tarragona .fg-header.is-scrolled .fg-header__cta--desktop {
  animation: ft-pulse-cta 3s ease infinite;
}

@keyframes ft-pulse-cta {
  0%, 100% { box-shadow: 0 4px 20px -4px rgba(196, 97, 58, 0.45); }
  50% { box-shadow: 0 4px 28px -2px rgba(196, 97, 58, 0.65); }
}

@media (prefers-reduced-motion: reduce) {
  body.ft-tarragona .fg-header.is-scrolled .fg-header__cta--desktop { animation: none; }
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  body.ft-tarragona .fg-hero--cinematic .fg-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  body.ft-tarragona .fg-hero--cinematic {
    min-height: auto;
  }

  body.ft-tarragona .fg-hero__floats {
    max-width: 400px;
    margin: 0 auto;
  }

  .ft-showcase__grid {
    grid-template-columns: 1fr;
  }

  .ft-showcase__card {
    min-height: 320px;
  }

  .ft-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .ft-bento__item--a { grid-column: span 2; grid-row: span 2; }
  .ft-bento__item--b,
  .ft-bento__item--c,
  .ft-bento__item--d,
  .ft-bento__item--e,
  .ft-bento__item--f { grid-column: span 1; grid-row: span 1; }

  .ft-proof-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-sticky-cta__inner {
    justify-content: center;
    text-align: center;
  }

  .ft-sticky-cta__text { display: none; }
}

@media (max-width: 520px) {
  .ft-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .ft-bento__item--a,
  .ft-bento__item--b,
  .ft-bento__item--c,
  .ft-bento__item--d,
  .ft-bento__item--e,
  .ft-bento__item--f {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ─── Iconos en lugar de fotos repetidas ─── */
.ft-feature-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 69, 86, 0.1);
}

.ft-feature-icons__item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--fg-radius);
  border: 1px solid rgba(30, 69, 86, 0.08);
}

.ft-feature-icons__item i {
  font-size: 1.5rem;
  color: var(--ft-terracotta, #c4613a);
  margin-bottom: 0.5rem;
  display: block;
}

.ft-feature-icons__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.ft-feature-icons__item span {
  font-size: 0.82rem;
  color: var(--fg-muted, #5a6a72);
}

.fg-events--icons .fg-event-card--icon {
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.fg-event-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ft-terracotta, #c4613a), var(--ft-mar, #1e4556));
  color: #fff;
  font-size: 1.25rem;
}

/* ─── Bento 4 items ─── */
.ft-bento--4 {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}

.ft-bento--4 .ft-bento__item--a { grid-column: span 2; grid-row: span 2; }
.ft-bento--4 .ft-bento__item--d { grid-row: span 2; }

@media (max-width: 900px) {
  .ft-bento--4 { grid-template-columns: 1fr 1fr; }
  .ft-feature-icons { grid-template-columns: 1fr; }
}

/* ─── Selector visual de servicios ─── */
.ft-chooser {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

.ft-chooser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ft-chooser__card {
  background: #fff;
  border-radius: var(--fg-radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--fg-shadow);
  border: 1px solid rgba(30, 69, 86, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ft-chooser__card--featured {
  border-color: var(--ft-terracotta, #c4613a);
  box-shadow: 0 20px 48px rgba(196, 97, 58, 0.15);
  transform: translateY(-4px);
}

.ft-chooser__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ft-mar, #1e4556), #2a5f72);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ft-chooser__card--featured .ft-chooser__icon {
  background: linear-gradient(135deg, var(--ft-terracotta, #c4613a), #d4784f);
}

.ft-chooser__card h3 {
  margin: 0;
  font-family: var(--fg-font-display);
  font-size: 1.35rem;
}

.ft-chooser__ideal {
  margin: 0;
  font-size: 0.92rem;
  color: var(--fg-muted, #5a6a72);
}

.ft-chooser__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.ft-chooser__list li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  font-size: 0.88rem;
}

.ft-chooser__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ft-terracotta, #c4613a);
  font-weight: 700;
}

.ft-chooser__tip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--ft-mar, #1e4556);
  color: #fff;
  border-radius: var(--fg-radius-lg);
}

.ft-chooser__tip i {
  font-size: 1.5rem;
  color: var(--fg-gold-light, #e8c97a);
}

.ft-chooser__tip p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: #fff !important;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

.ft-chooser__tip p strong {
  color: #f5d78a;
}

.ft-chooser__tip .fg-btn {
  flex-shrink: 0;
}

.ft-video-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ft-mar, #1e4556), #2d6275);
  min-height: 160px;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.ft-video-tile--espejo .fg-video-tile__media,
.ft-video-tile--360 .fg-video-tile__media {
  background: #1a1a1a;
}

.fg-extra__icon {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ft-mar, #1e4556), #2a5f72);
  border-radius: var(--fg-radius-lg);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.85);
}

.ft-contact-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.ft-contact-visual__stat {
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.ft-contact-visual__stat strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--fg-font-display);
  color: #fff !important;
}

.ft-contact-visual__stat span {
  font-size: 0.68rem;
  opacity: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Panel contacto con imagen (misma altura que formulario) */
.ft-contact-panel {
  position: relative;
  border-radius: var(--fg-radius-lg);
  overflow: hidden;
  min-height: 100%;
  height: 100%;
  box-shadow: 0 24px 64px rgba(30, 69, 86, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ft-contact-panel__bg {
  position: absolute;
  inset: 0;
}

.ft-contact-panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.ft-contact-panel__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(30, 69, 86, 0.55) 0%, rgba(12, 28, 36, 0.88) 55%, rgba(8, 18, 24, 0.96) 100%);
}

.ft-contact-panel__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem;
  color: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ft-contact-panel__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5d78a !important;
}

.ft-contact-panel__content h3 {
  margin: 0 0 0.65rem;
  font-family: var(--fg-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff !important;
  line-height: 1.2;
}

.ft-contact-panel__lead {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92) !important;
}

.ft-contact-panel__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.92rem;
}

.ft-contact-panel__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.92) !important;
}

.ft-contact-panel__list i {
  color: #f5d78a;
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
}

.ft-contact-panel__list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.ft-contact-panel__list a:hover {
  color: #f5d78a;
}

.ft-contact-panel__trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.ft-contact-panel__trust li {
  color: rgba(255, 255, 255, 0.88) !important;
}

.ft-contact-panel__trust i {
  color: #f5d78a;
  margin-right: 0.35rem;
}

.ft-contact-panel__back {
  margin: 1rem 0 0;
  font-size: 0.88rem;
}

.ft-contact-panel__back a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.ft-contact-panel .fg-btn--whatsapp {
  margin-top: 0.25rem;
}

body.ft-tarragona .fg-contact {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1.75rem;
}

body.ft-tarragona .fg-contact__aside {
  display: flex;
  min-height: 100%;
}

body.ft-tarragona .fg-form-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.ft-tarragona .fg-form-panel form {
  flex: 1;
}

body.ft-tarragona .fg-product__play {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fg-service-card__media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: linear-gradient(135deg, var(--ft-mar, #1e4556), #2a5f72);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.fg-service-card.is-featured .fg-service-card__media--icon {
  background: linear-gradient(135deg, var(--ft-terracotta, #c4613a), #d4784f);
}

@media (max-width: 768px) {
  .ft-chooser__grid { grid-template-columns: 1fr; }
  .ft-chooser__card--featured { transform: none; }
}

.ft-bento--gallery {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
}

.ft-bento--gallery .ft-bento__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.ft-bento--gallery .ft-bento__item:nth-child(5) { grid-row: span 2; }

@media (max-width: 900px) {
  .ft-bento--gallery { grid-template-columns: repeat(2, 1fr); }
  .ft-bento--gallery .ft-bento__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .ft-bento--gallery .ft-bento__item:nth-child(5) { grid-row: span 1; }
}

@media (max-width: 520px) {
  .ft-bento--gallery { grid-template-columns: 1fr; }
  .ft-bento--gallery .ft-bento__item:nth-child(1) { grid-column: span 1; }
}

/* ─── Rutas visuales (sin números) ─── */
.ft-rutas {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: var(--fg-cream, #f4f8f9);
}

.ft-rutas__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.ft-rutas__head .fg-eyebrow {
  color: var(--fg-sea, #1e4556);
}

.ft-rutas__head h2 {
  margin: 0 0 0.5rem;
  font-family: var(--fg-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--fg-ink, #1c2830);
}

.ft-rutas__head p {
  margin: 0;
  color: var(--fg-muted, #5a6b75);
  font-size: 0.98rem;
  line-height: 1.5;
}

.ft-rutas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.ft-rutas__card {
  position: relative;
  display: block;
  border-radius: var(--fg-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 16px 48px rgba(30, 69, 86, 0.15);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.ft-rutas__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 60px rgba(30, 69, 86, 0.22);
  color: #fff;
}

.ft-rutas__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ft-rutas__card:hover img {
  transform: scale(1.06);
}

.ft-rutas__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 31, 38, 0.95) 0%, rgba(15, 31, 38, 0.35) 50%, rgba(15, 31, 38, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.ft-rutas__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e8b84a, #c99a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1a2f38;
  margin-bottom: 0.85rem;
  box-shadow: 0 6px 20px rgba(232, 184, 74, 0.45);
}

.ft-rutas__overlay strong {
  display: block;
  font-family: var(--fg-font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

body.ft-tarragona .ft-rutas__overlay strong {
  color: #fff !important;
}

.ft-rutas__overlay span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

body.ft-tarragona .ft-rutas__overlay span {
  color: rgba(255, 255, 255, 0.92) !important;
}

.ft-rutas__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--fg-sea, #1e4556);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}

.ft-rutas__card:hover .ft-rutas__arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .ft-rutas__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .ft-rutas__card { aspect-ratio: 16/10; }
}

/* ─── Tarjetas equipo local (sección oscura) ─── */
.ft-local-cards {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.ft-local-cards__item {
  padding: 1.1rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--fg-radius);
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}

.ft-local-cards__item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 184, 74, 0.4);
}

.ft-local-cards__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.65rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #e8b84a, #c99a2e);
  color: #1a2f38;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ft-local-cards__item strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.ft-local-cards__item > span:last-child {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 768px) {
  .ft-local-cards { grid-template-columns: 1fr; }
}

/* ─── Galería 16 fotos ─── */
.ft-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ft-gallery-filter {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(30, 69, 86, 0.2);
  background: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.ft-gallery-filter.is-active,
.ft-gallery-filter:hover {
  background: var(--ft-mar, #1e4556);
  color: #fff;
  border-color: var(--ft-mar, #1e4556);
}

.ft-bento--full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  grid-auto-rows: 200px;
}

.ft-bento--full .ft-bento__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--fg-radius);
  cursor: zoom-in;
  margin: 0;
}

.ft-bento--full .ft-bento__item .fg-gallery__zoom {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ft-bento--full .ft-bento__item:hover .fg-gallery__zoom,
.ft-bento--full .ft-bento__item:focus-visible .fg-gallery__zoom {
  opacity: 1;
}

.ft-bento--full .ft-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ft-bento--full .ft-bento__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 0.85rem 0.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 14, 22, 0.75) 40%, rgba(6, 14, 22, 0.95) 100%);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .ft-bento--full { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}

@media (max-width: 520px) {
  .ft-bento--full { grid-template-columns: 1fr; }
}
