.elementor-22016 .elementor-element.elementor-element-4f7f2e1{--display:flex;--min-height:0px;--overlay-opacity:0.5;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-22016 .elementor-element.elementor-element-4f7f2e1::before, .elementor-22016 .elementor-element.elementor-element-4f7f2e1 > .elementor-background-video-container::before, .elementor-22016 .elementor-element.elementor-element-4f7f2e1 > .e-con-inner > .elementor-background-video-container::before, .elementor-22016 .elementor-element.elementor-element-4f7f2e1 > .elementor-background-slideshow::before, .elementor-22016 .elementor-element.elementor-element-4f7f2e1 > .e-con-inner > .elementor-background-slideshow::before, .elementor-22016 .elementor-element.elementor-element-4f7f2e1 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{--background-overlay:'';}.elementor-22016 .elementor-element.elementor-element-b8b7b53{width:auto;max-width:auto;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-22016 .elementor-element.elementor-element-b8b7b53.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-22016 .elementor-element.elementor-element-894ed3e{--display:flex;}.elementor-22016 .elementor-element.elementor-element-e1008c8{--display:flex;}.elementor-22016 .elementor-element.elementor-element-16863f1{--display:flex;}.elementor-22016 .elementor-element.elementor-element-bb21858{--display:flex;}.elementor-22016 .elementor-element.elementor-element-80a4a74{--display:flex;}@media(min-width:768px){.elementor-22016 .elementor-element.elementor-element-4f7f2e1{--width:1600px;}}/* Start custom CSS for html, class: .elementor-element-b8b7b53 *//* Variables globales */
:root {
    --jb-azul-principal: #123498;
    --jb-azul-oscuro: #0a1b4d;
    --jb-naranja: #F46F0B;
    --jb-blanco: #ffffff;
}

/* Contenedor Principal con tu nuevo fondo animado */
.modern-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55vh;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    color: var(--jb-blanco);
    box-sizing: border-box;

    /* Tu nuevo fondo CSS */
    background: linear-gradient(351deg, #123498, #096ACC);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 5s ease infinite;
    -moz-animation: AnimationName 5s ease infinite;
    animation: AnimationName 5s ease infinite;
}

/* Keyframes de tu fondo */
@-webkit-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}

/* --- ESTILOS DEL CONTENIDO (Intactos) --- */
.banner-content {
    position: relative; 
    width: 100%;
    max-width: 1100px; 
    padding: 0 40px;
    box-sizing: border-box;
    text-align: center;
    z-index: 1; 
    animation: fadeInUp 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; 
}

.banner-content .title {
    color: var(--jb-blanco);
    margin: 0 auto;
    font-size: 3.5rem; 
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 25px;
}

.banner-content .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--jb-naranja);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(244, 111, 11, 0.4);
}

.banner-content .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0;
    line-height: 1.6;
    color: #e0e6ed; 
}

