/* ==========================================================================
   Jeffis Baby — Widgets Elementor
   Port del design system del home (Tailwind) a CSS plano.
   Breakpoints: sm 640px · md 768px · lg 1024px · xl 1280px
   ========================================================================== */

:root {
  --jb-turquoise: #00c1d8;
  --jb-coral: #f7444c;
  --jb-orange: #ff9500;
  --jb-green: #76c057;
  --jb-petrol: #157d9b;
  --jb-ice: #eaf9fb;
  --jb-white: #ffffff;
  --jb-text: #2e4a57;
  --jb-muted: #5f7783;
  --jb-border: #dde9ee;
  --jb-font-sans: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --jb-font-display: "Baloo 2", "Poppins", ui-sans-serif, system-ui, sans-serif;
  --jb-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --jb-radius: 1rem;
}

/* --------------------------------------------------------------------------
   Base compartida
   -------------------------------------------------------------------------- */
.jb-section,
.jb-header,
.jb-footer,
.jb-float,
.jb-announcement {
  font-family: var(--jb-font-sans);
  color: var(--jb-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
.jb-section *,
.jb-header *,
.jb-footer *,
.jb-float *,
.jb-announcement * {
  box-sizing: border-box;
}
.jb-section {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
}
@media (min-width: 640px) {
  .jb-section {
    padding: 5rem 0;
  }
}
.jb-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.jb-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.jb-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
.jb-hide-mobile {
  display: none;
}
.jb-only-mobile {
  display: inline;
}
@media (min-width: 640px) {
  .jb-hide-mobile {
    display: inline;
  }
  .jb-only-mobile {
    display: none;
  }
}

/* Icons (Lucide inline) */
.jb-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  vertical-align: middle;
}
.jb-icon--custom {
  display: inline-grid;
  place-items: center;
  font-size: 1.25em;
  line-height: 1;
}
.jb-icon--custom svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.jb-icon--doodle {
  background-color: currentColor;
  -webkit-mask-image: var(--jb-mask);
  mask-image: var(--jb-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Breadcrumb (Hero, páginas internas) */
.jb-breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--jb-muted);
}
.jb-breadcrumb ol {
  display: flex;
  align-items: center;
  justify-content: var(--jb-hero-justify, flex-start);
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.jb-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.jb-breadcrumb a:hover,
.jb-breadcrumb__current {
  color: var(--jb-petrol);
}
.jb-breadcrumb__sep {
  display: inline-flex;
  opacity: 0.8;
}
.jb-breadcrumb__sep .jb-icon {
  width: 0.875rem;
  height: 0.875rem;
}

/* Section header */
.jb-section__header {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .jb-section__header {
    margin-bottom: 3rem;
  }
}
.jb-section__title {
  margin: 0;
  font-family: var(--jb-font-display);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--jb-petrol);
}
@media (min-width: 640px) {
  .jb-section__title {
    font-size: 2.25rem;
  }
}
.jb-section__subtitle {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  color: var(--jb-muted);
}
@media (min-width: 640px) {
  .jb-section__subtitle {
    font-size: 1.125rem;
  }
}

/* Buttons */
.jb-btn {
  --jb-btn-scale: 1.03;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.25rem;
  border: 0;
  border-radius: var(--jb-radius);
  font-family: var(--jb-font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.2;
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s var(--jb-bounce), background-color 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--jb-btn-shadow, transparent) 25%, transparent), 0 4px 6px -4px color-mix(in srgb, var(--jb-btn-shadow, transparent) 25%, transparent);
}
.jb-btn:hover,
.jb-btn:focus-visible {
  transform: scale(var(--jb-btn-scale));
}
.jb-btn:focus-visible {
  outline: 2px solid var(--jb-turquoise);
  outline-offset: 2px;
}
.jb-btn .jb-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.jb-btn--lg {
  min-height: 3.25rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
.jb-btn--primary {
  background: var(--jb-coral);
  color: #fff;
  --jb-btn-shadow: var(--jb-coral);
}
.jb-btn--wa {
  background: var(--jb-green);
  color: #fff;
  --jb-btn-shadow: var(--jb-green);
}
.jb-btn--order {
  background: var(--jb-coral);
  color: #fff;
  --jb-btn-shadow: var(--jb-coral);
}
.jb-btn--outline {
  min-height: 3rem;
  padding: 0 2rem;
  background: transparent;
  color: var(--jb-petrol);
  box-shadow: inset 0 0 0 2px var(--jb-petrol);
}
.jb-btn--outline:hover {
  background: var(--jb-petrol);
  color: #fff;
}
.jb-btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}
.jb-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Stars */
.jb-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--jb-orange);
}
.jb-star {
  display: inline-flex;
  position: relative;
}
.jb-star .jb-icon {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
}
.jb-star--empty .jb-icon {
  fill: none;
  color: var(--jb-border);
}
.jb-star--half > .jb-icon {
  fill: none;
  color: var(--jb-border);
}
.jb-star__half {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.jb-star__half .jb-icon {
  fill: currentColor;
}

/* Wave divider */
.jb-wave {
  display: block;
  width: 100%;
  height: 50px;
  fill: #fff;
}
@media (min-width: 640px) {
  .jb-wave {
    height: 70px;
  }
}
.jb-wave--flip {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   Doodles de marca (máscara CSS + animación + parallax JS)
   -------------------------------------------------------------------------- */
.jb-doodles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.jb-doodles ~ .jb-container,
.jb-doodles ~ .jb-club__inner,
.jb-doodles ~ .jb-hero__grid {
  position: relative;
  z-index: 1;
}
.jb-doodle {
  position: absolute;
  display: block;
  width: var(--jb-dwm, 3rem);
  height: var(--jb-dhm, 3rem);
  opacity: var(--jb-do, 0.25);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 640px) {
  .jb-doodle {
    width: var(--jb-dw, 8rem);
    height: var(--jb-dh, 8rem);
  }
}
.jb-doodle__shape {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--jb-dc, var(--jb-turquoise));
  -webkit-mask-image: var(--jb-mask);
  mask-image: var(--jb-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: rotate(var(--jb-rot, 0deg));
  animation-delay: var(--jb-delay, 0s);
}
.jb-doodle--show-sm,
.jb-doodle--show-lg {
  display: none;
}
@media (min-width: 640px) {
  .jb-doodle--show-sm {
    display: block;
  }
}
@media (min-width: 1024px) {
  .jb-doodle--show-lg {
    display: block;
  }
}
@media (max-width: 767px) {
  .jb-doodles-hide-mobile .jb-doodles {
    display: none;
  }
}

@keyframes jb-float {
  0%, 100% { transform: translateY(0) rotate(var(--jb-rot, 0deg)); }
  50% { transform: translateY(-14px) rotate(calc(var(--jb-rot, 0deg) + 4deg)); }
}
@keyframes jb-sway {
  0%, 100% { transform: translateX(0) rotate(var(--jb-rot, 0deg)); }
  50% { transform: translateX(16px) rotate(calc(var(--jb-rot, 0deg) - 5deg)); }
}
@keyframes jb-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes jb-pulse {
  0%, 100% { transform: scale(1) rotate(var(--jb-rot, 0deg)); }
  50% { transform: scale(1.12) rotate(var(--jb-rot, 0deg)); }
}
.jb-anim-float { animation: jb-float 7s ease-in-out infinite; }
.jb-anim-sway { animation: jb-sway 9s ease-in-out infinite; }
.jb-anim-spin { animation: jb-spin 26s linear infinite; }
.jb-anim-pulse { animation: jb-pulse 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .jb-anim-float, .jb-anim-sway, .jb-anim-spin, .jb-anim-pulse { animation: none; }
  .jb-doodle { transition: none; }
}

/* --------------------------------------------------------------------------
   Barra de aviso
   -------------------------------------------------------------------------- */
.jb-announcement {
  position: relative;
  background: var(--jb-turquoise);
  color: #fff;
}
.jb-announcement[hidden] {
  display: none;
}
.jb-announcement__text {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.5rem 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 640px) {
  .jb-announcement__text {
    font-size: 0.875rem;
  }
}
.jb-announcement__link:hover {
  text-decoration: underline;
  color: inherit;
}
.jb-announcement__close {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s;
}
.jb-announcement__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.jb-announcement__close .jb-icon {
  width: 1rem;
  height: 1rem;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.jb-sticky-wrap {
  position: sticky !important;
  top: 0;
  z-index: 50;
}
.jb-header {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--jb-border);
}
.jb-header__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 4rem;
}
@media (min-width: 640px) {
  .jb-header__bar {
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .jb-header__bar {
    height: 5rem;
  }
}
.jb-header__burger,
.jb-header__fav,
.jb-offcanvas__close {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: var(--jb-radius);
  background: transparent;
  color: var(--jb-petrol);
  cursor: pointer;
  transition: background-color 0.2s;
}
.jb-header__burger:hover,
.jb-header__fav:hover,
.jb-offcanvas__close:hover {
  background: var(--jb-ice);
}
.jb-header__burger .jb-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.jb-header__fav {
  position: relative;
  color: var(--jb-coral);
  display: none;
}
@media (min-width: 640px) {
  .jb-header__fav {
    display: grid;
  }
}
.jb-header__fav-count {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--jb-coral);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
}
.jb-header__fav-count[hidden] {
  display: none;
}
.jb-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.jb-header__logo img {
  height: 2.75rem;
  width: auto;
  max-width: none;
}
@media (min-width: 1024px) {
  .jb-header__logo img {
    height: 3.5rem;
  }
}
.jb-header__nav {
  display: none;
}
.jb-header--bp-lg .jb-header__burger { display: grid; }
.jb-header--bp-md .jb-header__burger { display: grid; }
@media (min-width: 768px) {
  .jb-header--bp-md .jb-header__nav { display: flex; }
  .jb-header--bp-md .jb-header__burger { display: none; }
}
@media (min-width: 1025px) {
  .jb-header--bp-lg .jb-header__nav { display: flex; }
  .jb-header--bp-lg .jb-header__burger { display: none; }
}
.jb-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jb-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.jb-nav__list > li {
  position: relative;
}
.jb-nav__list a {
  position: relative;
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(46, 74, 87, 0.8);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.jb-nav__list a:hover {
  color: var(--jb-petrol);
  background: var(--jb-ice);
}
.jb-nav__list > .jb-nav__item--active > a,
.jb-nav__list > .current-menu-item > a {
  color: var(--jb-turquoise);
}
.jb-nav__list > .jb-nav__item--active > a::after,
.jb-nav__list > .current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--jb-nav-active, var(--jb-turquoise));
}
/* Submenús (menú de WordPress, nivel 2) */
.jb-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  padding: 0.5rem;
  border-radius: var(--jb-radius);
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(21, 125, 155, 0.15), 0 0 0 1px var(--jb-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 10;
}
.jb-nav__list > li:hover > .sub-menu,
.jb-nav__list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.jb-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.jb-header__search {
  display: none;
  width: 18rem;
}
@media (min-width: 768px) {
  .jb-header__search {
    display: block;
    width: 14rem;
  }
}
@media (min-width: 1280px) {
  .jb-header__search {
    width: 18rem;
  }
}
.jb-search {
  position: relative;
  margin: 0;
}
.jb-search__icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: var(--jb-muted);
  pointer-events: none;
}
.jb-search__input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem 0 2.5rem;
  border: 1px solid var(--jb-border);
  border-radius: var(--jb-radius);
  background: rgba(234, 249, 251, 0.6);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--jb-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.jb-search__input::placeholder {
  color: var(--jb-muted);
}
.jb-search__input:focus {
  border-color: var(--jb-turquoise);
  box-shadow: 0 0 0 3px rgba(0, 193, 216, 0.3);
}
.jb-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.jb-header__wa {
  min-height: 2.75rem;
  padding: 0 0.75rem;
}
@media (min-width: 640px) {
  .jb-header__wa {
    padding: 0 1rem;
  }
}
.jb-header__wa-text {
  display: none;
}
@media (min-width: 640px) {
  .jb-header__wa-text {
    display: inline;
  }
}
.jb-header__mobile-search {
  padding: 0.625rem 1rem;
  border-top: 1px solid var(--jb-border);
}
@media (min-width: 768px) {
  .jb-header__mobile-search {
    display: none;
  }
}

