/* Titi Mundo Diversión — landing pública */

:root {
  --blue: #1a56db;
  --blue-deep: #0f3a9e;
  --orange: #f47b20;
  --orange-soft: #fff0e6;
  --yellow: #f5c518;
  --sky: #e8f4fc;
  --sky-deep: #b8dff5;
  --ink: #1a2744;
  --ink-soft: #5a6b85;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px rgba(26, 86, 219, 0.12);
  --shadow-soft: 0 8px 24px rgba(26, 39, 68, 0.08);
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, var(--sky) 0%, #f8fbff 40%, #fff 100%);
  overflow-x: hidden;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Ambient background */
.landing-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: float 18s ease-in-out infinite;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: var(--sky-deep);
  top: -120px;
  right: -80px;
}

.blob-2 {
  width: 320px;
  height: 320px;
  background: color-mix(in srgb, var(--orange) 35%, white);
  bottom: 20%;
  left: -100px;
  animation-delay: -6s;
}

.blob-3 {
  width: 260px;
  height: 260px;
  background: color-mix(in srgb, var(--yellow) 40%, white);
  top: 45%;
  right: 10%;
  animation-delay: -12s;
}

.spark {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.35;
  animation: twinkle 4s ease-in-out infinite;
}

.spark-1 { top: 18%; left: 12%; color: var(--orange); }
.spark-2 { top: 32%; right: 18%; animation-delay: -1.5s; color: var(--blue); }
.spark-3 { bottom: 28%; left: 22%; animation-delay: -2.8s; color: var(--yellow); }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.2); }
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.nav-brand img {
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-admin {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line, #d8e4f0);
  font-size: 0.82rem !important;
  opacity: 0.75;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding: calc(var(--nav-h) + 0.25rem) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-inner {
  width: min(820px, 100%);
  padding: 0 1.25rem 0.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: clamp(5.75rem, 24vw, 7.5rem);
  height: clamp(5.75rem, 24vw, 7.5rem);
  border-radius: 50%;
  margin: 0 0 0.65rem;
  box-shadow: 0 12px 32px rgba(26, 86, 219, 0.2);
  object-fit: cover;
  background: var(--white);
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  line-height: 1.05;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-accent {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--blue) 0%, #6b5ce7 45%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  margin: 1rem 0 1.25rem;
  font-size: clamp(0.92rem, 2.5vw, 1.08rem);
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
  max-width: 26rem;
}

.hero-cta {
  flex: 1 1 12rem;
  min-width: min(100%, 14rem);
}

.hero-actions .btn-ghost {
  flex: 1 1 10rem;
  min-width: min(100%, 12rem);
}

.hero-banner {
  position: relative;
  width: 100%;
  max-width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 1rem 1.75rem;
  flex-shrink: 0;
}

/* Carrusel estilo Destacadas (comunidadescort) */
.destacadas-carousel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.destacadas-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0 0.15rem;
}

.destacadas-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(110deg, var(--blue) 0%, #6b5ce7 35%, var(--orange) 70%, #f5c518 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titi-title-flow 8s ease-in-out infinite;
}

@keyframes titi-title-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.destacadas-nav {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.destacadas-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 86, 219, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue);
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s, transform 0.2s, opacity 0.2s, background 0.2s;
}

.destacadas-nav-btn:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--blue) 45%, transparent);
  background: #fff;
  transform: translateY(-1px);
}

.destacadas-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.destacadas-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  margin: 0 -0.75rem;
  padding: 0.25rem 0.75rem 0.5rem;
}

.destacadas-track::-webkit-scrollbar {
  display: none;
}

.destacadas-slide-wrap {
  width: min(88vw, 22rem);
  flex: 0 0 auto;
  scroll-snap-align: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  transform: scale(0.94);
  opacity: 0.72;
}

.destacadas-slide-wrap.is-active {
  transform: scale(1);
  opacity: 1;
}

.destacadas-slide {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(26, 86, 219, 0.1);
  background: var(--white);
  box-shadow: 0 18px 40px -22px rgba(26, 86, 219, 0.22);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.destacadas-slide-wrap.is-active .destacadas-slide {
  border-color: color-mix(in srgb, var(--blue) 35%, transparent);
  box-shadow:
    0 22px 48px -20px rgba(26, 86, 219, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.destacadas-slide-wrap.is-active .destacadas-media img {
  transform: scale(1.04);
}

.destacadas-media {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 20rem;
  overflow: hidden;
  background: var(--sky);
}

.destacadas-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.destacadas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 25, 50, 0.88) 0%, rgba(15, 25, 50, 0.28) 42%, transparent 70%);
  pointer-events: none;
}

.destacadas-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 20, 40, 0.45);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.destacadas-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.15rem 1.15rem 1.25rem;
}

.destacadas-caption h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.destacadas-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 0.15rem;
}

