/* =========================================================
   GOOGLE MATERIAL SYMBOLS BASE DECLARATION
   ========================================================= */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   FUNDACIÓN HOY ES NUEVO COMIENZO — SYSTEM DESIGN & STYLES
   ========================================================= */

/* --- 1. VARIABLES GLOBALES --- */
:root {
  --color-primary: #0f9d68;
  --color-primary-hover: #0c7d53;
  --color-accent: #34d399;
  --color-accent-hover: #5eead4;
  --color-dark-bg: #0d0f0e;
  --color-dark-card: #141614;
  --color-dark-input: #1b1e1c;
  --color-text-dark: #161a18;
  --color-text-muted: rgba(22, 26, 24, 0.68);
  --color-text-light: #ffffff;
  --color-text-light-muted: rgba(255, 255, 255, 0.7);
  --color-danger: #e0475a;

  --font-title: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 14px 36px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 4px 14px rgba(52, 211, 153, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 100px;
}

/* --- 2. BASE & RESET --- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0d0f0e;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
}

body.dark-theme {
  background: var(--color-dark-bg);
  color: #f5f6f4;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  margin: 0;
}

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

/* --- 3. LAYOUT & CONTAINER UTILITIES --- */
.page-wrapper {
  width: 100%;
  overflow: hidden;
}

.section-padding {
  padding: 90px 48px;
}

.section-padding-sm {
  padding: 60px 48px;
}

.container-max {
  max-width: 1240px;
  margin: 0 auto;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- 4. HEADER & NAVIGATION --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
}

.header-brand {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 42px;
  filter: invert(1) brightness(1.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-light);
  font-weight: 600;
}

.nav-link.active-green {
  color: var(--color-accent);
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  width: 44px;
  height: 44px;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 15, 14, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.mobile-nav-link {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
}

.mobile-nav-link.active {
  color: var(--color-accent);
  font-weight: 700;
}

/* --- 5. COMPONENTES REUTILIZABLES --- */
/* Botón Principal */
.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark-bg);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-accent);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 234, 212, 0.4);
  color: var(--color-dark-bg);
}

.btn-full {
  width: 100%;
}

/* Miga de Pan (Breadcrumb Pill) — REGLA ESTRICTA DEL USUARIO */
.breadcrumb-pill {
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-dark-bg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(52, 211, 153, 0.25);
  white-space: nowrap;
}

.breadcrumb-pill a {
  color: var(--color-dark-bg) !important;
  text-decoration: none;
}

.breadcrumb-pill a:hover {
  text-decoration: underline;
}

/* Glassmorphism Pill */
.glass-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Formularios */
.form-card-dark {
  background: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-input-dark {
  width: 100%;
  box-sizing: border-box;
  background: var(--color-dark-input);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 14.5px;
  padding: 15px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input-dark:focus {
  border-color: var(--color-accent);
}

.form-select-dark {
  width: 100%;
  box-sizing: border-box;
  background: var(--color-dark-input);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  padding: 15px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-family: inherit;
  outline: none;
}

.form-input-light {
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-text-dark);
  font-size: 14.5px;
  padding: 15px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
  font-family: inherit;
  outline: none;
}

/* --- 6. HERO SECTIONS --- */
.hero-page {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background: var(--color-dark-bg);
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 15, 14, 0.75) 0%, rgba(13, 15, 14, 0.4) 45%, rgba(13, 15, 14, 0.92) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 48px 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.hero-title-group h1 {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title-group p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 580px;
  line-height: 1.6;
  margin: 14px 0 0;
}

/* --- 7. TIMELINE HORIZONTAL (NOSOTROS) --- */
.timeline-h-nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
}

.timeline-h-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #161a18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  user-select: none;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.timeline-h-btn svg {
  pointer-events: none;
}

.timeline-h-btn:hover {
  background: #0f9d68;
  border-color: #0f9d68;
  color: #ffffff;
  transform: scale(1.06);
}

.timeline-h-btn:active {
  transform: scale(0.96);
}

.timeline-h-track-wrapper {
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.timeline-h-line-bg {
  position: absolute;
  bottom: 24px;
  top: auto;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f9d68 0%, #34d399 50%, #059669 100%);
  border-radius: 4px;
  z-index: 1;
}

.timeline-h-scroll-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  z-index: 2;
  cursor: grab;
}

.timeline-h-scroll-container::-webkit-scrollbar {
  display: none;
}

.timeline-h-scroll-container:active {
  cursor: grabbing;
}

.timeline-h-item {
  flex: 0 0 320px;
  max-width: 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline-h-node {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-top: 16px;
  margin-bottom: 0;
  margin-left: 20px;
}

.timeline-h-dot-outer {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 3.5px solid #0f9d68;
  box-shadow: 0 0 0 4px rgba(15, 157, 104, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.timeline-h-dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f9d68;
}

.timeline-h-item:hover .timeline-h-dot-outer {
  transform: scale(1.2);
  background: #0f9d68;
}

.timeline-h-item:hover .timeline-h-dot-inner {
  background: #ffffff;
}

.timeline-h-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0f9d68;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.timeline-h-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border-left-color: #059669;
}

.timeline-h-year-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 800;
  color: #0f9d68;
  background: rgba(15, 157, 104, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(15, 157, 104, 0.2);
}

.timeline-h-title {
  font-size: 17px;
  font-weight: 800;
  color: #161a18;
  margin: 0 0 8px;
  line-height: 1.3;
}

.timeline-h-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(22, 26, 24, 0.82);
  margin: 0;
}

.team-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* --- 8. FOOTER --- */
.site-footer {
  background: #0a0b0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 48px 30px;
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: var(--color-accent);
}

/* --- 9. MEDIA QUERIES (RESPONSIVO) --- */
@media (max-width: 992px) {
  .site-header {
    padding: 20px 24px;
  }

  .nav-links-desktop {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
  }

  .hero-content {
    padding: 120px 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-title-group h1 {
    font-size: 38px;
  }

  .hero-title-group p {
    font-size: 15.5px;
  }

  .section-padding {
    padding: 60px 24px;
  }

  .grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .timeline-line {
    left: 24px;
    transform: none;
  }

  .timeline-item {
    justify-content: flex-start !important;
  }

  .timeline-dot {
    left: 24px;
    transform: translate(-50%, -50%);
  }

  .timeline-card {
    width: calc(100% - 50px);
    margin-left: 50px;
  }

  .site-footer {
    padding: 40px 24px 24px;
  }
}

@media (max-width: 576px) {
  .hero-page {
    min-height: 440px;
  }

  .hero-title-group h1 {
    font-size: 30px;
  }

  .grid-4col {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 16px 20px;
  }
}

/* --- HERO NOSOTROS CORREGIDO & PERFECTO --- */
.hero-nosotros {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  background: var(--color-dark-bg);
  overflow: hidden;
}

.hero-nosotros .hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-nosotros .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

.hero-nosotros .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 15, 14, 0.75) 0%, rgba(13, 15, 14, 0.35) 45%, rgba(13, 15, 14, 0.95) 100%);
  pointer-events: none;
}