/* Off-canvas */
.jb-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.jb-offcanvas[hidden] {
  display: none;
}
.jb-offcanvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 74, 87, 0.5);
  animation: jb-fade 0.25s ease;
}
.jb-offcanvas__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20rem;
  max-width: 88vw;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: jb-slide-left 0.3s var(--jb-bounce);
}
.jb-offcanvas--left .jb-offcanvas__panel {
  left: 0;
}
.jb-offcanvas--right .jb-offcanvas__panel {
  right: 0;
  animation-name: jb-slide-right;
}
@keyframes jb-fade { from { opacity: 0; } }
@keyframes jb-slide-left { from { transform: translateX(-100%); } }
@keyframes jb-slide-right { from { transform: translateX(100%); } }
.jb-offcanvas__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--jb-border);
}
.jb-offcanvas__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}
.jb-offcanvas__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.jb-offcanvas__list a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--jb-radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--jb-text);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.jb-offcanvas__list a:hover {
  background: var(--jb-ice);
  color: var(--jb-petrol);
}
.jb-offcanvas__list .jb-nav__item--active > a,
.jb-offcanvas__list .current-menu-item > a {
  background: rgba(0, 193, 216, 0.1);
  color: var(--jb-turquoise);
}
.jb-offcanvas__list .sub-menu {
  padding-left: 1rem;
}
.jb-offcanvas__list .sub-menu a {
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
}
.jb-offcanvas__wa {
  margin-top: 0.75rem;
  min-height: 3rem;
  font-size: 1rem;
}
body.jb-menu-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.jb-hero {
  padding: 0;
  background: linear-gradient(180deg, var(--jb-ice) 0%, rgba(234, 249, 251, 0.6) 50%, #fff 100%);
}
.jb-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .jb-hero__grid {
    padding-top: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .jb-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
  .jb-hero__grid--single {
    grid-template-columns: minmax(0, 1fr);
  }
  .jb-hero--img-left .jb-hero__copy {
    order: 2;
  }
  .jb-hero--img-left .jb-hero__media {
    order: 1;
  }
}
.jb-hero__copy {
  --jb-hero-align: center;
  --jb-hero-justify: center;
  --jb-hero-mx: auto;
  text-align: var(--jb-hero-align);
}
@media (min-width: 1024px) {
  .jb-hero__copy {
    --jb-hero-align: left;
    --jb-hero-justify: flex-start;
    --jb-hero-mx: 0;
  }
}
.jb-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 193, 216, 0.3), 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jb-petrol);
}
.jb-hero__title {
  margin: 1.25rem 0 0;
  font-family: var(--jb-font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--jb-petrol);
}
@media (min-width: 640px) {
  .jb-hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .jb-hero__title {
    font-size: 3.75rem;
  }
}
.jb-hero__desc {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  margin-left: var(--jb-hero-mx);
  margin-right: var(--jb-hero-mx);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--jb-muted);
}
@media (min-width: 640px) {
  .jb-hero__desc {
    font-size: 1.125rem;
  }
}
.jb-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.jb-hero__actions .jb-btn {
  width: 100%;
}
@media (min-width: 640px) {
  .jb-hero__actions {
    flex-direction: row;
    justify-content: var(--jb-hero-justify);
  }
  .jb-hero__actions .jb-btn {
    width: auto;
  }
}
.jb-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: var(--jb-hero-justify);
  gap: 0.75rem 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.jb-hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(46, 74, 87, 0.8);
}
.jb-hero__trust-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(118, 192, 87, 0.15);
  color: var(--jb-green);
}
.jb-hero__trust-icon .jb-icon {
  width: 1rem;
  height: 1rem;
}
.jb-hero__media {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .jb-hero__media {
    max-width: none;
  }
}
.jb-hero__img-bg {
  position: absolute;
  left: -1rem;
  top: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  background: rgba(0, 193, 216, 0.2);
}
.jb-hero__img {
  --jb-ring: #fff;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3rem;
  object-fit: cover;
  box-shadow: 0 0 0 8px var(--jb-ring), 0 25px 50px -12px rgba(21, 125, 155, 0.15);
}
.jb-hero__float {
  position: absolute;
  left: 50%;
  bottom: -1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--jb-radius);
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--jb-border);
  transform: translateX(-50%);
  white-space: nowrap;
}
.jb-hero__float .jb-star .jb-icon {
  width: 1rem;
  height: 1rem;
}
.jb-hero__float-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--jb-petrol);
}
.jb-hero__wave {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Encuentra por edad
   -------------------------------------------------------------------------- */
.jb-ages,
.jb-products,
.jb-values,
.jb-ig {
  background: #fff;
}
.jb-ages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 640px) {
  .jb-ages__grid {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .jb-ages__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.jb-ages__card {
  --jb-card-color: var(--jb-turquoise);
  --jb-card-tint: 10%;
  --jb-card-tint-hover: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: color-mix(in srgb, var(--jb-card-color) var(--jb-card-tint), transparent);
  text-align: center;
  text-decoration: none !important;
  transition: transform 0.3s var(--jb-bounce), box-shadow 0.3s, background-color 0.3s;
}
@media (min-width: 640px) {
  .jb-ages__card {
    padding: 2rem;
  }
}
.jb-ages__card:hover {
  background: color-mix(in srgb, var(--jb-card-color) var(--jb-card-tint-hover), transparent);
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(21, 125, 155, 0.12), 0 4px 6px -4px rgba(21, 125, 155, 0.12);
}
.jb-ages__chip {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: var(--jb-card-color);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--jb-bounce);
}
@media (min-width: 640px) {
  .jb-ages__chip {
    width: 6rem;
    height: 6rem;
  }
}
.jb-ages__card:hover .jb-ages__chip {
  transform: scale(1.1);
}
.jb-ages__chip .jb-icon {
  width: 2.25rem;
  height: 2.25rem;
}
@media (min-width: 640px) {
  .jb-ages__chip .jb-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.jb-ages__label {
  margin-top: 1rem;
  font-family: var(--jb-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--jb-petrol);
}
@media (min-width: 640px) {
  .jb-ages__label {
    font-size: 1.5rem;
  }
}
.jb-ages__hint {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--jb-muted);
}
@media (min-width: 640px) {
  .jb-ages__hint {
    font-size: 0.875rem;
  }
}
.jb-ages__cta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(21, 125, 155, 0.7);
  transition: color 0.2s;
}
.jb-ages__card:hover .jb-ages__cta {
  color: var(--jb-petrol);
}