.cta-button {
    display: inline-block;
    background: var(--jb-naranja);
    color: var(--jb-blanco);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244,111,11,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--jb-azul-oscuro);
    box-shadow: 0 8px 25px rgba(10,27,77,0.3);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .banner-content .title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .modern-banner { height: 60vh; }
    .banner-content { padding: 0 20px; gap: 20px; }
    .banner-content .title { font-size: 2rem; letter-spacing: 1px; max-width: 100%; padding-bottom: 20px; }
    .banner-content .title::after { width: 60px; height: 4px; }
    .banner-content .subtitle { font-size: 1rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8690078 *//* --- CONFIGURACIÓN DE LA SECCIÓN --- */
.section-marcas-lineal {
    background-color: #F8F9FA;
    padding: 80px 0;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: -10px;
    margin-bottom: -10px;
    box-sizing: border-box;
}

/* Cabecera */
.marcas-header { margin-bottom: 50px; padding: 0 20px; }
.marcas-title { color: #123498; font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }
.marcas-divider { width: 60px; height: 4px; background-color: #F46F0B; margin: 0 auto 20px auto; border-radius: 2px; }
.marcas-subtitle { color: #555555; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- CONTENEDOR DEL CARRUSEL --- */
.carousel-container-lineal {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
}

/* Difuminado en los bordes para que los logos aparezcan/desaparezcan suavemente */
.carousel-container-lineal::before,
.carousel-container-lineal::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.carousel-container-lineal::before {
    left: 0;
    background: linear-gradient(to right, #f4f6f9 0%, transparent 100%);
}
.carousel-container-lineal::after {
    right: 0;
    background: linear-gradient(to left, #f4f6f9 0%, transparent 100%);
}

/* --- LA PISTA QUE SE MUEVE --- */
.carousel-track-lineal {
    display: flex;
    align-items: center;
    gap: 30px; /* Separación entre tarjetas */
    width: max-content; /* Permite que la pista sea tan larga como necesite */
    animation: scrollLinear 15s linear infinite; /* 15s para 8 tarjetas. Si agregas más, súbele los segundos */
}


/* --- LAS TARJETAS CUADRADAS --- */
.marca-card-lineal {
    width: 200px;
    height: 200px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.03);
}

.marca-card-lineal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- LA MATEMÁTICA DEL BUCLE INFINITO --- */
@keyframes scrollLinear {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .marcas-title { font-size: 1.8rem; }
    .marca-card-lineal { width: 140px; height: 140px; }
    .carousel-container-lineal::before,
    .carousel-container-lineal::after { width: 50px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-41d3f1e */@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
  /* --- Tus colores originales --- */
  --azul: #123498;
  --naranja: #f46f0b;
  --turquesa: #41c4c0;
  --rojo: #ce0b19;
  --gris: #555555;
  --azul-oscuro: #096acc;
  --amarillo-jb: #fdb907;

  /* --- Nuevos colores complementarios --- */
  --verde: #2aa851;     /* Ideal para Comida o Salud */
  --morado: #673ab7;    /* Ideal para Educación */
  --celeste: #00bcd4;   /* Alternativa al turquesa */
  --rosa: #e91e63;      /* Color de acento vibrante */
}

/* ── WRAPPER EXTERIOR ── */
.seccion-beneficios-wrapper {
  background-color: #f8f9fa;
  padding: 80px 20px;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  left: 50%;
  margin-top: -10px;
  margin-bottom: -10px;
  margin-left: -50vw !important;
  overflow-x: hidden;
}

/* ── CAJA AZUL CON MALLA ── */
.seccion-beneficios-3d {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 30px;
  overflow: visible;
  background-color: var(--azul-oscuro);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(
      circle at 60% 40%,
      rgba(18, 52, 152, 0.5) 0%,
      transparent 60%
    ),
    radial-gradient(circle at center, #096acc 0%, #123498 100%);
  background-size:
    60px 60px,
    60px 60px,
    auto,
    auto;
  animation: gridDownwardsAdvance 30s linear infinite;
}

@keyframes gridDownwardsAdvance {
  0% {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      0 120px,
      0 120px,
      0 0,
      0 0;
  }
}

/* ── CABECERA Y FILTROS ── */
.beneficios-header-dark {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.beneficios-title-dark {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
.beneficios-divider {
  width: 60px;
  height: 4px;
  background: var(--naranja);
  margin: 15px auto;
  border-radius: 2px;
}
.beneficios-subtitle-dark {
  color: #cbd5e1;
  font-size: 1.05rem;
}

.filtros-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.filtro-btn {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 22px;
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.filtro-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}
.filtro-btn.activo {
  background: var(--naranja);
  border-color: var(--naranja);
  color: #fff;
}

/* ── GRID ── */
.beneficios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.beneficio-card-h {
  background: #ffffff;
  border-radius: 15px;
  border-top: 5px solid;
  width: calc(25% - 15px);
  min-width: 330px;
  display: flex;
  flex-direction: row;
  overflow: visible; /* ← cambia a visible */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  clip-path: inset(0 round 15px);
}

.card-imagen-h {
  width: 42%;
  flex-shrink: 0;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  background-color: #f4f6f9;
  border-right: none;
  min-height: 0;
  margin: 10px 0 10px 10px;
  border-radius: 10px;
}

.img-fondo-h {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.logo-bar-h {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 54px;
  height: 54px;
  background-color: #ffffff;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 0;
}

.logo-bar-h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── CONTENIDO DERECHO ── */
.card-contenido-h {
  width: 58%;
  padding: 15px 15px 12px 12px;
  display: flex;
  flex-direction: column;
  border-left: none;
  min-height: 100%;
}

.card-top-h {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.card-badge-h {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: capitalize;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.card-titulo-h {
  font-size: 1rem;
  font-weight: 800;
  color: var(--azul);
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.card-oferta-h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-grow: 1;
}

.oferta-badge-h {
  padding: 6px 8px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.dscto-num-h {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.dscto-num-h small {
  font-size: 1rem;
  margin-top: 2px;
}

.dscto-sub-h {
  font-size: 0.65rem;
  font-weight: 800;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* ── COLORES POR CATEGORÍA ── */
.card-badge-h.salud,
.oferta-badge-h.salud {
  background: #e6fff9;
  color: #0a8c82;
}
.card-badge-h.entretenimiento,
.oferta-badge-h.entretenimiento {
  background: #fff0f0;
  color: var(--rojo);
}
.card-badge-h.educacion,
.oferta-badge-h.educacion {
  background: #eef2ff;
  color: var(--azul);
}
.card-badge-h.comida,
.oferta-badge-h.comida {
  background: #fff7ec;
  color: #c45a00;
}
.card-badge-h.transporte,
.oferta-badge-h.transporte {
  background: #f0f7ff;
  color: #0066cc;
}
.card-badge-h.moda,
.oferta-badge-h.moda {
  background: #fff0f9;
  color: #a0006e;
}
.card-badge-h.otros,
.oferta-badge-h.otros {
  background: #f4f4f4;
  color: #444;
}

.oferta-desc-h {
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--gris);
  margin: 0;
  font-weight: 500;
}

.card-footer-h {
  border-top: 1px solid #eee;
  padding-top: 8px;
  font-size: 0.65rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── PRÓXIMAMENTE ── */
.mensaje-proximamente {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 50px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mensaje-proximamente .card-titulo {
  color: #fff;
  font-size: 1.4rem;
}
.mensaje-proximamente .card-titulo::after {
  background: var(--naranja);
  left: 50%;
  transform: translateX(-50%);
}
.mensaje-proximamente .card-lista {
  color: #9db4cc;
  font-size: 0.95rem;
  margin: 0;
}

.dscto-num-h.texto-largo {
  font-size: 1rem;
  white-space: nowrap;
  margin-bottom: 2px;
}

/* ── DESKTOP GRANDE (hasta 1400px) ── */
@media (max-width: 1400px) {
  .beneficio-card-h {
    width: calc(33.33% - 15px);
  }
}

/* ── TABLET (hasta 1050px) ── */
@media (max-width: 1050px) {
.dscto-num-h.texto-largo {
    font-size: 0.95rem;
  }
  
  .beneficio-card-h {
    width: calc(50% - 10px);
    min-width: 280px;
  }
  .card-imagen-h {
    width: 42%;
  }
  .beneficios-title-dark {
    font-size: 2rem;
  }
  .card-contenido-h {
    width: 58%;
    padding: 12px 10px;
  }
  .card-titulo-h {
    font-size: 0.9rem;
  }
  .dscto-num-h {
    font-size: 1.5rem;
  }
  .oferta-badge-h {
    min-width: 52px;
  }
}
/* ── MÓVIL (hasta 767px) ── */
@media (max-width: 767px) {
    .dscto-num-h.texto-largo {
    font-size: 0.85rem;
  }
  
  .seccion-beneficios-wrapper {
    padding: 40px 0;
  }
  .seccion-beneficios-3d {
    border-radius: 0;
    padding: 40px 12px;
  }

  /* ← GRID: 2 columnas iguales */
  .beneficios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .filtros-container {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    gap: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .filtros-container::-webkit-scrollbar {
    display: none;
  }

  .filtro-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .beneficio-card-h {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    flex-direction: column;
  }

  .card-imagen-h {
    width: calc(100% - 20px);
    aspect-ratio: 1 / 1;
    align-self: auto;
    border-right: none;
    border-bottom: none;
    min-height: unset;
    margin: 10px 10px 0 10px;
    border-radius: 10px;
  }

  .card-contenido-h {
    width: 100%;
    padding: 10px 12px 12px 12px;
    border-left: none;
    min-height: unset;
  }

  .card-titulo-h {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }
  .dscto-num-h {
    font-size: 1.3rem;
  }
  .dscto-num-h small {
    font-size: 0.8rem;
  }
  .oferta-desc-h {
    font-size: 0.72rem;
  }
  .oferta-badge-h {
    min-width: 46px;
    padding: 5px 5px;
  }
  .card-badge-h {
    font-size: 0.58rem;
    padding: 2px 7px;
  }
  .beneficios-title-dark {
    font-size: 1.6rem;
  }
  .logo-bar-h {
    width: 38px;
    height: 38px;
    bottom: 8px;
    left: 8px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0783eda */@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

/* --- KEYFRAMES PARA EL FONDO ANIMADO --- */
@-webkit-keyframes moveGradientPosters {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-moz-keyframes moveGradientPosters {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@keyframes moveGradientPosters {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}

/* --- WRAPPER EXTERIOR --- */
.seccion-posters-wrapper {
    /* AQUÍ ESTÁ EL CAMBIO: Degradado lineal en movimiento */
    background: linear-gradient(351deg, #123498, #096ACC);
    background-size: 400% 400%;
    -webkit-animation: moveGradientPosters 5s ease infinite;
    -moz-animation: moveGradientPosters 5s ease infinite;
    animation: moveGradientPosters 5s ease infinite;

    padding: 90px 0;
    font-family: 'Lato', sans-serif;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: 50%;
    margin-left: -50vw !important;
    margin-top: -10px;
    margin-bottom: -10px;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- CABECERA --- */
.posters-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.posters-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.posters-divider {
    width: 60px;
    height: 4px;
    background: #F46F0B; 
    margin: 15px auto;
    border-radius: 2px;
}

/* --- EL CARRUSEL 3D --- */
.carousel-posters {
    position: relative;
    z-index: 1;
    height: 420px; 
    width: 100%;
    overflow: visible;
    pointer-events: none; 
}

.carousel-item-poster {
    --items: 7; 

    --width: clamp(200px, 30vw, 280px);
    --height: clamp(280px, 40vw, 380px);
    --x: calc(var(--active) * 600%);
    --y: calc(var(--active) * 120%);
    --rot: calc(var(--active) * 80deg);
    --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
    
    overflow: hidden;
    position: absolute;
    z-index: var(--zIndex);
    width: var(--width);
    height: var(--height);
    margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
    border-radius: 15px;
    top: 50%;
    left: 50%;
    user-select: none;
    transform-origin: 0% 100%;
    box-shadow: 0 10px 40px 10px rgba(0, 0, 0, 0.4);
    background: #000;
    pointer-events: all; 
    transform: translate(var(--x), var(--y)) rotate(var(--rot));
    transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
    cursor: grab;
}

.carousel-item-poster:active {
    cursor: grabbing;
}

/* Estructura interna de la tarjeta (Limpia) */
.carousel-item-poster .carousel-box {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    opacity: var(--opacity);
}

/* La imagen del póster a color real */
.carousel-item-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .posters-title { font-size: 2rem; }
    .carousel-posters { height: 350px; }
}

/* --- LIGHTBOX --- */
.poster-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}
.poster-lightbox.visible {
    display: flex;
    background: rgba(0, 0, 0, 0.88);
}
.poster-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.poster-lightbox.visible img {
    transform: scale(1);
    opacity: 1;
}
.poster-lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-family: sans-serif;
    user-select: none;
}
.poster-lightbox-close:hover { opacity: 1; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-408768f */@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap");

/* ── VARIABLES CORPORATIVAS ── */
:root {
  /* Paleta corporativa JB */
  --azul:       #123498;
  --naranja:    #F46F0B;
  --azul-marino:#096ACC;
  --amarillo:   #FDB907;
  --rojo:       #CE0B19;
  --turquesa:   #41C4C0;
  --gris:       #A3A3A3;
  --blanco:     #FFFFFF;

  --bg-wrapper: #f8f9fa;  

  --bg-inner-start: #0d2a8a;
  --bg-inner-end:   #096ACC;

  --f-display: "Montserrat", sans-serif;
  --f-body:    "Lato", sans-serif;

  --sh-card:  0 6px 22px rgba(0,0,0,.18);
  --sh-hover: 0 16px 40px rgba(0,0,0,.30);

  --r:    16px;
  --r-sm: 10px;
}

/* ── RESET BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ================================================================
   WRAPPER EXTERIOR — Full-width WordPress
   Mismo patrón que tu sección de referencia (.seccion-beneficios-wrapper)
================================================================ */
.jb-alianzas-wrapper {
  background-color: var(--bg-wrapper);
  /* patrón de puntos finos sobre el azul claro */
  background-image:
    radial-gradient(circle, rgba(18,52,152,.14) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 80px 20px;
  font-family: var(--f-body);
  box-sizing: border-box;

  /* ── Full-width WordPress ── */
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  left: 50%;
  margin-left: -50vw !important;
  margin-top: -10px;
  margin-bottom: -10px;
  overflow-x: hidden;
}

/* ================================================================
   SECCIÓN INTERIOR — caja azul corporativo
================================================================ */
.jb-alianzas-inner {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 48px;
  border-radius: 28px;
  overflow: hidden;

  /* Gradiente azul corporativo con malla animada */
  background-color: var(--azul-marino);
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 65% 35%, rgba(18,52,152,.55) 0%, transparent 60%),
    radial-gradient(circle at center, var(--bg-inner-end) 0%, var(--bg-inner-start) 100%);
  background-size:
    60px 60px,
    60px 60px,
    auto,
    auto;
  animation: gridScroll 30s linear infinite;
}

@keyframes gridScroll {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to   { background-position: 0 120px, 0 120px, 0 0, 0 0; }
}

/* ── ORBES DECORATIVOS ── */
.jb-bg-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.jb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .16;
}
.jb-orb--a {
  width: 480px; height: 480px;
  background: var(--azul);
  top: -140px; left: -100px;
  animation: orbFloat 11s ease-in-out infinite;
}
.jb-orb--b {
  width: 360px; height: 360px;
  background: var(--naranja);
  bottom: -80px; right: -60px;
  animation: orbFloat 14s ease-in-out infinite reverse;
}
.jb-orb--c {
  width: 260px; height: 260px;
  background: var(--turquesa);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 9s ease-in-out infinite 1.5s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(16px,-20px) scale(1.05); }
}
.jb-orb--c { animation-name: orbFloatCenter; }
@keyframes orbFloatCenter {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%      { transform: translate(calc(-50% + 16px), calc(-50% - 20px)) scale(1.05); }
}

/* ================================================================
   ENCABEZADO
================================================================ */
.jb-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Etiqueta superior */
.jb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .42rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.jb-eyebrow .material-icons-outlined {
  font-size: .95rem;
  color: var(--naranja);
}

/* Título principal */
.jb-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--blanco);
  line-height: 1.12;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.jb-title-accent {
  color: var(--naranja);
  position: relative;
  display: inline-block;
}
.jb-title-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 3px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--naranja), rgba(244,111,11,.1));
  border-radius: 3px;
}

/* Divisor con gema */
.jb-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.jb-div-bar {
  display: block;
  width: 56px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3));
}
.jb-div-bar:last-child {
  background: linear-gradient(270deg, transparent, rgba(255,255,255,.3));
}
.jb-div-gem {
  width: 9px; height: 9px;
  background: var(--naranja);
  transform: rotate(45deg);
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(244,111,11,.6);
}

.jb-subtitle {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--blanco);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================================
   LAYOUT DOS COLUMNAS
================================================================ */
.jb-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .jb-layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* ── ETIQUETA DE COLUMNA ── */
.jb-col-label {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.6rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.jb-col-label-icon {
  font-size: 1.5rem;
  color: var(--naranja);
  background: rgba(244,111,11,.16);
  padding: .45rem;
  border-radius: var(--r-sm);
}
.jb-col-label h3 {
  font-family: var(--f-display);
  font-size: .95rem;
  font-weight: 800;
  color: var(--blanco);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ================================================================
   GRID DE TARJETAS DE BENEFICIOS
================================================================ */
.jb-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 540px) {
  .jb-cards-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Tarjeta ── */
.jb-card {
  background: var(--blanco);
  border-radius: var(--r);
  padding: 1.5rem 1.3rem 1.4rem;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;

  /* borde superior de color del acento */
  border-top: 5px solid var(--accent);
}

/* mancha de color de fondo en hover */
.jb-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-bg);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.jb-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); }
.jb-card:hover::before { opacity: 1; }

/* Número decorativo marca de agua */
.jb-card-num {
  position: absolute;
  top: .6rem; right: .9rem;
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  opacity: .07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Ícono */
.jb-card-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--r-sm);
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background .3s;
}
.jb-card:hover .jb-card-icon {
  background: var(--accent);
}
.jb-card-icon .material-icons-outlined {
  font-size: 1.6rem;
  color: var(--accent);
  transition: color .3s;
}
.jb-card:hover .jb-card-icon .material-icons-outlined {
  color: var(--blanco);
}

/* Contenido */
.jb-card-content { position: relative; z-index: 1; }
.jb-card-content h4 {
  font-family: var(--f-display);
  font-size: .9rem;
  font-weight: 800;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .35rem;
}
.jb-card-content p {
  font-family: var(--f-body);
  font-size: .85rem;
  font-weight: 400;
  color: #555;
  line-height: 1.55;
}

/* Barra inferior decorativa */
.jb-card-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  border-radius: 0 0 var(--r) var(--r);
}
.jb-card:hover .jb-card-bar { transform: scaleX(1); }

/* ================================================================
   TARGETS — ¿A quién va dirigido?
================================================================ */
.jb-targets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jb-target {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--blanco);
  border-radius: var(--r);
  padding: 1.15rem 1.2rem;
  border-left: 5px solid var(--t-accent);
  box-shadow: var(--sh-card);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}

/* Brillo lateral izquierdo */
.jb-target::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--t-accent) 8%, transparent) 0%, transparent 55%);
  pointer-events: none;
}
.jb-target:hover {
  transform: translateX(8px);
  box-shadow: var(--sh-hover);
}

/* Ícono */
.jb-target-icon-wrap {
  width: 2.7rem; height: 2.7rem;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--t-accent) 14%, white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s;
}
.jb-target:hover .jb-target-icon-wrap {
  background: var(--t-accent);
}
.jb-target-icon-wrap .material-icons-outlined {
  font-size: 1.4rem;
  color: var(--t-accent);
  transition: color .3s;
}
.jb-target:hover .jb-target-icon-wrap .material-icons-outlined {
  color: var(--blanco);
}

/* Texto */
.jb-target-body { flex: 1; position: relative; z-index: 1; }
.jb-target-body h4 {
  font-family: var(--f-display);
  font-size: .88rem;
  font-weight: 800;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .22rem;
}
.jb-target-body p {
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 400;
  color: #555;
  line-height: 1.45;
}

/* Flecha */
.jb-target-arrow {
  font-size: 1.3rem;
  color: var(--t-accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.jb-target:hover .jb-target-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   STRIP DE ESTADÍSTICAS
================================================================ */
.jb-stats-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 0;
  margin-top: 3.5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r);
  padding: 1.8rem 1.2rem;
  backdrop-filter: blur(10px);
}

.jb-stat {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  text-align: center;
  padding: .4rem 0;
}
.jb-stat .material-icons-outlined {
  font-size: 1.5rem;
  color: var(--naranja);
}
.jb-stat strong {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blanco);
  line-height: 1;
  letter-spacing: .02em;
}
.jb-stat small {
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.jb-stat-sep {
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,.14);
  flex-shrink: 0;
}

/* ================================================================
   ANIMACIONES DE ENTRADA
================================================================ */
.jb-card,
.jb-target,
.jb-stat {
  animation: jbFadeUp .5s ease both;
}
.jb-card:nth-child(1)  { animation-delay: .06s; }
.jb-card:nth-child(2)  { animation-delay: .13s; }
.jb-card:nth-child(3)  { animation-delay: .20s; }
.jb-card:nth-child(4)  { animation-delay: .27s; }
.jb-target:nth-child(1){ animation-delay: .10s; }
.jb-target:nth-child(2){ animation-delay: .18s; }
.jb-target:nth-child(3){ animation-delay: .26s; }

@keyframes jbFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1023px) {
  .jb-alianzas-inner { padding: 48px 28px; }
}
@media (max-width: 767px) {
  .jb-alianzas-wrapper { padding: 40px 0; }
  .jb-alianzas-inner {
    border-radius: 0;
    padding: 40px 16px;
  }
  .jb-layout { gap: 2.5rem; }
  .jb-title   { font-size: 1.75rem; }
  .jb-stat-sep { display: none; }
  .jb-stats-strip { gap: .8rem 0; }
  
  /* Mantener 2 columnas en tablets/móviles grandes */
  .jb-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

@media (max-width: 479px) {
  /* Forzar 2 columnas en móviles pequeños y reducir el gap */
  .jb-cards-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.6rem;
  }

  /* Ajustes a la tarjeta para que el contenido encaje perfectamente en la mitad de la pantalla */
  .jb-card {
    padding: 1rem 0.8rem;
  }
  .jb-card-num { 
    font-size: 1.6rem; 
    top: 0.5rem;
    right: 0.5rem;
  }
  .jb-card-icon {
    width: 2.2rem; 
    height: 2.2rem;
  }
  .jb-card-icon .material-icons-outlined {
    font-size: 1.2rem;
  }
  .jb-card-content h4 {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  .jb-card-content p {
    font-size: 0.75rem;
    line-height: 1.35;
  }
}

/* ================================================================
   SEGURIDAD WORDPRESS — neutraliza resets del tema
================================================================ */
.jb-alianzas-wrapper *,
.jb-alianzas-wrapper *::before,
.jb-alianzas-wrapper *::after { box-sizing: border-box; }
.jb-alianzas-wrapper img { max-width: 100%; display: block; }
.jb-alianzas-wrapper a   { text-decoration: none; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-948d1b9 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── WRAPPER DE LA SECCIÓN FINAL (FONDO BLANCO) ── */
.seccion-comunidad-wrapper {
    background: #f8f9fa;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: 50%;
    margin-left: -50vw !important;
    overflow: hidden;
    margin-top: -10px; 
    margin-bottom: -10px; 
    background-image:
    radial-gradient(circle, rgba(18,52,152,.14) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 80px 20px;
}

.comunidad-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative; 
}

/* ── LADO IZQUIERDO (CONTENIDO) ── */
.comunidad-contenido {
    width: 55%;
    position: relative;
    z-index: 2; 
}

.comunidad-titulo {
    margin: 0 0 30px 0;
}

.titulo-light {
    font-size: 2rem;
    font-weight: 500; 
    display: block;
    margin-bottom: -5px;
    letter-spacing: 0.5px;
    color: #123498; 
}

.titulo-bold {
    font-size: 4.5rem;
    font-weight: 900; 
    color: #F46F0B; 
    line-height: 1.05;
    text-transform: uppercase;
    display: block;
    text-shadow: 0 5px 15px rgba(0,0,0,0.08); 
}

.comunidad-contacto {
    margin-bottom: 35px;
}

.contacto-texto {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    font-weight: 600; 
    color: #A3A3A3; 
}

.correo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contacto-correo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800; 
    color: #123498; 
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contacto-correo:hover {
    color: #F46F0B; 
    transform: translateX(5px); 
}

.mensaje-copiado {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #F46F0B; 
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 4px;
    margin-left: 40px; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mensaje-copiado.mostrar {
    opacity: 1;
    visibility: visible;
}

.comunidad-accion {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(163, 163, 163, 0.3); 
}

.accion-texto {
    font-size: 1.1rem;
    margin: 0 0 20px 0;
    font-weight: 500;
    color: #A3A3A3; 
}

/* ── BOTÓN TIPO CTA ── */
.comunidad-boton {
    display: inline-block;
    background: #F46F0B; 
    color: #FFFFFF; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 111, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none; 
}

.comunidad-boton:hover {
    transform: translateY(-3px);
    background: #123498; 
    color: #FFFFFF; 
    box-shadow: 0 8px 25px rgba(18, 52, 152, 0.3); 
}

/* ── LADO DERECHO (MASCOTA JUBI) EN ESCRITORIO ── */
.comunidad-imagen {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.comunidad-imagen img {
    max-width: 90%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: floatMascot 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15)); 
}

@keyframes floatMascot {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); } 
    100% { transform: translateY(0px); }
}

.mascota-resplandor {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(253, 185, 7, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ── DISEÑO RESPONSIVE CORREGIDO (Texto 75% - Imagen 25% rotada y ABAJO) ── */
@media (max-width: 1024px) {
    .titulo-light { font-size: 1.6rem; }
    .titulo-bold { font-size: 3.5rem; }
    .contacto-correo { font-size: 1.3rem; }
}

@media (max-width: 850px) {
    .comunidad-container {
        flex-direction: row; 
        text-align: left;
        gap: 10px;
    }
    
    .comunidad-contenido {
        width: 75%;
        padding-right: 10px;
    }
    
    .titulo-bold { font-size: 2.8rem; }

    .comunidad-imagen {
        position: absolute;
        right: -15%; 
        top: auto;
        bottom: 5%;
        width: 45%; 
        z-index: 1;
        margin-top: 0;
        justify-content: flex-end;
    }
    
    .comunidad-imagen img {
        max-width: 100%;
        animation: floatRotateLeftMobile 4s ease-in-out infinite; 
    }

    @keyframes floatRotateLeftMobile {
        0% { transform: translateY(0px) rotate(-15deg); }
        50% { transform: translateY(-15px) rotate(-15deg); } 
        100% { transform: translateY(0px) rotate(-15deg); }
    }

    .mascota-resplandor { 
        width: 250px; 
        height: 250px; 
        top: 50%;
        transform: translate(-50%, -50%); 
    }
}

@media (max-width: 600px) {
    .seccion-comunidad-wrapper { padding: 50px 20px; }
    .comunidad-contenido { width: 100%; } 
    
    .comunidad-titulo { 
        text-align: center; 
    }
    .titulo-light { font-size: 1.1rem; }
    .titulo-bold { font-size: 2rem; }
    
    .comunidad-contacto { 
        text-align: left; 
    }
    .contacto-texto { font-size: 0.9rem; margin-bottom: 5px; }
    
    .contacto-correo { 
        font-size: 0.85rem;
        gap: 8px; 
        align-items: flex-start; 
    }
    .contacto-correo span {
        word-break: break-all; 
        line-height: 1.4;
    }
    .contacto-correo svg { 
        width: 18px; 
        height: 18px; 
        flex-shrink: 0; 
        margin-top: 2px;
    }
    
    .mensaje-copiado { margin-left: 26px; font-size: 0.75rem; }
    
    .comunidad-accion { 
        padding-top: 25px; 
        margin-top: 20px; 
        text-align: center;
        width: 100%;
    }
    .accion-texto { font-size: 0.85rem; margin-bottom: 15px; }
    .comunidad-boton { padding: 12px 24px; font-size: 0.8rem; } 
    .comunidad-imagen {
        display: block;
        position: absolute;
        bottom: 95px;
        right: -20px; 
        width: 90px; 
        z-index: 1;
        opacity: 0.85;
    }
    
    .mascota-resplandor {
        display: none; 
    }
    
    .seccion-comunidad-wrapper {
        overflow: hidden;
    }
}/* End custom CSS */