/* Strutech F2 · Home header + hero grid (publish preview) */
:root {
  --st-teal: #049CB3;
  --st-teal-dark: #037a8c;
  --st-ink: #0f172a;
  --st-muted: #64748b;
  --st-paper: #f8fafc;
}

/* —— About mosaic (slide 3) —— */
.about-mosaic-section {
  padding: 0 !important;
  margin: 0;
  background: #fff;
}

.about-mosaic-section .container {
  display: none;
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 8px;
  height: min(88vh, 900px);
  min-height: 520px;
  width: 100%;
}

.about-div1 {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
  display: flex;
  align-items: stretch;
  padding: clamp(1rem, 2.5vw, 2rem);
  background: linear-gradient(145deg, #0f172a 0%, #037a8c 100%);
  color: #fff;
}

.about-div1 .about-mosaic__title {
  display: flex;
  align-items: center;
  height: 100%;
}

.about-div2 {
  grid-column: 1 / span 3;
  grid-row: 3 / span 3;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: var(--st-paper);
  color: var(--st-ink);
  display: flex;
  align-items: center;
}

.about-div3 {
  grid-column: 4 / span 2;
  grid-row: 1 / span 5;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.about-mosaic__title {
  font-family: "Exo", system-ui, sans-serif;
  font-size: clamp(2.8rem, 7.2vw, 6.2rem);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.045em;
  margin: 0;
  width: 100%;
  max-width: none;
}

.about-mosaic__body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.about-mosaic__body p {
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  line-height: 1.4;
  color: #334155;
  margin: 0;
  max-width: none;
}

.about-mosaic__feats {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.25rem;
}

.about-mosaic__feats li {
  font-size: .82rem;
  font-weight: 600;
  color: var(--st-teal-dark);
  position: relative;
  padding-left: 1.1rem;
}

.about-mosaic__feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--st-teal);
}

.about-mosaic__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  background: #0f172a;
}

.about-mosaic__video-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: var(--st-ink);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .about-mosaic {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-div1,
  .about-div2,
  .about-div3 {
    grid-column: 1;
    grid-row: auto;
  }
  .about-div1 { min-height: 180px; }
  .about-div2 { min-height: auto; }
  .about-div3 { min-height: 280px; }
}

/* Cart in header (tienda / producto) */
body.f2-site .cart-toggle,
body.f2-home .cart-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--st-ink);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background .2s, color .2s;
  text-decoration: none;
}

body.f2-site .cart-toggle:hover,
body.f2-home .cart-toggle:hover {
  background: rgba(4, 156, 179, .1);
  color: var(--st-teal);
}

body.f2-site .cart-toggle .count,
body.f2-home .cart-toggle .count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--st-teal);
  color: #fff;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-weight: 700;
  font-family: "Exo", system-ui, sans-serif;
}

body.f2-home {
  font-family: "Exo", system-ui, sans-serif;
}

/* Also apply chrome styles on mockup pages */
body.f2-site .header,
body.f2-home .header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: none !important;
  border-bottom: none !important;
  padding: 0 !important;
}

body.f2-site .navbar,
body.f2-home .navbar {
  padding: 0 !important;
  background: transparent !important;
}

body.f2-site .nav-container,
body.f2-home .nav-container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 1.1rem clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

body.f2-site .nav-logo img,
body.f2-site .logo-img,
body.f2-home .nav-logo img,
body.f2-home .logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: 180px !important;
  filter: none !important;
  transform: none !important;
}

body.f2-site .nav-menu,
body.f2-home .nav-menu {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  flex-direction: row !important;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex !important;
}

body.f2-site .nav-link,
body.f2-home .nav-link {
  color: var(--st-ink) !important;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem 0 !important;
  position: relative;
  font-family: "Exo", system-ui, sans-serif !important;
}

body.f2-site .nav-link::after,
body.f2-home .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--st-teal);
  transition: width .25s ease;
}

body.f2-site .nav-link:hover::after,
body.f2-home .nav-link:hover::after {
  width: 100%;
}

body.f2-site .nav-actions,
body.f2-home .nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-self: end;
}

body.f2-site .search-toggle,
body.f2-site .nav-burger,
body.f2-home .search-toggle,
body.f2-home .nav-burger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--st-ink);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background .2s, color .2s;
}