/* --------------------------------------------------------------------------
   Categorías
   -------------------------------------------------------------------------- */
.jb-cats {
  background: rgba(234, 249, 251, 0.6);
}
.jb-cats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 640px) {
  .jb-cats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .jb-cats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.jb-cats__card {
  --jb-card-color: var(--jb-turquoise);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid var(--jb-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
  text-decoration: none !important;
  transition: transform 0.3s var(--jb-bounce), box-shadow 0.3s, border-color 0.3s;
}
@media (min-width: 640px) {
  .jb-cats__card {
    padding: 1.5rem;
  }
}
.jb-cats__card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 193, 216, 0.5);
  box-shadow: 0 10px 15px -3px rgba(21, 125, 155, 0.12), 0 4px 6px -4px rgba(21, 125, 155, 0.12);
}
.jb-cats__chip {
  --jb-card-tint: 15%;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--jb-card-color) var(--jb-card-tint), transparent);
  color: var(--jb-card-color);
  transition: transform 0.3s var(--jb-bounce);
}
.jb-cats__card:hover .jb-cats__chip {
  transform: scale(1.1);
}
.jb-cats__chip .jb-icon {
  width: 2rem;
  height: 2rem;
}
.jb-cats__chip--photo {
  background: var(--jb-ice);
}
.jb-cats__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jb-cats__name {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--jb-text);
}
@media (min-width: 640px) {
  .jb-cats__name {
    font-size: 1rem;
  }
}
.jb-cats__more {
  margin-top: 2.5rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Productos
   -------------------------------------------------------------------------- */
.jb-products__grid {
  --jb-cols: 2;
  display: grid;
  grid-template-columns: repeat(var(--jb-cols), minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 640px) {
  .jb-products__grid {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .jb-products__grid {
    --jb-cols: 3;
  }
}
@media (min-width: 1280px) {
  .jb-products__grid {
    --jb-cols: 4;
  }
}
/* Carrusel (scroll-snap) */
.jb-carousel {
  position: relative;
}
.jb-products--carousel .jb-products__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}
.jb-products--carousel .jb-products__grid::-webkit-scrollbar {
  display: none;
}
.jb-products--carousel .jb-product {
  flex: 0 0 calc((100% - (var(--jb-cols) - 1) * 1.5rem) / var(--jb-cols));
  scroll-snap-align: start;
}
.jb-carousel__btn {
  position: absolute;
  top: 40%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--jb-border);
  border-radius: 999px;
  background: #fff;
  color: var(--jb-petrol);
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--jb-bounce), opacity 0.2s;
}
.jb-carousel__btn:hover {
  transform: scale(1.08);
}
.jb-carousel__btn[disabled] {
  opacity: 0.35;
  cursor: default;
}
.jb-carousel__btn--prev {
  left: -0.5rem;
}
.jb-carousel__btn--prev .jb-icon {
  transform: rotate(180deg);
}
.jb-carousel__btn--next {
  right: -0.5rem;
}
@media (min-width: 1400px) {
  .jb-carousel__btn--prev { left: -3.25rem; }
  .jb-carousel__btn--next { right: -3.25rem; }
}