.hero-nosotros .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.logo-header-blend {
  height: 42px;
  filter: invert(1) brightness(1.8);
  mix-blend-mode: screen;
}

@media (max-width: 992px) {
  .hero-nosotros {
    height: 460px;
  }

  .hero-nosotros .hero-content {
    padding: 0 24px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-nosotros .hero-content .breadcrumb-pill {
    align-self: flex-start !important;
  }

  .hero-nosotros .hero-bg-img {
    object-position: 50% 50%;
  }
}

/* --- SECCIÓN CAMBIAMOS VIDAS DE VERDAD --- */
.cambiamos-vidas-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background: #141614;
}

.cambiamos-vidas-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.cambiamos-vidas-card:hover .cambiamos-vidas-img {
  transform: scale(1.02);
}

.cambiamos-vidas-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* --- VARIANTE COLORES TARJETAS EQUIPO --- */
.team-card-red {
  background: #e5555f;
}

.team-card-gold {
  background: #f0a93d;
}

.team-card-green {
  background: #0f9d68;
}

.team-card-blue {
  background: #4c5fd6;
}

/* --- REJILLA FOTOS INSTITUCIONALES EN NOSOTROS (4:3) --- */
.nosotros-grid-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #141614;
  height: 360px;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.nosotros-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nosotros-grid-card:hover .nosotros-grid-img {
  transform: scale(1.03);
}

