/* ============================================================
   LAS DOS BICICLETAS — ESTILOS SITIO PÚBLICO
   Paleta: Rojo #C91C22 · Negro #111111 · Blanco #FFFFFF
   ============================================================ */

:root {
  --red: #C91C22;
  --red-dark: #a81519;
  --red-glow: rgba(201, 28, 34, 0.35);
  --black: #111111;
  --dark: #181818;
  --dark-2: #1f1f1f;
  --gray: #f7f7f7;
  --gray-2: #ebebeb;
  --text: #2e2e2e;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 10px 30px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 18px 60px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.06);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.text-red { color: var(--red) !important; }

/* ---- NAVBAR ---- */
.ldb-navbar {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(201,28,34,0.6);
  padding: 0.7rem 0;
  transition: var(--transition);
}
.ldb-navbar.scrolled {
  padding: 0.35rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.navbar-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 0.8rem !important;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white) !important; background: rgba(255,255,255,0.07); }
.btn-wa-nav {
  background: #25D366;
  color: var(--white) !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-wa-nav:hover {
  background: #1eb85a;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

/* ---- LOGO ---- */
.brand-logo { height: 36px; width: auto; object-fit: contain; }
.hero-logo-img { width: 210px; height: 210px; object-fit: contain; border-radius: 50%; }
.footer-logo { height: 38px; width: auto; object-fit: contain; }

/* ---- HERO ---- */
.hero-section {
  position: relative;
  background: var(--black);
  overflow: hidden;
  min-height: 100vh;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--black);
  filter: saturate(0.85);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.70) 50%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,28,34,0.18);
  border: 1px solid rgba(201,28,34,0.45);
  color: #ff8080;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Prueba social hero */
.hero-social-proof {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 90px;
  padding: 0.25rem 0.5rem;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.proof-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-align: center;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.hero-ctas { margin-bottom: 1.25rem; }
.btn-primary-ldb {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.8rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
}
.btn-primary-ldb:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 24px var(--red-glow);
  color: var(--white) !important;
}
.btn-primary-ldb.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 12px;
}
.btn-outline-ldb {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.28);
  font-weight: 600;
  border-radius: 10px;
  padding: 0.8rem 1.8rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
}
.btn-outline-ldb:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  color: var(--white) !important;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.hero-visual {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.hero-ring {
  position: absolute;
  width: 310px; height: 310px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,28,34,0.22);
  animation: spin-slow 24s linear infinite;
}
.hero-ring::before {
  content: '';
  position: absolute;
  width: 270px; height: 270px;
  top: 18px; left: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.06);
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-icon-wrap {
  background: rgba(201,28,34,0.10);
  border: 1.5px solid rgba(201,28,34,0.25);
  border-radius: 50%;
  width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  backdrop-filter: blur(4px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.25);
  font-size: 1.4rem;
  animation: bounce-down 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- FRANJA CONFIANZA ---- */
.trust-strip {
  background: var(--dark);
  border-bottom: 1.5px solid rgba(201,28,34,0.5);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.3rem; padding: 0.75rem;
}
.trust-number {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.trust-label {
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ---- SECCIONES ---- */
.section-ldb { background: var(--white); }
.section-dark { background: var(--dark); }
.section-gray { background: var(--gray); }
.section-header { max-width: 600px; margin-inline: auto; }
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.65rem;
}
.section-label-light { color: rgba(201,28,34,0.75); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
  text-transform: uppercase;
  color: var(--black); margin-bottom: 0.65rem;
}
.section-sub { color: var(--text-light); font-size: 0.97rem; line-height: 1.7; margin-bottom: 0; }

/* ---- TARJETAS SERVICIOS ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  position: relative;
  transition: var(--transition);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2.5px; background: var(--gray-2);
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(201,28,34,0.25);
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { background: var(--red); }
.service-icon-wrap {
  width: 50px; height: 50px;
  background: rgba(201,28,34,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--red);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(201,28,34,0.12); }
.service-badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  font-size: 0.68rem; font-weight: 700;
  background: rgba(201,28,34,0.10); color: var(--red);
  border-radius: 999px; padding: 0.18rem 0.7rem; white-space: nowrap;
}
.service-name { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; line-height: 1.3; }
.service-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 0.75rem; }
.service-price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--red); margin-bottom: 1rem; }
.btn-service-wa {
  background: #25D366; color: var(--white) !important;
  font-weight: 700; border: none; border-radius: 9px;
  padding: 0.6rem 1rem; transition: var(--transition);
  text-decoration: none; display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
}
.btn-service-wa:hover {
  background: #1eb85a;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
  color: var(--white) !important;
}
.service-card-cta { background: var(--black); border-color: var(--black); color: var(--white); }
.service-card-cta::before { background: var(--red); }
.service-card-cta:hover { border-color: var(--red); }
.service-card-cta h3, .service-card-cta p { color: var(--white); }
.cta-card-icon { font-size: 2.5rem; color: var(--red); }

/* ---- CATEGORÍAS SERVICIOS ---- */
.services-category-title {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-2);
  padding-bottom: 0.6rem; margin-bottom: 0;
}

/* ---- LISTA INCLUIDOS ---- */
.service-includes { list-style: none; padding: 0; margin: 0 0 1rem 0; flex-grow: 1; }
.service-includes li {
  font-size: 0.82rem; color: var(--text-light);
  padding: 0.22rem 0 0.22rem 1.1rem;
  position: relative; line-height: 1.45;
}
.service-includes li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--red); font-weight: 700; font-size: 0.76rem;
}