.jb-product {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--jb-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--jb-bounce), box-shadow 0.3s;
}
.jb-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(21, 125, 155, 0.12), 0 8px 10px -6px rgba(21, 125, 155, 0.12);
}
.jb-product__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(234, 249, 251, 0.5);
}
.jb-product__link {
  display: block;
  width: 100%;
  height: 100%;
}
.jb-product__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--jb-bounce), opacity 0.5s var(--jb-bounce);
}
.jb-hover-zoom-yes .jb-product:hover .jb-product__img {
  transform: rotate(1deg) scale(1.05);
}
.jb-product__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: rotate(1deg) scale(1.05);
}
.jb-product__media--swap:hover .jb-product__img:not(.jb-product__img--hover) {
  opacity: 0;
}
.jb-product__media--swap:hover .jb-product__img--hover {
  opacity: 1;
}
.jb-product__quick {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  display: none;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--jb-petrol);
  text-decoration: none !important;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.3s, transform 0.3s var(--jb-bounce);
}
.jb-product__quick .jb-icon {
  width: 0.875rem;
  height: 0.875rem;
}
@media (min-width: 640px) {
  .jb-product__quick {
    display: inline-flex;
  }
}
.jb-product:hover .jb-product__quick,
.jb-product__quick:focus-visible {
  opacity: 1;
}
.jb-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.jb-badge--orange { background: var(--jb-orange); }
.jb-badge--green { background: var(--jb-green); }
.jb-badge--coral { background: var(--jb-coral); }
.jb-badge--turquoise { background: var(--jb-turquoise); }
.jb-badge--petrol { background: var(--jb-petrol); }
.jb-product__fav {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--jb-coral);
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--jb-bounce);
}
.jb-product__fav:hover {
  transform: scale(1.1);
}
.jb-product__fav .jb-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: fill 0.2s;
}
.jb-product__fav[aria-pressed="true"] .jb-icon {
  fill: currentColor;
}
.jb-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}
@media (min-width: 640px) {
  .jb-product__body {
    padding: 1.25rem;
  }
}
.jb-product__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.jb-product__reviews {
  font-size: 0.75rem;
  color: var(--jb-muted);
}
.jb-product__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
  margin: 0.5rem 0 0;
  font-family: var(--jb-font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--jb-text);
}
@media (min-width: 640px) {
  .jb-product__name {
    font-size: 1rem;
  }
}
.jb-product__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.jb-product__name a:hover {
  color: var(--jb-petrol);
}
.jb-product__prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.25rem 0 0;
}
.jb-product__price {
  font-family: var(--jb-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--jb-petrol);
}
.jb-product__old {
  font-size: 0.875rem;
  color: var(--jb-muted);
  text-decoration: line-through;
}
.jb-product .jb-btn--order {
  width: 100%;
  margin-top: 0.75rem;
  min-height: 2.75rem;
}
.jb-product .jb-btn--order .jb-icon {
  width: 1rem;
  height: 1rem;
}
.jb-product__body > .jb-btn--order {
  margin-top: auto;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.jb-product__prices + .jb-btn--order {
  margin-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   Banner promocional
   -------------------------------------------------------------------------- */
.jb-promo {
  padding: 0;
  background: linear-gradient(120deg, var(--jb-orange), var(--jb-coral));
}
.jb-promo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .jb-promo__inner {
    padding: 4rem 1rem;
  }
}
.jb-promo__icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.jb-promo__icon .jb-icon {
  width: 50%;
  height: 50%;
}
.jb-promo__title {
  margin: 1.25rem 0 0;
  font-family: var(--jb-font-display);
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 640px) {
  .jb-promo__title {
    font-size: 2.25rem;
  }
}
.jb-promo__text {
  max-width: 36rem;
  margin: 0.75rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 640px) {
  .jb-promo__text {
    font-size: 1.125rem;
  }
}
.jb-promo__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.75rem;
}
.jb-promo__actions .jb-btn {
  width: 100%;
}
@media (min-width: 640px) {
  .jb-promo__actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
  .jb-promo__actions .jb-btn {
    width: auto;
  }
}
.jb-promo .jb-promo__btn {
  background: #fff;
  color: var(--jb-coral);
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.jb-promo .jb-promo__btn2 {
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Propuesta de valor
   -------------------------------------------------------------------------- */
.jb-values__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
@media (min-width: 640px) {
  .jb-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .jb-values__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.jb-values__item {
  --jb-card-color: var(--jb-turquoise);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  color: inherit;
}
.jb-values__chip {
  --jb-card-tint: 15%;
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--jb-card-color) var(--jb-card-tint), transparent);
  color: var(--jb-card-color);
  transition: transform 0.3s var(--jb-bounce);
}
.jb-values__item:hover .jb-values__chip {
  transform: scale(1.1);
}
.jb-values__chip .jb-icon {
  width: 2.25rem;
  height: 2.25rem;
}
.jb-values__title {
  margin: 1rem 0 0;
  font-family: var(--jb-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--jb-petrol);
}
.jb-values__desc {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--jb-muted);
}