.nosotros-grid-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(13, 15, 14, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {
  .nosotros-grid-card {
    height: 270px;
  }
}

.nosotros-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nosotros-grid-card:hover .nosotros-grid-img {
  transform: scale(1.03);
}

.nosotros-grid-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(13, 15, 14, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {
  .nosotros-grid-card {
    height: 240px;
  }
}

/* --- SECCIÓN CTA BLANCO --- */
.cta-nosotros-white {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  background: rgb(255, 255, 255);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-nosotros-white .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e0475a;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-nosotros-white .cta-title {
  font-size: 38px;
  font-weight: 800;
  color: #161a18;
  margin: 0 0 28px;
  line-height: 1.25;
}

/* --- LOGO HORIZONTAL EN SECCIÓN CONTACTO --- */
.contact-logo {
  height: 48px;
  width: auto;
  max-width: 240px;
  display: block;
  margin-bottom: 24px;
  object-fit: contain;
  filter: brightness(1.1);
}

@media (max-width: 576px) {
  .contact-logo {
    height: 40px;
    max-width: 200px;
  }
}

/* --- BOTONES E ÍCONOS DE REDES SOCIALES --- */
.social-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.social-icon-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.social-icon-btn:hover svg {
  transform: scale(1.1);
}

.social-icon-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.social-icon-btn.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
  color: #ffffff;
}

.social-icon-btn.threads:hover {
  background: #000000;
  border-color: #ffffff;
  color: #ffffff;
}

.social-icon-btn.tiktok:hover {
  background: #000000;
  border-color: #25f4ee;
  color: #ffffff;
  box-shadow: -2px 2px 0 #25f4ee, 2px -2px 0 #fe2c55;
}

.social-icon-btn.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

.social-icon-btn.wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

@media (max-width: 640px) {
  .social-icons-wrapper {
    gap: 8px;
  }

  .social-icon-btn {
    width: 40px;
    height: 40px;
  }

  .social-icon-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* =========================================================
   ACCESIBILIDAD WEB (WCAG 2.1 AA)
   ========================================================= */

/* Enlace para saltar al contenido principal (Skip Link) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-dark-bg);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  z-index: 9999;
  transition: top 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid #ffffff;
}

/* Indicadores de foco visual de alto contraste para teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent) !important;
  outline-offset: 3px !important;
}

/* Respeto a las preferencias del usuario de movimiento reducido */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* =========================================================
   ACCESIBILIDAD WEB (WCAG 2.1 AA) & DISEÑO RESPONSIVO INTENCIONAL
   ========================================================= */

/* Enlace para saltar al contenido principal (Skip Link) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-dark-bg);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  z-index: 9999;
  transition: top 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid #ffffff;
}

/* Indicadores de foco visual de alto contraste para teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent) !important;
  outline-offset: 3px !important;
}

/* Soporte de alto contraste para Tarjeta Dorada de Equipo (#f0a93d bg + #161a18 text => 9.6:1) */
.team-card-gold .team-card-name {
  color: #161a18 !important;
}

.team-card-gold .team-card-role {
  color: rgba(22, 26, 24, 0.88) !important;
}

/* Clases de utilidad de alto contraste (WCAG >= 4.5:1) */
.text-green-wcag {
  color: #076341 !important;
}

.badge-green-wcag {
  background: #e6f8f0;
  color: #076341 !important;
  border: 1px solid rgba(7, 99, 65, 0.25);
}

.badge-pink-wcag {
  background: rgba(224, 71, 90, 0.12);
  color: #b91c1c !important;
  border: 1px solid rgba(185, 28, 28, 0.25);
}

/* Etiquetas y controles de formulario accesibles */
.form-label-dark {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-input-dark,
.form-select-dark {
  width: 100%;
  box-sizing: border-box;
  background: var(--color-dark-input);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 15px;
  padding: 13px 18px;
  min-height: 48px;
  /* Touch target minimo WCAG 2.5.5 */
  border-radius: 10px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-dark:focus,
.form-select-dark:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}

/* Formulario responsivo */
@media (max-width: 576px) {
  .grid-2col-form {
    grid-template-columns: 1fr !important;
  }
}

/* Respeto a las preferencias del usuario de movimiento reducido */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ESTILOS DE ENLACE ACTIVO TRANSVERSAL */
.nav-link.active,
.mobile-nav-link.active {
  color: var(--color-accent) !important;
  font-weight: 700 !important;
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-nav-link:hover,
.footer-nav-link.active {
  color: var(--color-accent) !important;
  font-weight: 600 !important;
}


/* ESTILOS DE VALIDACIÓN DE FORMULARIOS Y ERRORES ACCESIBLES */
.form-input-dark.invalid,
.form-select-dark.invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
}

.field-error-msg {
  display: block;
  color: #f87171;
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.3;
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed !important;
  transform: none !important;
}


/* --- 8. BLOG RESPONSIVE STYLES --- */
.blog-content-section {
  padding: 70px 48px 100px;
}



.blog-main-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.blog-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 10, 0.6);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px;
  overflow-y: auto;
}

.blog-modal-content {
  background: #fff;
  border-radius: 14px;
  max-width: 720px;
  width: 100%;
  padding: 0;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.blog-modal-body {
  padding: 36px 40px 40px;
}

.blog-cta-section {
  position: relative;
  padding: 120px 48px;
  background: #0d0f0e;
}

.blog-cta-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.blog-cta-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  margin: 0 0 22px;
}

.blog-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (max-width: 992px) {

  .blog-content-section {
    padding: 40px 24px 60px;
  }

  .blog-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-cta-section {
    padding: 60px 24px;
  }

  .blog-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-cta-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .blog-content-section {
    padding: 30px 16px 40px;
  }

  .blog-articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-modal-backdrop {
    padding: 20px 12px;
  }

  .blog-modal-body {
    padding: 24px 20px 24px;
  }

  .blog-cta-section {
    padding: 40px 16px;
  }

  .blog-cta-title {
    font-size: 32px;
  }

  .blog-form-row {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   INDEX RESPONSIVE STYLES (MOBILE-FIRST & FLUID LAYOUTS)
   ========================================================= */
.hero-index {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-index-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 160px 48px 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.hero-index-title {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 28px;
  text-align: center;
}

.hero-index-subtitle {
  font-size: 25px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 880px;
  margin: 0 auto 32px;
  font-style: italic;
  text-align: center;
}

/* Test Section */
.test-section {
  position: relative;
  padding: 90px 48px;
  background: #0a0b0a;
  overflow: hidden;
}

.test-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.test-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.test-widget {
  background: #141614;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px;
}

.test-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}

.test-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0f9d68, #34d399);
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 0%;
}

.test-progress-fill[data-pct="10"] {
  width: 10%;
}

.test-progress-fill[data-pct="20"] {
  width: 20%;
}

.test-progress-fill[data-pct="30"] {
  width: 30%;
}

.test-progress-fill[data-pct="40"] {
  width: 40%;
}

.test-progress-fill[data-pct="50"] {
  width: 50%;
}

.test-progress-fill[data-pct="60"] {
  width: 60%;
}

.test-progress-fill[data-pct="70"] {
  width: 70%;
}

.test-progress-fill[data-pct="80"] {
  width: 80%;
}

.test-progress-fill[data-pct="90"] {
  width: 90%;
}

.test-progress-fill[data-pct="100"] {
  width: 100%;
}

.test-dot {
  height: 5px;
  flex: 1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}

.test-dot.active {
  background: #34d399;
}

/* Services Section */
.index-services-section {
  position: relative;
  padding: 90px 48px;
}

.index-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card-link {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.5) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.index-stats-section {
  position: relative;
  padding: 90px 48px;
  background: #0a0b0a;
}

.index-stats-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Contact Section */
.index-contact-section {
  position: relative;
  padding: 90px 48px;
  background: #0d0f0e;
}

.index-contact-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.index-contact-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  margin: 0 0 22px;
}

.index-contact-card {
  background: #141614;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 36px;
}

.index-contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* MEDIA QUERIES PARA INDEX */
@media (max-width: 992px) {
  .hero-index {
    min-height: 600px;
  }

  .hero-index-content {
    padding: 120px 24px 80px;
    max-width: 100%;
  }

  .hero-index-title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .hero-index-subtitle {
    font-size: 18px;
    max-width: 100%;
    margin: 0 auto 24px;
  }

  .test-section {
    padding: 60px 24px;
  }

  .test-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .index-services-section {
    padding: 60px 24px;
  }

  .index-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .index-stats-section {
    padding: 60px 24px;
  }

  .index-stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .index-contact-section {
    padding: 60px 24px;
  }

  .index-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .index-contact-title {
    font-size: 40px;
  }

  .index-contact-card {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .hero-index {
    min-height: 520px;
  }

  .hero-index-content {
    padding: 100px 20px 60px;
  }

  .hero-index-title {
    font-size: 32px;
  }

  .hero-index-subtitle {
    font-size: 16px;
  }

  .test-widget {
    padding: 20px 16px;
  }

  .index-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .index-contact-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .index-contact-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


/* MATERIAL SYMBOLS OUTLINED */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}


/* =========================================================
   CONTACTO RESPONSIVE STYLES (FLUID GRID & CARD RESTRUCTURING)
   ========================================================= */
.contacto-section {
  padding: 90px 48px;
  background: #0d0f0e;
}

.contacto-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contacto-form-card {
  background: #141715;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.contacto-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contacto-info-section {
  padding: 90px 48px 90px;
  background: #0d0f0e;
}

.contacto-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contacto-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contacto-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.3);
}

.contacto-hero-title {
  font-size: 46px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.1;
}

/* CONTACT MAPS SECTION DESIGN WITH GLASS PILLS & CARDS */
.contacto-maps-section {
  padding: 60px 48px 90px;
  background: #0d0f0e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contacto-maps-header {
  text-align: center;
  margin-bottom: 44px;
}

.contacto-maps-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contacto-maps-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
}

.contacto-maps-divider {
  width: 50px;
  height: 3px;
  background: #34d399;
  margin: 0 auto;
}