/* ---- PASOS ---- */
.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  transition: var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,28,34,0.35);
  transform: translateY(-2px) scale(1.01);
}
.step-number {
  font-family: var(--font-display); font-size: 4.5rem; line-height: 1;
  color: rgba(201,28,34,0.13); margin-bottom: 0.4rem; letter-spacing: -2px;
}
.step-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(201,28,34,0.12);
  border: 1.5px solid rgba(201,28,34,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--red);
  margin: 0 auto 1.1rem;
}
.step-title { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.65rem; }
.step-desc { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ---- GALERÍA ---- */
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-placeholder {
  background: var(--gray); border: 1.5px dashed var(--gray-2);
  border-radius: var(--radius); height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--text-light);
}
.gallery-placeholder i { font-size: 2rem; color: var(--gray-2); }
.gallery-placeholder span {
  font-weight: 700; font-size: 0.82rem; font-family: monospace;
  background: var(--gray-2); padding: 0.15rem 0.5rem;
  border-radius: 4px; color: var(--text);
}
.gallery-label { text-align: center; font-size: 0.8rem; color: var(--text-light); font-weight: 600; margin-top: 0.5rem; }
.gallery-item img {
  width: 100%; height: 240px; object-fit: cover; display: block;
  border-radius: var(--radius); transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.03); }

/* ---- INSTAGRAM GALERÍA ---- */
.ig-gallery-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; font-weight: 700; color: #E1306C;
  text-decoration: none; border: 1.5px solid #E1306C;
  border-radius: 999px; padding: 0.5rem 1.5rem; transition: var(--transition);
}
.ig-gallery-link:hover { background: #E1306C; color: #fff; }

/* ---- SCREENSHOT TESTIMONIOS ---- */
.screenshot-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.screenshot-card:hover { transform: translateY(-2px) scale(1.01); box-shadow: var(--shadow-lg); }
.screenshot-card img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }
.screenshot-placeholder {
  background: var(--white); border: 1.5px dashed var(--gray-2);
  border-radius: var(--radius-lg); min-height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 2rem; text-align: center;
}
.screenshot-placeholder i { font-size: 2.2rem; color: var(--gray-2); }
.screenshot-placeholder span {
  font-weight: 700; font-size: 0.88rem; font-family: monospace;
  background: var(--gray); padding: 0.2rem 0.6rem; border-radius: 4px; color: var(--text);
}
.screenshot-placeholder small { font-size: 0.76rem; color: #aaa; }

/* ---- UBICACIÓN ---- */
.location-info-card {
  background: var(--white); border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow);
}
.location-block { display: flex; align-items: flex-start; gap: 0.75rem; }
.location-block i { font-size: 1.15rem; margin-top: 0.15rem; flex-shrink: 0; }
.location-block strong {
  display: block; font-weight: 700; color: var(--black);
  margin-bottom: 0.15rem; font-size: 0.88rem;
}
.location-block p { color: var(--text-light); font-size: 0.92rem; }
.map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--gray-2);
  height: 100%; min-height: 420px;
}
.map-wrapper iframe { display: block; height: 100%; min-height: 420px; }