/* --------------------------------------------------------------------------
   Testimonios
   -------------------------------------------------------------------------- */
.jb-testimonials {
  background: rgba(234, 249, 251, 0.6);
}
.jb-testimonials__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .jb-testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.jb-testimonial {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--jb-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--jb-bounce), box-shadow 0.3s;
}
@media (min-width: 640px) {
  .jb-testimonial {
    padding: 1.75rem;
  }
}
.jb-testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(21, 125, 155, 0.12), 0 4px 6px -4px rgba(21, 125, 155, 0.12);
}
.jb-testimonial .jb-star .jb-icon {
  width: 1rem;
  height: 1rem;
}
.jb-testimonial__quote {
  flex: 1;
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(46, 74, 87, 0.9);
  font-style: normal;
}
@media (min-width: 640px) {
  .jb-testimonial__quote {
    font-size: 1rem;
  }
}
.jb-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--jb-border);
}
.jb-testimonial__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(0, 193, 216, 0.4);
}
.jb-testimonial__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--jb-text);
}
.jb-testimonial__city {
  margin: 0;
  font-size: 0.75rem;
  color: var(--jb-muted);
}

/* --------------------------------------------------------------------------
   Instagram
   -------------------------------------------------------------------------- */
.jb-ig__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .jb-ig__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .jb-ig__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.jb-ig__item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1.5rem;
}
.jb-ig__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--jb-bounce);
}
.jb-ig__item:hover .jb-ig__img {
  transform: scale(1.05);
}
.jb-ig__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(21, 125, 155, 0);
  color: #fff;
  transition: background-color 0.3s;
}
.jb-ig__item:hover .jb-ig__overlay {
  background: rgba(21, 125, 155, 0.4);
}
.jb-ig__overlay .jb-icon {
  width: 2rem;
  height: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.jb-ig__item:hover .jb-ig__overlay .jb-icon {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Newsletter / Club Jeffis
   -------------------------------------------------------------------------- */
.jb-club {
  background: var(--jb-petrol);
}
.jb-club__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jb-club__overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 125, 155, 0.45);
  mix-blend-mode: multiply;
}
.jb-club__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.jb-club__icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  color: var(--jb-petrol);
  box-shadow: 0 10px 15px -3px rgba(21, 125, 155, 0.3);
}
.jb-club__icon .jb-icon {
  width: 2rem;
  height: 2rem;
}
.jb-club__title {
  margin: 1.25rem 0 0;
  font-family: var(--jb-font-display);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 640px) {
  .jb-club__title {
    font-size: 2.25rem;
  }
}
.jb-club__text {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 640px) {
  .jb-club__text {
    font-size: 1.125rem;
  }
}
.jb-club__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 1.75rem auto 0;
}
@media (min-width: 640px) {
  .jb-club__form {
    flex-direction: row;
  }
}
.jb-club__input {
  flex: 1;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border: 1px solid var(--jb-border);
  border-radius: var(--jb-radius);
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--jb-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.jb-club__input:focus {
  border-color: var(--jb-turquoise);
  box-shadow: 0 0 0 3px rgba(0, 193, 216, 0.3);
}
.jb-club .jb-btn {
  min-height: 3.25rem;
  padding: 0 2rem;
  background: var(--jb-orange);
  color: #fff;
  --jb-btn-shadow: transparent;
}
.jb-club .jb-btn[disabled] {
  opacity: 0.7;
  cursor: wait;
}
.jb-club__feedback {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: var(--jb-radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--jb-petrol);
  font-size: 0.875rem;
  font-weight: 500;
}
.jb-club__feedback[hidden] {
  display: none;
}
.jb-club__feedback--error {
  color: var(--jb-coral);
}
.jb-club__feedback strong {
  display: block;
  font-weight: 700;
}
.jb-club__note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.jb-footer {
  background: var(--jb-petrol);
  color: #fff;
}
.jb-footer__inner {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .jb-footer__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.jb-footer__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .jb-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .jb-footer__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .jb-footer__brand {
    grid-column: span 2;
  }
}
.jb-footer__logo {
  display: inline-block;
  line-height: 0;
}
.jb-footer__logo img {
  height: 3.5rem;
  width: auto;
}
.jb-footer__slogan {
  margin: 1rem 0 0;
  font-family: var(--jb-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--jb-turquoise);
}
.jb-footer__desc {
  max-width: 20rem;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}
.jb-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.jb-footer__social a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--jb-radius);
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  transition: transform 0.3s var(--jb-bounce), background-color 0.3s;
}
.jb-footer__social a:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}
.jb-footer__social .jb-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.jb-footer__heading {
  margin: 0;
  font-family: var(--jb-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: inherit;
}
.jb-footer__links {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.jb-footer__links li + li {
  margin-top: 0.625rem;
}
.jb-footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.jb-footer__links a:hover {
  color: var(--jb-turquoise);
}
.jb-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
  .jb-footer__contact {
    flex-direction: row;
    align-items: center;
  }
}
.jb-footer__contact-text {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.jb-footer .jb-btn--wa {
  min-height: 3rem;
  padding: 0 1.5rem;
}
.jb-footer__copy {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   WhatsApp flotante
   -------------------------------------------------------------------------- */
.jb-float {
  --jb-float-x: 1.25rem;
  position: fixed;
  bottom: 1.25rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none !important;
  transition: opacity 0.3s, transform 0.3s;
}
.jb-float--right {
  right: var(--jb-float-x);
  flex-direction: row;
}
.jb-float--left {
  left: var(--jb-float-x);
  flex-direction: row-reverse;
}
.jb-float--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}
.jb-float__label {
  display: none;
  padding: 0.5rem 1rem;
  border-radius: var(--jb-radius);
  background: var(--jb-petrol);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(0.5rem);
  transition: opacity 0.3s, transform 0.3s var(--jb-bounce);
  pointer-events: none;
}
.jb-float--left .jb-float__label {
  transform: translateX(-0.5rem);
}
@media (min-width: 640px) {
  .jb-float__label {
    display: block;
  }
}
.jb-float:hover .jb-float__label,
.jb-float:focus-visible .jb-float__label,
.jb-float--label-always .jb-float__label {
  opacity: 1;
  transform: translateX(0);
}
.jb-float__wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
}
.jb-float__ping {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--jb-green);
  opacity: 0.25;
  animation: jb-ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes jb-ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.jb-float__btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--jb-green);
  color: #fff;
  box-shadow: 0 20px 25px -5px color-mix(in srgb, var(--jb-btn-shadow, var(--jb-green)) 30%, transparent), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--jb-bounce);
}
.jb-float:hover .jb-float__btn {
  transform: scale(1.1);
}
.jb-float__btn .jb-icon {
  width: 1.75rem;
  height: 1.75rem;
}
@media (prefers-reduced-motion: reduce) {
  .jb-float__ping { animation: none; }
}