.destacadas-dot {
  width: 0.45rem;
  height: 0.45rem;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: color-mix(in srgb, var(--blue) 22%, white);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.destacadas-dot.is-active {
  width: 1.5rem;
  background: var(--blue);
}

.destacadas-dot:hover {
  background: var(--orange);
}

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--nav-h) - 0.15rem);
  }

  .hero-logo {
    width: clamp(6.25rem, 28vw, 7.75rem);
    height: clamp(6.25rem, 28vw, 7.75rem);
    margin-bottom: 0.5rem;
  }

  .hero-inner {
    padding: 0 1rem 0.75rem;
  }

  .hero-banner {
    padding: 0 0.85rem 1.25rem;
  }

  .destacadas-media {
    min-height: 18.5rem;
  }

  .destacadas-slide-wrap {
    width: min(86vw, 20rem);
  }

  .hero-eyebrow {
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
  }

  .hero-name {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
  }

  .hero-accent {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .hero-lede {
    margin: 0.4rem 0 0.65rem;
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    width: 100%;
    max-width: none;
    margin-top: 0.15rem;
  }

  .hero-cta,
  .hero-actions .btn-ghost {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 3.1rem;
    padding: 0.82rem 1.2rem;
    font-size: 0.94rem;
    letter-spacing: -0.01em;
    border-radius: 999px;
  }

  .hero-cta {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
  }

  .hero-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(26, 86, 219, 0.22);
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.08);
  }

  .hero-cta svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: #1fb855;
}

.btn-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue);
  border: 2px solid color-mix(in srgb, var(--blue) 25%, transparent);
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-lede {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Nosotros */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.nosotros-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 86, 219, 0.08);
}

.nosotros-logo {
  width: 100px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
}

.nosotros-card p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.nosotros-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nosotros-pillars li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 86, 219, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.nosotros-pillars li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.pillar-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.nosotros-pillars strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.nosotros-pillars p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Catálogo */
.catalogo {
  max-width: 1100px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 86, 219, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cat-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sky);
}

.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.25rem;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-media img {
  transform: scale(1.04);
}

.cat-media-emoji {
  display: grid;
  place-items: center;
  font-size: 4rem;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--sky), var(--orange-soft));
}

.cat-body {
  padding: 0.85rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
}

.cat-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  line-height: 1.25;
}

.cat-wa {
  width: auto;
  min-width: min(100%, 11.5rem);
  margin-top: auto;
  padding: 0.58rem 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}

.cat-wa svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--sky);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-accent {
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  aspect-ratio: 3 / 4;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  color: #fff;
}

.gallery-placeholder span {
  font-size: 2.5rem;
}

.gallery-placeholder p {
  margin: 0;
  font-weight: 600;
}

.gallery-placeholder a {
  font-size: 0.85rem;
  text-decoration: underline;
  opacity: 0.9;
}

.gallery-item figcaption,
.gallery-location {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: auto;
  max-width: calc(100% - 1.1rem);
  margin: 0;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 6px 18px rgba(26, 39, 68, 0.16);
  backdrop-filter: blur(8px);
}

.gallery-location svg {
  flex-shrink: 0;
  color: var(--orange);
}

/* Cobertura local */
.cobertura-list {
  list-style: none;
  margin: 2rem 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.cobertura-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 86, 219, 0.1);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.cobertura-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  flex-shrink: 0;
}

.cobertura-copy {
  max-width: 62ch;
}

.cobertura-copy p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.cobertura-copy .btn {
  margin-top: 0.5rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 720px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 86, 219, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 0.25rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.9rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-areas {
  margin: 0.35rem auto 0.85rem;
  max-width: 42rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

@media (min-width: 640px) {
  .cobertura-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .cobertura-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Contacto */
.contacto-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--white), var(--sky));
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 86, 219, 0.1);
}

.contacto-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
}

.contacto-copy > p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  max-width: 40ch;
}

.contacto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contacto-visual {
  display: grid;
  place-items: center;
}

.contacto-visual img {
  width: min(220px, 100%);
  border-radius: 50%;
  filter: drop-shadow(0 16px 32px rgba(26, 86, 219, 0.2));
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 1.25rem 5rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-footer img {
  margin: 0 auto 1rem;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.footer-links a {
  font-weight: 600;
  color: var(--blue);
}

.footer-links a:hover {
  color: var(--orange);
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: fabPulse 3s ease infinite;
}

.fab-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* Responsive */
@media (max-width: 960px) {
  .nosotros-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contacto-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contacto-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .contacto-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.75rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover {
    background: var(--sky);
  }

  .nav-brand {
    display: none;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .nav-brand span {
    display: none;
  }

  .cat-body {
    padding: 0.65rem 0.55rem 0.75rem;
    gap: 0.45rem;
  }

  .cat-body h3 {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .cat-wa {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 0.48rem 0.65rem;
    font-size: 0.76rem;
    gap: 0.35rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.24);
  }

  .cat-wa svg {
    width: 14px;
    height: 14px;
  }

  .catalog-grid {
    gap: 0.85rem;
  }

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

  .section {
    padding: 3.5rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .spark, .fab-wa, .contacto-visual img { animation: none; }
  .btn:hover, .cat-card:hover { transform: none; }
  .destacadas-title { animation: none; background: none; color: var(--blue); }
  .destacadas-slide-wrap { transition: none; transform: none; opacity: 1; }
  .destacadas-media img { transition: none; }
}