body.f2-site .nav-burger,
body.f2-home .nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

body.f2-site .nav-burger span,
body.f2-home .nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

@media (max-width: 900px) {
  body.f2-site .nav-menu,
  body.f2-home .nav-menu {
    display: none !important;
  }
  body.f2-site .nav-menu.mobile-open,
  body.f2-home .nav-menu.mobile-open {
    display: flex !important;
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff !important;
    flex-direction: column !important;
    gap: 0;
    padding: 1rem 1.5rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
  }
  body.f2-site .nav-burger,
  body.f2-home .nav-burger {
    display: inline-flex;
  }
  body.f2-site .nav-container,
  body.f2-home .nav-container {
    grid-template-columns: auto 1fr;
  }
  body.f2-site .header,
  body.f2-home .header {
    position: relative;
  }
}

/* —— Shop mosaic (segunda diapositiva) —— */
.shop-mosaic-wrap {
  width: 100%;
  padding: 0;
  margin: 0 0 0;
}

.shop-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 8px;
  height: min(88vh, 900px);
  min-height: 520px;
  width: 100%;
}

.shop-div1 {
  grid-column: 1 / span 1;
  grid-row: 1 / span 5;
}

.shop-div2 {
  grid-column: 2 / span 2;
  grid-row: 1 / span 3;
}

.shop-div3 {
  grid-column: 4 / span 2;
  grid-row: 1 / span 3;
}

.shop-div4 {
  grid-column: 2 / span 2;
  grid-row: 4 / span 2;
}

.shop-div5 {
  grid-column: 4 / span 2;
  grid-row: 4 / span 2;
}

.shop-div2,
.shop-div3,
.shop-div4,
.shop-div5 {
  background: #f4f6f8;
}

.shop-div2 .mosaic-img,
.shop-div3 .mosaic-img,
.shop-div4 .mosaic-img,
.shop-div5 .mosaic-img {
  object-fit: contain;
  object-position: center;
  padding: 8% 8% 18%;
  box-sizing: border-box;
}

.shop-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(165deg, #0f172a 0%, #037a8c 100%);
  color: #fff;
  text-decoration: none;
  z-index: 2;
}

.shop-copy__eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .85rem;
}

.shop-copy__title {
  font-family: "Exo", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.shop-copy--fill {
  justify-content: space-between;
  padding: clamp(1.1rem, 2.5vw, 2rem);
}

.shop-copy--fill .shop-copy__title {
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.shop-copy--fill .shop-copy__text {
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  max-width: none;
  line-height: 1.4;
  margin-top: 1rem;
  opacity: .92;
}

.shop-copy__text {
  font-size: .92rem;
  line-height: 1.45;
  opacity: .9;
  max-width: 18ch;
}

.shop-copy__cta {
  margin-top: 1.5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.shop-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(15, 23, 42, .82), transparent 55%);
  color: #fff;
  pointer-events: none;
}

.shop-caption .shop-copy__title {
  margin-bottom: .15rem;
  font-size: 1.15rem;
}

.shop-caption .shop-copy__text {
  max-width: none;
  font-size: .82rem;
  opacity: .9;
}

.div2 .mosaic-img,
.div4 .mosaic-img {
  object-fit: contain;
  object-position: center;
  padding: 6%;
  box-sizing: border-box;
}

.mosaic-cell .cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  background: rgba(255,255,255,.92);
  color: var(--st-ink);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .shop-mosaic {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .shop-div1 { grid-column: 1 / -1; grid-row: auto; min-height: 220px; }
  .shop-div2 { grid-column: 1; grid-row: auto; min-height: 220px; }
  .shop-div3 { grid-column: 2; grid-row: auto; min-height: 220px; }
  .shop-div4 { grid-column: 1; grid-row: auto; min-height: 200px; }
  .shop-div5 { grid-column: 2; grid-row: auto; min-height: 200px; }
  .shop-copy__text { max-width: none; }
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.75rem 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-overlay__top {
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
}

.search-overlay__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 12vh;
}

.search-overlay__label {
  font-family: "Exo", system-ui, sans-serif;
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 700;
  color: #e2e8f0;
  line-height: .9;
  margin-bottom: 1.25rem;
  letter-spacing: -.04em;
  user-select: none;
}

.search-overlay__form {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 2px solid var(--st-ink);
  padding-bottom: .65rem;
}

.search-overlay__form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-family: inherit;
  color: var(--st-ink);
  background: transparent;
}