/* --------------------------------------------------------------------------
   Editor de Elementor: evitar que el sticky / fixed rompa la vista previa
   -------------------------------------------------------------------------- */
.elementor-editor-active .jb-offcanvas {
  position: absolute;
}

/* ==========================================================================
   Páginas internas — Sobre nosotros
   ========================================================================== */

/* Historia */
.jb-story {
  background: #fff;
}
.jb-story__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .jb-story__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem;
  }
  .jb-story__grid--single {
    grid-template-columns: minmax(0, 1fr);
  }
  .jb-story--img-right .jb-story__media {
    order: 2;
  }
}
.jb-story__media {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .jb-story__media {
    max-width: none;
  }
}
.jb-story__backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  background: rgba(255, 149, 0, 0.2);
}
.jb-story__backdrop--bl { left: -1rem; bottom: -1rem; }
.jb-story__backdrop--br { right: -1rem; bottom: -1rem; }
.jb-story__backdrop--tl { left: -1rem; top: -1rem; }
.jb-story__backdrop--tr { right: -1rem; top: -1rem; }
.jb-story__img {
  --jb-ring: #fff;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2.5rem;
  object-fit: cover;
  box-shadow: 0 0 0 8px var(--jb-ring), 0 20px 25px -5px rgba(21, 125, 155, 0.1);
}
.jb-story__title {
  margin: 0;
  font-family: var(--jb-font-display);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--jb-petrol);
}
@media (min-width: 640px) {
  .jb-story__title {
    font-size: 2.25rem;
  }
}
.jb-story__text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--jb-muted);
}
.jb-story__text p {
  margin: 0;
}
.jb-story__text p + p {
  margin-top: 1rem;
}
.jb-story__stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
}
@media (min-width: 640px) {
  .jb-story__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.jb-story__stat {
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: var(--jb-ice);
  text-align: center;
  transition: transform 0.3s var(--jb-bounce);
}
.jb-story__stat:hover {
  transform: scale(1.03);
}
.jb-story__stat dd {
  margin: 0;
}
.jb-story__stat-value {
  display: block;
  font-family: var(--jb-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--jb-turquoise);
}
.jb-story__stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(21, 125, 155, 0.8);
}