.contacto-maps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.contacto-map-card {
  background: #141614;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.contacto-map-card:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.contacto-map-card-header {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contacto-map-iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

.contacto-map-card-footer {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contacto-map-card-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contacto-map-icon {
  font-size: 22px;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(52, 211, 153, 0.25);
  flex-shrink: 0;
}

.contacto-map-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 2px;
}

.contacto-map-card-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.contacto-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.contacto-map-btn:hover {
  background: #34d399;
  color: #0d0f0e;
}

/* MEDIA QUERIES CONTACTO */
@media (max-width: 992px) {
  .contacto-section {
    padding: 60px 24px;
  }

  .contacto-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacto-form-card {
    padding: 28px 20px;
  }

  .contacto-info-section {
    padding: 60px 24px 60px;
  }

  .contacto-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contacto-hero-title {
    font-size: 36px;
  }

  .contacto-maps-section {
    padding: 50px 24px 70px;
  }

  .contacto-maps-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contacto-maps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contacto-map-iframe {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .contacto-section {
    padding: 40px 18px;
  }

  .contacto-info-section {
    padding: 40px 18px 40px;
  }

  .contacto-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contacto-info-card {
    padding: 24px 18px;
  }

  .contacto-hero-title {
    font-size: 28px;
  }

  .contacto-maps-section {
    padding: 40px 18px 50px;
  }

  .contacto-map-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .contacto-map-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contacto-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================================================
   MENÚ HAMBURGUESA Y OVERLAY MÓVIL MODERNO
   ========================================================= */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  width: 44px;
  height: 44px;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
  color: var(--color-accent);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 11, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 20px 24px;
  max-height: 100vh;
  overflow-y: auto;
  animation: mobileMenuSlideDown 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mobileMenuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.mobile-menu-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: auto 0;
  padding: 20px 0;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.mobile-nav-item .material-symbols-outlined {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
  color: #34d399 !important;
}

.mobile-nav-item.active .material-symbols-outlined {
  color: #34d399 !important;
}

.mobile-menu-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-quick-btn.wa {
  background: rgba(37, 211, 102, 0.14);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.mobile-quick-btn.phone {
  background: rgba(52, 211, 153, 0.14);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.mobile-nav-link.active,
.mobile-nav-item.active {
  color: #34d399 !important;
  font-weight: 700 !important;
}


/* =========================================================
   MENÚ HAMBURGUESA Y OVERLAY MÓVIL COMPACTO Y SIN SCROLL DE FONDO
   ========================================================= */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 12, 11, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 20px 24px;
  box-sizing: border-box;
  overflow-y: auto;
  animation: mobileMenuSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mobile-menu-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0 0;
  padding: 0;
  flex-grow: 0;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.mobile-nav-item svg {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
  color: #34d399 !important;
}

.mobile-nav-item.active svg {
  color: #34d399 !important;
}

/* =========================================================
   GALERÍA CARRUSEL SEDE LA MESA (CONTACTO)
   ========================================================= */
.la-mesa-gallery-section {
  padding: 80px 24px;
  background: #0d0f0e;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.la-mesa-gallery-container {
  max-width: 1100px;
  margin: 0 auto;
}

.la-mesa-gallery-header {
  text-align: center;
  margin-bottom: 36px;
}

.la-mesa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.la-mesa-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
}

.la-mesa-gallery-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.15;
}

.la-mesa-gallery-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.la-mesa-carousel-wrapper {
  position: relative;
  background: #141614;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.la-mesa-carousel-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.la-mesa-active-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease-in-out, transform 0.35s ease;
  user-select: none;
}

.la-mesa-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 15, 14, 0.85) 100%);
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.la-mesa-caption-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.la-mesa-counter {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #34d399;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.la-mesa-img-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.la-mesa-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 15, 14, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.la-mesa-nav-btn:hover {
  background: #34d399;
  color: #0d0f0e;
  border-color: #34d399;
  transform: translateY(-50%) scale(1.08);
}

.la-mesa-nav-btn.prev {
  left: 16px;
}

.la-mesa-nav-btn.next {
  right: 16px;
}

.la-mesa-top-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.la-mesa-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13, 15, 14, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.la-mesa-control-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.la-mesa-thumbs-strip {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(52, 211, 153, 0.4) transparent;
}

.la-mesa-thumbs-strip::-webkit-scrollbar {
  height: 6px;
}

.la-mesa-thumbs-strip::-webkit-scrollbar-thumb {
  background: rgba(52, 211, 153, 0.4);
  border-radius: 3px;
}

.la-mesa-thumb {
  flex: 0 0 100px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: all 0.25s ease;
  position: relative;
  background: #000;
}

.la-mesa-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.la-mesa-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.la-mesa-thumb.active {
  opacity: 1;
  border-color: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
}

.la-mesa-lightbox,
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.la-mesa-lightbox.active,
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.la-mesa-lightbox-img,
.lightbox-content img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.la-mesa-lightbox-close,
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 100000;
}

.la-mesa-lightbox-close:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .la-mesa-gallery-section {
    padding: 50px 16px;
  }

  .la-mesa-gallery-title {
    font-size: 28px;
  }

  .la-mesa-nav-btn {
    width: 40px;
    height: 40px;
  }

  .la-mesa-thumb {
    flex: 0 0 80px;
    height: 52px;
  }
}

/* =========================================================
   NUEVA GALERÍA SWIPER.JS SEDE LA MESA (ESTILOS V11 RESPONSIVE DEFINITIVOS)
   ========================================================= */
.swiper-la-mesa-section {
  padding: 80px 24px;
  background: #0d0f0e;
  color: #ffffff;
  position: relative;
}

.swiper-la-mesa-container {
  max-width: 1140px;
  margin: 0 auto;
}

.la-mesa-gallery-header {
  text-align: center;
  margin-bottom: 36px;
}

.la-mesa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.la-mesa-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
}

.la-mesa-gallery-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.15;
}

.la-mesa-gallery-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.swiper-la-mesa-card {
  background: #141614;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.swiper-la-mesa-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 580px;
  border-radius: 14px;
  overflow: hidden;
  background: #000000;
  position: relative;
}

.swiper-la-mesa-main .swiper-slide,
.swiper-mesitas-main .swiper-slide,
.swiper-admin-main .swiper-slide,
.swiper-psico-main .swiper-slide {
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.swiper-la-mesa-main .swiper-slide img,
.swiper-mesitas-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.swiper-admin-main .swiper-slide img,
.swiper-psico-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f9faf9;
  display: block;
  transition: transform 0.4s ease;
}

.swiper-la-mesa-main .swiper-slide:hover img,
.swiper-mesitas-main .swiper-slide:hover img,
.swiper-admin-main .swiper-slide:hover img,
.swiper-psico-main .swiper-slide:hover img {
  transform: scale(1.02);
}