/* ---- CTA FINAL ---- */
.cta-final-section { background: var(--black); }
.cta-final-card {
  background: linear-gradient(135deg, rgba(201,28,34,0.12) 0%, rgba(0,0,0,0) 60%);
  border: 1px solid rgba(201,28,34,0.25);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  max-width: 700px; margin: 0 auto;
}
.cta-final-icon { font-size: 3rem; color: var(--red); opacity: 0.85; }
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.75rem;
}
.cta-final-sub { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; }
.cta-final-note { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ---- FOOTER ---- */
.footer-ldb {
  background: #0e0e0e;
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.65; }
.footer-heading {
  color: var(--white); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { display: flex; align-items: center; font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; }
.footer-list a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-list a:hover { color: var(--red); }
.footer-ig-link { display: flex; align-items: center; text-decoration: none; color: rgba(255,255,255,0.55); transition: var(--transition); font-weight: 600; }
.footer-ig-link:hover { color: #E1306C; }
.footer-ig-icon { font-size: 1.3rem; color: #E1306C; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,0.07); }
.footer-copy { color: rgba(255,255,255,0.28); font-size: 0.82rem; }
.footer-back-top { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-back-top:hover { color: var(--red); }

/* ---- WHATSAPP FLOAT CON TOOLTIP ---- */
.wa-float-wrapper {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem;
}
.wa-float-tooltip {
  background: var(--black); color: var(--white);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(37,211,102,0.3);
  white-space: nowrap; opacity: 0;
  transform: translateY(4px); transition: var(--transition);
  pointer-events: none;
}
.wa-float-wrapper:hover .wa-float-tooltip { opacity: 1; transform: translateY(0); }
.whatsapp-float {
  width: 56px; height: 56px;
  background: var(--black);
  border: 2px solid #25D366;
  color: #25D366 !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: var(--transition); position: relative;
}
.whatsapp-float:hover {
  background: #25D366; color: var(--white) !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.wa-float-pulse {
  position: absolute; width: 56px; height: 56px;
  border-radius: 50%; background: rgba(37,211,102,0.3);
  animation: wa-pulse 3s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ---- ANIMACIONES ---- */
.animate-fade-up { opacity: 0; transform: translateY(28px); animation: fade-up 0.65s ease forwards; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.5s; }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .proof-divider { display: none; }
  .proof-item { min-width: 80px; }
}
@media (max-width: 767px) {
  .py-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.97rem; }
  .btn-primary-ldb, .btn-outline-ldb { width: 100%; justify-content: center; }
  .hero-ctas { display: flex; flex-direction: column; gap: 0.75rem; }
  .hero-ctas .me-2 { margin: 0 !important; }
  .section-title { font-size: 1.8rem; }
  .gallery-placeholder { height: 170px; }
  .gallery-item img { height: 170px; }
  .wa-float-wrapper { bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.45rem; }
  .wa-float-pulse { width: 50px; height: 50px; }
  .hero-social-proof { padding: 0.75rem 1rem; }
  .proof-number { font-size: 1.2rem; }
  .cta-final-card { padding: 2.5rem 1.5rem; }
}

/* ---- ANTES / DESPUÉS ---- */
.antes-despues-row {
  border-bottom: 1px solid var(--gray-2);
  padding-bottom: 2rem;
}
.antes-despues-row:last-of-type { border-bottom: none; }

.ad-label-wrap {
  margin-bottom: 0.5rem;
  text-align: center;
}
.ad-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 0.2rem 1rem;
  border-radius: 999px;
}
.ad-label-antes {
  background: rgba(0,0,0,0.07);
  color: var(--text-light);
  border: 1px solid var(--gray-2);
}
.ad-label-despues {
  background: rgba(201,28,34,0.10);
  color: var(--red);
  border: 1px solid rgba(201,28,34,0.25);
}

.gallery-item {
  position: relative;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(255,255,255,0);
  transition: var(--transition);
  border-radius: var(--radius);
}
.gallery-item:hover .gallery-zoom-hint {
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.9);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.03); }

/* ---- LIGHTBOX ---- */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(6px);
}
#lightbox.active { display: flex; }
#lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }

@media (max-width: 767px) {
  .gallery-item img { height: 180px; }
}