/* Línea de tiempo */
.jb-timeline {
  --jb-tl-chip: 3rem;
  background: rgba(234, 249, 251, 0.6);
}
.jb-timeline__list {
  position: relative;
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.jb-timeline__line {
  position: absolute;
  left: calc(var(--jb-tl-chip) / 2 - 1px);
  top: 0.5rem;
  width: 2px;
  height: calc(100% - 1rem);
  border-radius: 2px;
  background: rgba(0, 193, 216, 0.25);
}
.jb-timeline__item {
  --jb-card-color: var(--jb-turquoise);
  position: relative;
  display: flex;
  gap: 1.25rem;
}
.jb-timeline__marker {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.jb-timeline__chip {
  --jb-card-tint: 15%;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--jb-card-color) var(--jb-card-tint), #fff);
  color: var(--jb-card-color);
  box-shadow: 0 0 0 8px rgba(234, 249, 251, 0.6);
}
.jb-timeline__chip .jb-icon {
  width: 58%;
  height: 58%;
}
.jb-timeline__dot {
  display: none;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--jb-card-color);
}
.jb-timeline__body {
  padding-bottom: 0.5rem;
}
.jb-timeline__year {
  display: block;
  font-family: var(--jb-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--jb-turquoise);
}
.jb-timeline__title {
  margin: 0.25rem 0 0;
  font-family: var(--jb-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--jb-petrol);
}
.jb-timeline__text {
  margin: 0.375rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--jb-muted);
}
@media (min-width: 768px) {
  .jb-timeline--horizontal .jb-timeline__list {
    grid-template-columns: repeat(var(--jb-tl-count, 4), minmax(0, 1fr));
    gap: 1.5rem;
  }
  .jb-timeline--horizontal .jb-timeline__line {
    left: 0;
    top: calc(var(--jb-tl-chip) / 2 + 1.25rem);
    width: 100%;
    height: 2px;
  }
  .jb-timeline--horizontal .jb-timeline__item {
    display: block;
  }
  .jb-timeline--horizontal .jb-timeline__marker {
    align-items: flex-start;
  }
  .jb-timeline--horizontal .jb-timeline__dot {
    display: block;
    margin-left: calc(var(--jb-tl-chip) / 2 - 0.375rem);
  }
  .jb-timeline--horizontal .jb-timeline__body {
    margin-top: 1rem;
  }
}

/* Misión, visión y valores */
.jb-mission {
  background: #fff;
}
.jb-mission__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .jb-mission__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.jb-mission__card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--jb-turquoise);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(21, 125, 155, 0.2), 0 4px 6px -4px rgba(21, 125, 155, 0.2);
  transition: transform 0.3s var(--jb-bounce);
}
@media (min-width: 640px) {
  .jb-mission__card {
    padding: 2.5rem;
  }
}
.jb-mission__card:hover {
  transform: scale(1.02);
}
.jb-mission__card-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.2);
}
.jb-mission__card-icon .jb-icon {
  width: 64%;
  height: 64%;
}
.jb-mission__card-title {
  margin: 1.25rem 0 0;
  font-family: var(--jb-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: inherit;
}
.jb-mission__card-text {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.9;
}
.jb-mission__values {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .jb-mission__values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .jb-mission__values {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.jb-mission__value {
  --jb-card-color: var(--jb-turquoise);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--jb-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--jb-bounce), box-shadow 0.3s;
}
.jb-mission__value:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(21, 125, 155, 0.12), 0 4px 6px -4px rgba(21, 125, 155, 0.12);
}
.jb-mission__value-icon {
  --jb-card-tint: 15%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--jb-card-color) var(--jb-card-tint), transparent);
  color: var(--jb-card-color);
}
.jb-mission__value-icon .jb-icon {
  width: 58%;
  height: 58%;
}
.jb-mission__value-name {
  font-family: var(--jb-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--jb-petrol);
}

/* Equipo */
.jb-team {
  background: #fff;
}
.jb-team__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .jb-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .jb-team__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.jb-team__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem;
  border: 1px solid var(--jb-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.3s var(--jb-bounce), box-shadow 0.3s;
}
.jb-team__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(21, 125, 155, 0.12), 0 4px 6px -4px rgba(21, 125, 155, 0.12);
}
.jb-team__photo {
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  object-fit: cover;
}
.jb-team__name {
  margin: 1rem 0 0;
  font-family: var(--jb-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--jb-petrol);
}
.jb-team__role {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--jb-turquoise);
}
.jb-team__note {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--jb-muted);
}

/* Testimonio destacado */
.jb-ftest {
  background: rgba(234, 249, 251, 0.6);
}
.jb-ftest__card {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 1.75rem;
  border: 1px solid var(--jb-border);
  border-radius: 2.5rem;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(21, 125, 155, 0.05), 0 4px 6px -4px rgba(21, 125, 155, 0.05);
  text-align: center;
}
@media (min-width: 640px) {
  .jb-ftest__card {
    padding: 2.5rem;
  }
}
@media (min-width: 768px) {
  .jb-ftest--img-left .jb-ftest__card,
  .jb-ftest--img-right .jb-ftest__card {
    grid-template-columns: auto minmax(0, 1fr);
    text-align: left;
  }
  .jb-ftest--img-right .jb-ftest__photo {
    order: 2;
  }
  .jb-ftest--img-left .jb-stars,
  .jb-ftest--img-right .jb-stars {
    justify-content: flex-start;
  }
}
.jb-ftest__photo {
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(0, 193, 216, 0.4);
}
@media (min-width: 640px) {
  .jb-ftest__photo {
    width: 10rem;
    height: 10rem;
  }
}
.jb-ftest__qicon {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  color: rgba(0, 193, 216, 0.5);
}
@media (min-width: 768px) {
  .jb-ftest--img-left .jb-ftest__qicon,
  .jb-ftest--img-right .jb-ftest__qicon {
    margin: 0;
  }
}
.jb-ftest__quote {
  margin: 0.75rem 0 0;
  padding: 0;
  border: 0;
  font-family: var(--jb-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  font-style: normal;
  color: var(--jb-petrol);
}
@media (min-width: 640px) {
  .jb-ftest__quote {
    font-size: 1.5rem;
  }
}
.jb-ftest .jb-stars {
  justify-content: center;
  margin-top: 1.25rem;
}
.jb-ftest .jb-star .jb-icon {
  width: 1rem;
  height: 1rem;
}
.jb-ftest__author {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--jb-muted);
}
.jb-ftest__name {
  font-weight: 600;
  color: var(--jb-text);
}

/* ==========================================================================
   Páginas internas — Contacto
   ========================================================================== */