.swiper-la-mesa-main .swiper-button-prev,
.swiper-mesitas-main .swiper-button-prev,
.swiper-normandia-main .swiper-button-prev,
.swiper-admin-main .swiper-button-prev,
.swiper-psico-main .swiper-button-prev {
  color: #34d399 !important;
  background: rgba(13, 15, 14, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.25s ease !important;
  z-index: 10 !important;
  left: 14px !important;
  right: auto !important;
  top: 50% !important;
  margin-top: 0 !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
}

.swiper-la-mesa-main .swiper-button-next,
.swiper-mesitas-main .swiper-button-next,
.swiper-normandia-main .swiper-button-next,
.swiper-admin-main .swiper-button-next,
.swiper-psico-main .swiper-button-next {
  color: #34d399 !important;
  background: rgba(13, 15, 14, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.25s ease !important;
  z-index: 10 !important;
  right: 14px !important;
  left: auto !important;
  top: 50% !important;
  margin-top: 0 !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
}

.swiper-la-mesa-main .swiper-button-next::after,
.swiper-la-mesa-main .swiper-button-prev::after,
.swiper-mesitas-main .swiper-button-next::after,
.swiper-mesitas-main .swiper-button-prev::after,
.swiper-normandia-main .swiper-button-next::after,
.swiper-normandia-main .swiper-button-prev::after,
.swiper-admin-main .swiper-button-next::after,
.swiper-admin-main .swiper-button-prev::after,
.swiper-psico-main .swiper-button-next::after,
.swiper-psico-main .swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold !important;
}

.swiper-la-mesa-main .swiper-button-next:hover,
.swiper-la-mesa-main .swiper-button-prev:hover,
.swiper-mesitas-main .swiper-button-next:hover,
.swiper-mesitas-main .swiper-button-prev:hover,
.swiper-normandia-main .swiper-button-next:hover,
.swiper-normandia-main .swiper-button-prev:hover,
.swiper-admin-main .swiper-button-next:hover,
.swiper-admin-main .swiper-button-prev:hover {
  background: #34d399 !important;
  color: #0d0f0e !important;
  border-color: #34d399 !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.swiper-psico-main .swiper-button-prev,
.swiper-psico-main .swiper-button-next {
  color: #3b82f6 !important;
}

.swiper-psico-main .swiper-button-next:hover,
.swiper-psico-main .swiper-button-prev:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.swiper-btn-fullscreen {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(13, 15, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  z-index: 10;
  transition: all 0.2s ease;
}

.swiper-btn-fullscreen:hover {
  background: #34d399;
  color: #0d0f0e;
  border-color: #34d399;
}

.swiper-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 15, 14, 0.88) 100%);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9;
}

.swiper-counter-pill {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #34d399;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.swiper-title-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.swiper-la-mesa-thumbs {
  margin-top: 14px;
  padding: 4px 0;
}

.swiper-la-mesa-thumbs .swiper-slide {
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: all 0.25s ease;
  background: #000;
}

.swiper-la-mesa-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-la-mesa-thumbs .swiper-slide:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.swiper-la-mesa-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #34d399;
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.55);
}

.la-mesa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.la-mesa-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.la-mesa-lightbox-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.la-mesa-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.la-mesa-lightbox-close:hover {
  background: #e0475a;
  border-color: #e0475a;
}

/* REGLAS RESPONSIVAS AJUSTADAS PARÁ AMBAS FLECHAS IZQ Y DER */
@media (max-width: 768px) {
  .swiper-la-mesa-section {
    padding: 44px 16px;
  }

  .la-mesa-gallery-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .la-mesa-gallery-subtitle {
    font-size: 14.5px;
  }

  .swiper-la-mesa-card {
    padding: 12px;
    border-radius: 16px;
  }

  .swiper-la-mesa-main {
    aspect-ratio: 4 / 3;
    max-height: 380px;
    border-radius: 12px;
  }

  .swiper-la-mesa-main .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    left: 8px !important;
    right: auto !important;
  }

  .swiper-la-mesa-main .swiper-button-next {
    width: 36px !important;
    height: 36px !important;
    right: 8px !important;
    left: auto !important;
  }

  .swiper-la-mesa-main .swiper-button-next::after,
  .swiper-la-mesa-main .swiper-button-prev::after {
    font-size: 15px !important;
  }

  .swiper-btn-fullscreen {
    width: 34px;
    height: 34px;
    top: 10px;
    right: 10px;
  }

  .swiper-btn-fullscreen .material-symbols-outlined {
    font-size: 20px;
  }

  .swiper-caption-overlay {
    padding: 16px 12px 10px;
    gap: 8px;
  }

  .swiper-counter-pill {
    font-size: 11px;
    padding: 3px 10px;
  }

  .swiper-title-text {
    display: block !important;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    max-width: calc(100% - 65px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(0, 0, 0, 0.55);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
  }

  .swiper-la-mesa-thumbs {
    margin-top: 10px;
  }

  .swiper-la-mesa-thumbs .swiper-slide {
    height: 52px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .swiper-la-mesa-section {
    padding: 36px 12px;
  }

  .la-mesa-badge {
    font-size: 10.5px;
    padding: 4px 12px;
  }

  .la-mesa-gallery-title {
    font-size: 22px;
  }

  .la-mesa-gallery-subtitle {
    font-size: 13.5px;
  }

  .swiper-la-mesa-card {
    padding: 10px;
    border-radius: 14px;
  }

  .swiper-la-mesa-main {
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }

  .swiper-la-mesa-main .swiper-button-prev {
    width: 34px !important;
    height: 34px !important;
    left: 8px !important;
    right: auto !important;
    background: rgba(13, 15, 14, 0.85) !important;
  }

  .swiper-la-mesa-main .swiper-button-next {
    width: 34px !important;
    height: 34px !important;
    right: 8px !important;
    left: auto !important;
    background: rgba(13, 15, 14, 0.85) !important;
  }

  .swiper-la-mesa-main .swiper-button-next::after,
  .swiper-la-mesa-main .swiper-button-prev::after {
    font-size: 14px !important;
  }

  .swiper-btn-fullscreen {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }

  .swiper-btn-fullscreen .material-symbols-outlined {
    font-size: 18px;
  }

  .swiper-caption-overlay {
    padding: 14px 10px 8px;
  }

  .swiper-title-text {
    display: block !important;
    font-size: 11.5px;
    color: #ffffff;
    font-weight: 600;
    max-width: calc(100% - 55px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(0, 0, 0, 0.65);
    padding: 2px 7px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
  }

  .swiper-la-mesa-thumbs .swiper-slide {
    height: 46px;
  }
}

/* =========================================================
   REPARAR ALTURA DE X-DC Y ELIMINAR ESPACIO EN BLANCO
   ========================================================= */
html,
body {
  background-color: #0d0f0e !important;
}

#dc-root,
#dc-root>.sc-host,
#dc-root>div {
  height: auto !important;
  min-height: 0 !important;
  background-color: #0d0f0e !important;
}

/* =========================================================
   GALERÍA SWIPER.JS SEDE MESITAS DEL COLEGIO (ESTILOS V11)
   ========================================================= */
.swiper-mesitas-section {
  padding: 60px 24px 80px;
  background: #0d0f0e;
  color: #ffffff;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.swiper-mesitas-container {
  max-width: 1140px;
  margin: 0 auto;
}

.mesitas-gallery-header {
  text-align: center;
  margin-bottom: 36px;
}

.mesitas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mesitas-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
}