.search-overlay__form button {
  background: var(--st-teal);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .65rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

/* —— Hero mosaic —— */
body.f2-home .hero {
  min-height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.f2-home .hero-container,
body.f2-home #arch-background {
  display: none !important;
}

.home-mosaic-wrap {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.home-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 8px;
  height: min(92vh, 960px);
  min-height: 560px;
  width: 100%;
}

.mosaic-cell {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  isolation: isolate;
  min-height: 0;
}

.mosaic-cell img.mosaic-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.mosaic-cell:hover img.mosaic-img {
  transform: scale(1.04);
}

.div1 {
  grid-column: 1 / span 1;
  grid-row: 1 / span 2;
}

.div2 {
  grid-column: 1 / span 2;
  grid-row: 3 / span 3;
  background: #f4f6f8;
}

.div3 {
  grid-column: 3 / span 3;
  grid-row: 1 / span 5;
}

.mosaic-cell.div3 .mosaic-img {
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
  filter: saturate(1.06) contrast(1.08) brightness(1.06);
}

.mosaic-cell.div3:hover .mosaic-img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

/* Velo suave: profundidad sin tapar hotspots ni la foto */
.div3::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .06) 0%, transparent 16%, transparent 82%, rgba(15, 23, 42, .05) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, .10) 0%, transparent 22%);
}

.div3 .hotspot {
  z-index: 5;
}

.div4 {
  grid-column: 2 / span 1;
  grid-row: 1 / span 2;
  background: #f4f6f8;
}

/* Hook panel */
.mosaic-hook {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  background: linear-gradient(160deg, rgba(4, 156, 179, .92) 0%, rgba(15, 23, 42, .88) 100%);
  color: #fff;
  text-decoration: none;
  z-index: 2;
}

.mosaic-hook--static {
  justify-content: center;
  align-items: stretch;
  padding: clamp(.85rem, 2vw, 1.35rem);
  cursor: default;
  pointer-events: none;
}

.mosaic-hook--static .mosaic-hook__title {
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  width: 100%;
  max-width: none;
  margin: 0;
  font-weight: 700;
}

.mosaic-hook__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: .45rem;
}

.mosaic-hook__title {
  font-family: "Exo", system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.mosaic-hook__cta {
  margin-top: .75rem;
  font-size: .78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  opacity: .95;
}

/* Hotspots */
.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: none;
  border-radius: 50%;
  background: var(--st-teal);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(4, 156, 179, .45);
  animation: hotspotPulse 2.2s ease-out infinite;
  transition: transform .15s, background .15s;
}

.hotspot:hover,
.hotspot:focus-visible {
  transform: scale(1.12);
  background: var(--st-teal-dark);
  animation: none;
  outline: none;
}

@keyframes hotspotPulse {
  0% { box-shadow: 0 0 0 0 rgba(4, 156, 179, .5); }
  70% { box-shadow: 0 0 0 14px rgba(4, 156, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(4, 156, 179, 0); }
}

.hotspot-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  max-width: 220px;
  background: #fff;
  color: var(--st-ink);
  padding: .7rem .85rem;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  text-align: left;
  z-index: 6;
}

.hotspot-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top-color: #fff;
}

.hotspot:hover .hotspot-tip,
.hotspot:focus-visible .hotspot-tip,
.hotspot.is-open .hotspot-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.hotspot-tip strong {
  display: block;
  font-size: .88rem;
  margin-bottom: .2rem;
}

.hotspot-tip span {
  display: block;
  font-size: .78rem;
  color: var(--st-muted);
}

.hotspot-tip em {
  display: block;
  margin-top: .35rem;
  font-style: normal;
  font-weight: 700;
  font-size: .92rem;
  color: var(--st-teal-dark);
}