/* Canales de contacto */
.jb-channels {
  background: #fff;
  padding: 3rem 0;
}
@media (min-width: 640px) {
  .jb-channels {
    padding: 4rem 0;
  }
}
.jb-channels__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .jb-channels__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .jb-channels-wide-yes .jb-channels__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
.jb-channels__card {
  --jb-card-color: var(--jb-turquoise);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem;
  border: 1px solid var(--jb-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s var(--jb-bounce), box-shadow 0.3s;
}
.jb-channels__card:not(.jb-channels__card--wa):hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(21, 125, 155, 0.12), 0 4px 6px -4px rgba(21, 125, 155, 0.12);
}
.jb-channels__card--wa {
  --jb-card-color: var(--jb-green);
  border: 2px solid var(--jb-card-color);
  background: rgba(118, 192, 87, 0.05);
  box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--jb-card-color) 10%, transparent), 0 4px 6px -4px color-mix(in srgb, var(--jb-card-color) 10%, transparent);
}
.jb-channels__badge {
  position: absolute;
  top: -0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--jb-card-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.jb-channels__chips {
  display: flex;
  gap: 0.75rem;
}
.jb-channels__chip {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--jb-card-color) 15%, transparent);
  color: var(--jb-card-color);
}
.jb-channels__chip .jb-icon {
  width: 1.75rem;
  height: 1.75rem;
}
.jb-channels__chip--solid {
  width: 4rem;
  height: 4rem;
  background: var(--jb-card-color);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.jb-channels__chip--solid .jb-icon {
  width: 2rem;
  height: 2rem;
}
.jb-channels__title {
  margin: 1rem 0 0;
  font-family: var(--jb-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--jb-petrol);
}
.jb-channels__number {
  margin: 0.25rem 0 0;
  font-family: var(--jb-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--jb-card-color);
}
.jb-channels__btn {
  width: 100%;
  min-height: 3rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  background: var(--jb-card-color);
  --jb-btn-shadow: var(--jb-card-color);
}
.jb-channels__text {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--jb-muted);
}
.jb-channels__small {
  margin-top: 0.75rem;
  font-size: 0.75rem;
}
.jb-channels__handle {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--jb-turquoise);
}
.jb-channels__links {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.25rem;
}
.jb-channels__link {
  flex: 1;
  min-height: 2.75rem;
  padding: 0 0.75rem;
  background: transparent;
  color: var(--jb-card-color);
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--jb-card-color) 60%, transparent);
}
.jb-channels__link .jb-icon {
  width: 1rem;
  height: 1rem;
}
.jb-channels__link:hover {
  background: var(--jb-card-color);
  color: #fff;
}
.jb-channels__hours {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--jb-muted);
}
.jb-channels__hours li + li {
  margin-top: 0.375rem;
}
.jb-channels__hours strong {
  color: var(--jb-text);
}
.jb-channels__note-box {
  margin: 1rem 0 0;
  padding: 0.625rem 1rem;
  border-radius: 1rem;
  background: var(--jb-ice);
  font-size: 0.75rem;
  color: var(--jb-petrol);
}

/* Formulario → WhatsApp */
.jb-cform {
  padding: 1.5rem;
  border: 1px solid var(--jb-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-family: var(--jb-font-sans);
  color: var(--jb-text);
}
.jb-cform *,
.jb-faq * {
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .jb-cform {
    padding: 2rem;
  }
}
.jb-cform__title {
  margin: 0;
  font-family: var(--jb-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jb-petrol);
}
.jb-cform__subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--jb-muted);
}
.jb-cform__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.jb-cform__field {
  display: flex;
  flex-direction: column;
}
.jb-cform__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--jb-text);
}
.jb-cform__input {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.375rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--jb-border);
  border-radius: 1rem;
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--jb-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.jb-cform__input::placeholder {
  color: var(--jb-muted);
}
.jb-cform__input:focus {
  border-color: var(--jb-turquoise);
  box-shadow: 0 0 0 3px rgba(0, 193, 216, 0.3);
}
.jb-cform__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F7783' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
.jb-cform__textarea {
  min-height: 0;
  resize: vertical;
}
.jb-cform__error {
  margin: 0.375rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--jb-coral);
}
.jb-cform__error[hidden],
.jb-cform__success[hidden] {
  display: none;
}
.jb-cform__btn {
  width: 100%;
  background: var(--jb-coral);
  color: #fff;
  --jb-btn-shadow: var(--jb-coral);
}
.jb-cform__success {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(118, 192, 87, 0.12);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--jb-petrol);
  text-align: center;
}
.jb-cform__note {
  margin: 0;
  font-size: 0.75rem;
  text-align: center;
  color: var(--jb-muted);
}

/* Preguntas frecuentes */
.jb-faq {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: var(--jb-font-sans);
  color: var(--jb-text);
}
.jb-faq__card {
  padding: 1.5rem;
  border: 1px solid var(--jb-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.jb-faq__info {
  display: flex;
  gap: 1rem;
}
.jb-faq__info-icon {
  --jb-card-color: var(--jb-turquoise);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--jb-card-color) 15%, transparent);
  color: var(--jb-card-color);
}
.jb-faq__info-icon .jb-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.jb-faq__title {
  margin: 0;
  font-family: var(--jb-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--jb-petrol);
}
.jb-faq__info-text {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--jb-muted);
}
.jb-faq__list {
  margin-top: 0.5rem;
}
.jb-faq__item {
  border-bottom: 1px solid var(--jb-border);
}
.jb-faq__item:last-child {
  border-bottom: 0;
}
.jb-faq__q-wrap {
  margin: 0;
  font-size: inherit;
}
.jb-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  color: var(--jb-text);
  cursor: pointer;
  transition: color 0.2s;
}
.jb-faq__q:hover,
.jb-faq__q[aria-expanded="true"] {
  color: var(--jb-petrol);
}
.jb-faq__chevron {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--jb-muted);
  transition: transform 0.2s;
}
.jb-faq__q[aria-expanded="true"] .jb-faq__chevron {
  transform: rotate(180deg);
}
.jb-faq__panel[hidden] {
  display: none;
}
.jb-faq__answer {
  padding: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--jb-muted);
  animation: jb-fade 0.25s ease;
}
.jb-faq__answer p {
  margin: 0;
}
.jb-faq__answer p + p {
  margin-top: 0.5rem;
}
.jb-faq__tip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: rgba(118, 192, 87, 0.1);
  box-shadow: 0 0 0 1px rgba(118, 192, 87, 0.3);
  font-size: 0.875rem;
  color: rgba(46, 74, 87, 0.8);
  text-decoration: none !important;
}
.jb-faq__tip .jb-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--jb-green);
}
.jb-faq__tip p {
  margin: 0;
}
.jb-faq__tip strong {
  color: var(--jb-petrol);
}