.mesitas-gallery-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.15;
}

.mesitas-gallery-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.swiper-mesitas-card {
  background: #141614;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.swiper-mesitas-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 580px;
  border-radius: 14px;
  overflow: hidden;
  background: #000000;
  position: relative;
}

.swiper-mesitas-main .swiper-slide {
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.swiper-mesitas-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.swiper-mesitas-main .swiper-slide:hover img {
  transform: scale(1.02);
}

.swiper-mesitas-main .swiper-button-prev {
  color: #34d399 !important;
  background: rgba(13, 15, 14, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.25s ease !important;
  z-index: 10 !important;
  left: 14px !important;
  right: auto !important;
  top: 50% !important;
  margin-top: 0 !important;
  transform: translateY(-50%) !important;
}

.swiper-mesitas-main .swiper-button-next {
  color: #34d399 !important;
  background: rgba(13, 15, 14, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.25s ease !important;
  z-index: 10 !important;
  right: 14px !important;
  left: auto !important;
  top: 50% !important;
  margin-top: 0 !important;
  transform: translateY(-50%) !important;
}

.swiper-mesitas-main .swiper-button-next::after,
.swiper-mesitas-main .swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold !important;
}

.swiper-mesitas-main .swiper-button-next:hover,
.swiper-mesitas-main .swiper-button-prev:hover {
  background: #34d399 !important;
  color: #0d0f0e !important;
  border-color: #34d399 !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.swiper-mesitas-thumbs {
  margin-top: 14px;
  padding: 4px 0;
}

.swiper-mesitas-thumbs .swiper-slide {
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: all 0.25s ease;
  background: #000;
}

.swiper-mesitas-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-mesitas-thumbs .swiper-slide:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.swiper-mesitas-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #34d399;
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.55);
}

.mesitas-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.mesitas-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.mesitas-lightbox-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mesitas-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mesitas-lightbox-close:hover {
  background: #e0475a;
  border-color: #e0475a;
}

@media (max-width: 768px) {
  .swiper-mesitas-section {
    padding: 36px 16px;
  }

  .mesitas-gallery-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .mesitas-gallery-subtitle {
    font-size: 14.5px;
  }

  .swiper-mesitas-card {
    padding: 12px;
    border-radius: 16px;
  }

  .swiper-mesitas-main {
    aspect-ratio: 4 / 3;
    max-height: 380px;
    border-radius: 12px;
  }

  .swiper-mesitas-main .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    left: 8px !important;
    right: auto !important;
  }

  .swiper-mesitas-main .swiper-button-next {
    width: 36px !important;
    height: 36px !important;
    right: 8px !important;
    left: auto !important;
  }

  .swiper-mesitas-main .swiper-button-next::after,
  .swiper-mesitas-main .swiper-button-prev::after {
    font-size: 15px !important;
  }

  .swiper-mesitas-thumbs {
    margin-top: 10px;
  }

  .swiper-mesitas-thumbs .swiper-slide {
    height: 52px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .swiper-mesitas-section {
    padding: 30px 12px;
  }

  .mesitas-badge {
    font-size: 10.5px;
    padding: 4px 12px;
  }

  .mesitas-gallery-title {
    font-size: 22px;
  }

  .mesitas-gallery-subtitle {
    font-size: 13.5px;
  }

  .swiper-mesitas-card {
    padding: 10px;
    border-radius: 14px;
  }

  .swiper-mesitas-main {
    aspect-ratio: 4 / 3;
    max-height: 320px;
  }

  .swiper-mesitas-main .swiper-button-prev {
    width: 34px !important;
    height: 34px !important;
    left: 8px !important;
    right: auto !important;
  }

  .swiper-mesitas-main .swiper-button-next {
    width: 34px !important;
    height: 34px !important;
    right: 8px !important;
    left: auto !important;
  }

  .swiper-mesitas-main .swiper-button-next::after,
  .swiper-mesitas-main .swiper-button-prev::after {
    font-size: 14px !important;
  }

  .swiper-mesitas-thumbs .swiper-slide {
    height: 46px;
  }
}


/* =========================================================
   ESTILOS UNIFICADOS PARA GALERÍAS A 2 COLUMNAS (PARALELAS Y CENTRADAS)
   ========================================================= */
.galerias-sedes-section {
  padding: 70px 24px 80px;
  background: #0d0f0e;
  color: #ffffff;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.galerias-sedes-container {
  max-width: 1380px;
  margin: 0 auto;
}

.galerias-sedes-header {
  text-align: center;
  margin-bottom: 36px;
}

.galerias-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.galerias-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
}

.galerias-sedes-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.15;
}

.galerias-sedes-subtitle {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grilla a 2 Columnas (Izquierda y Derecha a la misma altura) */
.galerias-sedes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .galerias-sedes-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px;
  }

  .galerias-sedes-grid .galeria-columna-header {
    min-height: 114px;
    justify-content: flex-start;
  }

  .galerias-sedes-grid .galeria-columna-subtitle {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.galeria-columna-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

/* ENCABEZADOS CENTRADOS DE CADA COLUMNA */
.galeria-columna-header {
  text-align: center !important;
  margin-bottom: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.galeria-columna-header .normandia-badge,
.galeria-columna-header .la-mesa-badge,
.galeria-columna-header .mesitas-badge,
.galeria-columna-header .admin-badge,
.galeria-columna-header .psico-badge {
  margin-bottom: 8px !important;
}

.normandia-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.normandia-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
}

.galeria-normandia-wrapper {
  margin-bottom: 56px;
  width: 100%;
}

.galeria-columna-title {
  text-align: center !important;
  font-size: 21px;
  font-weight: 800;
  color: #ffffff;
  margin: 4px 0 4px !important;
  line-height: 1.25;
}

.galeria-columna-subtitle {
  text-align: center !important;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin: 0 auto !important;
  max-width: 580px;
}

.swiper-normandia-card,
.swiper-la-mesa-card,
.swiper-mesitas-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
  background: #141614;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  min-width: 0;
}