@media (max-width: 900px) {
  body.f2-home .nav-menu {
    display: none !important;
  }

  body.f2-home .nav-menu.mobile-open {
    display: flex !important;
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff !important;
    flex-direction: column !important;
    gap: 0;
    padding: 1rem 1.5rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
  }

  body.f2-home .nav-menu.mobile-open .nav-link {
    padding: .85rem 0 !important;
  }

  body.f2-home .nav-burger {
    display: inline-flex;
  }

  body.f2-home .nav-container {
    grid-template-columns: auto 1fr;
  }

  body.f2-home .header {
    position: relative;
  }

  .home-mosaic {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .div1 { grid-column: 1; grid-row: 1; min-height: 180px; }
  .div4 { grid-column: 2; grid-row: 1; min-height: 180px; }
  .div2 { grid-column: 1 / -1; grid-row: 2; min-height: 260px; }
  .div3 { grid-column: 1 / -1; grid-row: 3; min-height: 360px; }
}

/* —— Clientes + recomendaciones —— */
.social-proof {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 3rem);
  background: #fff;
}

.testimonials-section {
  background: var(--st-paper);
  border-top: 1px solid #e2e8f0;
}

.social-proof__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.social-proof__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--st-teal);
  margin: 0 0 .65rem;
}

.social-proof__title {
  font-family: "Exo", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--st-ink);
  margin: 0 0 2rem;
  line-height: 1.15;
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: stretch;
}

.client-mark {
  flex: 1 1 160px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.25rem;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.client-mark span {
  font-family: "Exo", system-ui, sans-serif;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--st-ink);
  text-align: center;
  line-height: 1.2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.testimonial {
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 220px;
}

.testimonial p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.45;
  color: #334155;
  margin: 0;
}

.testimonial footer {
  font-size: .8rem;
  font-weight: 600;
  color: var(--st-muted);
}

/* hidden must win over page .hint / .btn-pay display rules */
body.f2-site [hidden] {
  display: none !important;
}

/* Footer unificado (checkout, servicios, tienda… no cargan styles.css) */
body.f2-site .st-site-footer,
body.f2-home .st-site-footer,
body.f2-site .footer.st-site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 3rem 0 1.25rem;
  margin-top: auto;
  width: 100%;
}
body.f2-site .st-site-footer .container,
body.f2-home .st-site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: block;
}
body.f2-site .st-site-footer .footer-content,
body.f2-home .st-site-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 2rem;
  margin-bottom: 1.75rem;
}
body.f2-site .st-site-footer .footer-section h3,
body.f2-site .st-site-footer .footer-section h4,
body.f2-home .st-site-footer .footer-section h3,
body.f2-home .st-site-footer .footer-section h4 {
  color: #fff;
  font-size: .95rem;
  margin: 0 0 .75rem;
}
body.f2-site .st-site-footer .footer-section p,
body.f2-site .st-site-footer .footer-section li,
body.f2-home .st-site-footer .footer-section p,
body.f2-home .st-site-footer .footer-section li {
  color: #cbd5e1;
  font-size: .88rem;
  margin: 0 0 .4rem;
  list-style: none;
}
body.f2-site .st-site-footer .footer-section ul,
body.f2-home .st-site-footer .footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.f2-site .st-site-footer .footer-section a,
body.f2-home .st-site-footer .footer-section a {
  color: #cbd5e1;
  text-decoration: none;
}
body.f2-site .st-site-footer .footer-section a:hover,
body.f2-home .st-site-footer .footer-section a:hover {
  color: #fff;
}
body.f2-site .st-site-footer .social-links,
body.f2-home .st-site-footer .social-links {
  display: flex;
  gap: .65rem;
  margin-top: .85rem;
}
body.f2-site .st-site-footer .social-links a,
body.f2-home .st-site-footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #049CB3;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.f2-site .st-site-footer .footer-bottom,
body.f2-home .st-site-footer .footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1.25rem;
  text-align: center;
  color: #94a3b8;
  font-size: .85rem;
}
body.f2-site .st-site-footer .footer-bottom a,
body.f2-home .st-site-footer .footer-bottom a {
  color: #7dd3e0;
  text-decoration: none;
}
@media (max-width: 800px) {
  body.f2-site .st-site-footer .footer-content,
  body.f2-home .st-site-footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  body.f2-site .st-site-footer .footer-content,
  body.f2-home .st-site-footer .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .client-mark {
    flex: 1 1 140px;
    min-height: 72px;
  }
}