.swiper-normandia-card {
  width: 100%;
  box-sizing: border-box;
}

.swiper-admin-card,
.swiper-psico-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
  background: #f9faf9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  min-width: 0;
}

.swiper-normandia-main {
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  max-height: 480px;
  border-radius: 12px;
  overflow: hidden;
  background: #000000;
  position: relative;
}

.swiper-normandia-main .swiper-slide {
  overflow: hidden;
  cursor: pointer;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-normandia-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.swiper-normandia-main .swiper-slide:hover img {
  transform: scale(1.02);
}

.swiper-la-mesa-main,
.swiper-mesitas-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: #000000;
  position: relative;
}

.swiper-admin-main,
.swiper-psico-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 480px;
  max-height: 560px;
  border-radius: 12px;
  overflow: hidden;
  background: #f9faf9;
  position: relative;
}

@media (max-width: 768px) {

  .swiper-admin-main,
  .swiper-psico-main {
    aspect-ratio: 4 / 5;
    min-height: 440px;
    max-height: 520px;
  }
}

/* THUMBS CONTENEDORES CON ALTURA Y DIMENSIONES FIJAS */
.swiper-normandia-thumbs,
.swiper-la-mesa-thumbs,
.swiper-mesitas-thumbs,
.swiper-admin-thumbs,
.swiper-psico-thumbs {
  width: 100% !important;
  height: 64px !important;
  margin-top: 14px !important;
  padding: 2px 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.swiper-normandia-thumbs .swiper-wrapper,
.swiper-la-mesa-thumbs .swiper-wrapper,
.swiper-mesitas-thumbs .swiper-wrapper,
.swiper-admin-thumbs .swiper-wrapper,
.swiper-psico-thumbs .swiper-wrapper {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

.swiper-normandia-thumbs .swiper-slide,
.swiper-la-mesa-thumbs .swiper-slide,
.swiper-mesitas-thumbs .swiper-slide,
.swiper-admin-thumbs .swiper-slide,
.swiper-psico-thumbs .swiper-slide {
  height: 56px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  opacity: 0.7 !important;
  transition: all 0.2s ease !important;
  background: #141614 !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
}

.swiper-admin-thumbs .swiper-slide,
.swiper-psico-thumbs .swiper-slide {
  background: #f9faf9 !important;
}

.swiper-normandia-thumbs .swiper-slide-thumb-active,
.swiper-la-mesa-thumbs .swiper-slide-thumb-active,
.swiper-mesitas-thumbs .swiper-slide-thumb-active,
.swiper-admin-thumbs .swiper-slide-thumb-active,
.swiper-psico-thumbs .swiper-slide-thumb-active {
  opacity: 1 !important;
  border-color: #34d399 !important;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.4) !important;
}

.swiper-normandia-thumbs .swiper-slide img,
.swiper-la-mesa-thumbs .swiper-slide img,
.swiper-mesitas-thumbs .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 6px !important;
}

.swiper-admin-thumbs .swiper-slide img,
.swiper-psico-thumbs .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #f9faf9 !important;
  display: block !important;
  border-radius: 6px !important;
}

@media (max-width: 991px) {
  .galerias-sedes-section {
    padding: 50px 18px;
  }

  .galerias-sedes-title {
    font-size: 26px;
  }

  .galeria-normandia-wrapper {
    margin-bottom: 40px;
  }

  .swiper-normandia-main {
    aspect-ratio: 16 / 9;
    max-height: 380px;
  }
}

@media (max-width: 576px) {
  .galerias-sedes-section {
    padding: 40px 14px;
  }

  .galerias-sedes-title {
    font-size: 22px;
  }

  .galeria-normandia-wrapper {
    margin-bottom: 34px;
  }

  .swiper-normandia-card,
  .swiper-la-mesa-card,
  .swiper-mesitas-card {
    padding: 12px;
  }

  .swiper-normandia-main {
    aspect-ratio: 4 / 3;
    min-height: 240px;
    max-height: 300px;
  }

  .swiper-normandia-thumbs {
    height: 52px !important;
  }

  .swiper-normandia-thumbs .swiper-slide {
    height: 44px !important;
  }
}

/* --- 8. TARJETAS FULL-BLEED DEL EQUIPO (TEXTO SOBRE IMAGEN) --- */
.admin-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.psico-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.psico-overlay-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #f9faf9;
}

.psico-overlay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.psico-overlay-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}

.psico-overlay-card:hover .psico-overlay-card-img {
  transform: scale(1.05);
}

.psico-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.psico-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
  color: #ffffff;
}

.psico-overlay-name {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.psico-overlay-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
  .admin-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .psico-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

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

@media (max-width: 576px) {
  .psico-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================================================
   BOTÓN FLOTANTE DE WHATSAPP PERMANENTE & TRANSVERSAL
   ========================================================= */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.2s ease;
  cursor: pointer;
}

.whatsapp-float-btn svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
  transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float-btn:hover svg {
  transform: scale(1.05);
}

.whatsapp-float-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.whatsapp-float-btn:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.25);
  }

  .whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* =========================================================
   GALERÍAS Y LIGHTBOX SEDES (CONTACTO & GENERAL)
   ========================================================= */
.swiper-la-mesa-card,
.swiper-mesitas-card {
  background: #141614;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  position: relative;
}

.swiper-la-mesa-main,
.swiper-mesitas-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 480px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #0a0c0b;
}

.swiper-la-mesa-main .swiper-slide,
.swiper-mesitas-main .swiper-slide {
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.swiper-la-mesa-main .swiper-slide img,
.swiper-mesitas-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Fotos de Sedes centradas al 50% */
.swiper-la-mesa-main .swiper-slide img[src*="la-mesa-09"],
.swiper-la-mesa-main .swiper-slide img[alt*="Fotografía 9"],
.swiper-la-mesa-main .swiper-slide img[src*="la-mesa-10"],
.swiper-la-mesa-main .swiper-slide img[alt*="Fotografía 10"],
.swiper-la-mesa-main .swiper-slide img[src*="la-mesa-11"],
.swiper-la-mesa-main .swiper-slide img[alt*="Fotografía 11"],
.swiper-la-mesa-main .swiper-slide img[src*="la-mesa-13"],
.swiper-la-mesa-main .swiper-slide img[alt*="Fotografía 12"],
.swiper-la-mesa-main .swiper-slide img[src*="la-mesa-17"],
.swiper-la-mesa-main .swiper-slide img[alt*="Fotografía 14"],
.swiper-la-mesa-main .swiper-slide img[src*="la-mesa-18"],
.swiper-la-mesa-main .swiper-slide img[alt*="Fotografía 15"],
.swiper-la-mesa-main .swiper-slide img[src*="la-mesa-19"],
.swiper-la-mesa-main .swiper-slide img[alt*="Fotografía 16"],
.swiper-la-mesa-main .swiper-slide img[src*="la-mesa-20"],
.swiper-la-mesa-main .swiper-slide img[alt*="Fotografía 17"],
.swiper-mesitas-main .swiper-slide img[src*="mesitas-01"],
.swiper-mesitas-main .swiper-slide img[alt*="Fotografía 1 "],
.swiper-mesitas-main .swiper-slide img[src*="mesitas-02"],
.swiper-mesitas-main .swiper-slide img[alt*="Fotografía 2 "],
.swiper-mesitas-main .swiper-slide img[src*="mesitas-03"],
.swiper-mesitas-main .swiper-slide img[alt*="Fotografía 3 "],
.swiper-mesitas-main .swiper-slide img[src*="mesitas-04"],
.swiper-mesitas-main .swiper-slide img[alt*="Fotografía 4 "],
.swiper-mesitas-main .swiper-slide img[src*="mesitas-09"],
.swiper-mesitas-main .swiper-slide img[alt*="Fotografía 9 "],
.swiper-mesitas-main .swiper-slide img[src*="mesitas-13"],
.swiper-mesitas-main .swiper-slide img[alt*="Fotografía 11"],
.swiper-mesitas-main .swiper-slide img[src*="mesitas-18"],
.swiper-mesitas-main .swiper-slide img[alt*="Fotografía 16"] {
  object-position: center 50% !important;
}

/* Fotografía 13 con encuadre superior personalizado al 70% */
.swiper-la-mesa-main .swiper-slide img[src*="la-mesa-14"],
.swiper-la-mesa-main .swiper-slide img[alt*="Fotografía 13"],
.swiper-mesitas-main .swiper-slide img[src*="mesitas-17"],
.swiper-mesitas-main .swiper-slide img[alt*="Fotografía 15"] {
  object-position: center 70% !important;
}

/* Fotografía 13 con encuadre superior personalizado al 100% */

.swiper-mesitas-main .swiper-slide img[src*="mesitas-15"],
.swiper-mesitas-main .swiper-slide img[alt*="Fotografía 13"] {
  object-position: center 100% !important;
}

.swiper-la-mesa-main .swiper-slide:hover img,
.swiper-mesitas-main .swiper-slide:hover img {
  transform: scale(1.03);
}

/* Botones de navegación (Flechas) */
.swiper-la-mesa-main .swiper-button-next,
.swiper-la-mesa-main .swiper-button-prev,
.swiper-mesitas-main .swiper-button-next,
.swiper-mesitas-main .swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(13, 15, 14, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #34d399 !important;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease !important;
  z-index: 25 !important;
  cursor: pointer !important;
}

.swiper-la-mesa-main .swiper-button-next::after,
.swiper-la-mesa-main .swiper-button-prev::after,
.swiper-mesitas-main .swiper-button-next::after,
.swiper-mesitas-main .swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 800 !important;
}

.swiper-la-mesa-main .swiper-button-next:hover,
.swiper-la-mesa-main .swiper-button-prev:hover,
.swiper-mesitas-main .swiper-button-next:hover,
.swiper-mesitas-main .swiper-button-prev:hover {
  background: #34d399 !important;
  color: #0d0f0e !important;
  border-color: #34d399 !important;
  transform: scale(1.08);
}

/* Botón Pantalla Completa / Zoom */
.swiper-btn-fullscreen {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 15, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.swiper-btn-fullscreen:hover {
  background: #34d399;
  color: #0d0f0e;
  border-color: #34d399;
  transform: scale(1.1);
}

.swiper-btn-fullscreen .material-symbols-outlined {
  font-size: 20px;
}

/* Caption y Contador Overlay */
.swiper-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 12, 11, 0.85) 60%, rgba(10, 12, 11, 0.96) 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
  pointer-events: none;
}

.swiper-counter-pill {
  background: rgba(52, 211, 153, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.swiper-title-text {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Miniaturas Thumbs */
.swiper-la-mesa-thumbs,
.swiper-mesitas-thumbs {
  margin-top: 12px;
  padding: 4px 0;
}

.swiper-la-mesa-thumbs .swiper-slide,
.swiper-mesitas-thumbs .swiper-slide {
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  background: #0a0c0b;
}

.swiper-la-mesa-thumbs .swiper-slide img,
.swiper-mesitas-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-la-mesa-thumbs .swiper-slide:hover,
.swiper-mesitas-thumbs .swiper-slide:hover {
  opacity: 0.85;
}

.swiper-la-mesa-thumbs .swiper-slide-thumb-active,
.swiper-mesitas-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
}

/* Lightbox Modal Pantalla Completa */
.la-mesa-lightbox,
.mesitas-lightbox,
.normandia-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  animation: fadeInLightbox 0.25s ease forwards;
}

.la-mesa-lightbox.active,
.mesitas-lightbox.active,
.normandia-lightbox.active {
  display: flex !important;
}

.la-mesa-lightbox-img,
.mesitas-lightbox-img,
.normandia-lightbox-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  cursor: default;
}

.la-mesa-lightbox-close,
.mesitas-lightbox-close,
.normandia-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.2s ease;
}

.la-mesa-lightbox-close:hover,
.mesitas-lightbox-close:hover,
.normandia-lightbox-close:hover {
  background: #e0475a;
  border-color: #e0475a;
  transform: scale(1.1);
}

.la-mesa-lightbox-close .material-symbols-outlined,
.mesitas-lightbox-close .material-symbols-outlined,
.normandia-lightbox-close .material-symbols-outlined {
  font-size: 26px;
}

@keyframes fadeInLightbox {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}