:root {
  --builder-page-font: Montserrat, Arial, sans-serif;
  --builder-page-bg: #ffffff;
  --builder-page-color: #1f2933;
}

* {
  box-sizing: border-box;
}

.builder-public-page {
  margin: 0;
  background: var(--builder-page-bg);
  color: var(--builder-page-color);
  font-family: var(--builder-page-font);
}

.pb-site-header {
  position: relative;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 1px 0 rgb(15 23 42 / 8%);
}

.pb-site-topbar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 max(18px, calc((100vw - 1220px) / 2));
  background: #053fba;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.pb-site-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pb-site-topbar a,
.pb-site-footer a {
  color: inherit;
  text-decoration: none;
}

.pb-site-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  background: rgb(255 255 255 / 9%);
  color: #ffffff;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.pb-site-socials a:hover,
.pb-site-socials a:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #053fba;
  transform: translateY(-1px);
}

.pb-site-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.pb-site-nav {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto minmax(170px, 220px);
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 0 max(28px, calc((100vw - 1220px) / 2));
  background: #ffffff;
}

.pb-site-logo img {
  display: block;
  width: min(208px, 100%);
  height: auto;
}

.pb-site-nav nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pb-site-menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.pb-site-nav nav a {
  color: #111827;
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.pb-site-nav nav a:hover {
  color: #053fba;
}

.pb-site-menu-item.has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.pb-site-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 220px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgb(15 23 42 / 16%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.pb-site-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 18px;
}

.pb-site-menu-item:hover .pb-site-submenu,
.pb-site-menu-item:focus-within .pb-site-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.pb-site-submenu a {
  display: block;
  padding: 13px 10px;
  color: #344054;
  font-size: 12px;
  text-align: left;
}

.pb-site-submenu a:hover {
  background: #f8fafc;
  color: #0b8f43;
}

.pb-site-quote {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 26px;
  background: #050505;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.pb-site-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  min-height: 48px;
  border: 2px solid #0451f3;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 22px rgb(4 81 243 / 13%);
}

.pb-site-search input[type="search"] {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px 0 18px;
  color: #0f172a;
  font: 700 13px var(--builder-page-font);
}

.pb-site-search input[type="search"]::placeholder {
  color: #0b8f43;
  opacity: .95;
}

.pb-site-search button {
  display: grid;
  width: 42px;
  height: 42px;
  margin-right: 2px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #208f51;
  color: #ffffff;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pb-site-search button:hover,
.pb-site-search button:focus-visible {
  background: #0b7d3b;
  box-shadow: 0 7px 16px rgb(32 143 81 / 28%);
  transform: translateY(-1px);
}

.pb-site-search button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.pb-site-footer {
  background: #000000;
  color: #ffffff;
}

.pb-strategic-allies-component,
.pb-site-footer-component {
  width: 100%;
}

.pb-strategic-allies {
  padding: 58px max(18px, calc((100vw - 1320px) / 2)) 72px;
  background: #f7f7f7;
  color: #1f2933;
  text-align: center;
}

.pb-strategic-allies h2 {
  margin: 0 0 36px;
  color: #172033;
  font-size: clamp(30px, 3.15vw, 43px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.pb-allies-carousel {
  display: grid;
  grid-template-columns: var(--pb-allies-arrow-size, 34px) minmax(0, 1fr) var(--pb-allies-arrow-size, 34px);
  align-items: center;
  gap: var(--pb-allies-arrow-gap, 18px);
  width: min(100%, 1280px);
  margin: 0 auto;
}

.pb-allies-carousel.pb-allies-no-arrows {
  grid-template-columns: minmax(0, 1fr);
}

.pb-allies-viewport {
  overflow: hidden;
}

.pb-allies-track {
  --pb-allies-index: 0;
  --pb-allies-visible: 7;
  display: flex;
  align-items: center;
  transform: translateX(calc(var(--pb-allies-index) * -100% / var(--pb-allies-visible)));
  transition: transform 0.5s ease;
  will-change: transform;
}

.pb-allies-track.is-resetting {
  transition: none;
}

.pb-allies-slide {
  display: grid;
  flex: 0 0 calc(100% / var(--pb-allies-visible));
  place-items: center;
  min-width: 0;
  margin: 0;
  padding: 0 18px;
}

.pb-allies-slide img {
  display: block;
  width: auto;
  max-width: 152px;
  max-height: 74px;
  object-fit: contain;
}

.pb-allies-arrow {
  display: grid;
  place-items: center;
  width: var(--pb-allies-arrow-size, var(--pb-allies-arrow-style-size, 34px));
  height: var(--pb-allies-arrow-size, var(--pb-allies-arrow-style-size, 54px));
  border: var(--pb-allies-arrow-border-width, var(--pb-allies-arrow-style-border-width, 0)) solid var(--pb-allies-arrow-border, var(--pb-allies-arrow-style-border, transparent));
  border-radius: var(--pb-allies-arrow-radius, var(--pb-allies-arrow-style-radius, 0));
  background: var(--pb-allies-arrow-bg, var(--pb-allies-arrow-style-bg, transparent));
  color: var(--pb-allies-arrow-color, var(--pb-allies-arrow-style-color, #e7e7e7));
  font-size: var(--pb-allies-arrow-icon-size, var(--pb-allies-arrow-style-icon-size, 46px));
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--pb-allies-arrow-style-shadow, none);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pb-allies-arrow:hover {
  color: var(--pb-allies-arrow-hover-color, #bfc5ce);
  transform: scale(1.08);
}

.pb-allies-arrows-style-circle {
  --pb-allies-arrow-style-size: 44px;
  --pb-allies-arrow-style-bg: #ffffff;
  --pb-allies-arrow-style-color: #172033;
  --pb-allies-arrow-style-border: rgb(23 32 51 / 10%);
  --pb-allies-arrow-style-border-width: 1px;
  --pb-allies-arrow-style-radius: 999px;
  --pb-allies-arrow-style-icon-size: 36px;
  --pb-allies-arrow-style-shadow: 0 12px 28px rgb(23 32 51 / 12%);
}

.pb-allies-arrows-style-outline {
  --pb-allies-arrow-style-size: 42px;
  --pb-allies-arrow-style-bg: transparent;
  --pb-allies-arrow-style-color: #172033;
  --pb-allies-arrow-style-border: rgb(23 32 51 / 20%);
  --pb-allies-arrow-style-border-width: 1px;
  --pb-allies-arrow-style-radius: 999px;
  --pb-allies-arrow-style-icon-size: 34px;
}

.pb-allies-arrows-style-solid {
  --pb-allies-arrow-style-size: 44px;
  --pb-allies-arrow-style-bg: #0d6efd;
  --pb-allies-arrow-style-color: #ffffff;
  --pb-allies-arrow-style-border: #0d6efd;
  --pb-allies-arrow-style-border-width: 1px;
  --pb-allies-arrow-style-radius: 999px;
  --pb-allies-arrow-style-icon-size: 34px;
  --pb-allies-arrow-style-shadow: 0 14px 26px rgb(13 110 253 / 24%);
}

.pb-allies-arrows-style-soft {
  --pb-allies-arrow-style-size: 42px;
  --pb-allies-arrow-style-bg: rgb(13 110 253 / 10%);
  --pb-allies-arrow-style-color: #0d6efd;
  --pb-allies-arrow-style-border: rgb(13 110 253 / 16%);
  --pb-allies-arrow-style-border-width: 1px;
  --pb-allies-arrow-style-radius: 12px;
  --pb-allies-arrow-style-icon-size: 34px;
}

.pb-allies-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pb-allies-dot-gap, var(--pb-allies-dot-style-gap, 18px));
  width: max-content;
  max-width: min(100%, 760px);
  margin: var(--pb-allies-dots-margin-top, 34px) auto 0;
  padding: var(--pb-allies-dots-padding, var(--pb-allies-dots-style-padding, 0));
  border: var(--pb-allies-dots-border-width, var(--pb-allies-dots-style-border-width, 0)) solid var(--pb-allies-dots-border, var(--pb-allies-dots-style-border, transparent));
  border-radius: var(--pb-allies-dots-radius, var(--pb-allies-dots-style-radius, 999px));
  background: var(--pb-allies-dots-bg, var(--pb-allies-dots-style-bg, transparent));
  box-sizing: border-box;
}

.pb-allies-dots button {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: var(--pb-allies-dot-size, var(--pb-allies-dot-style-size, 4px));
  height: var(--pb-allies-dot-size, var(--pb-allies-dot-style-size, 4px));
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--pb-allies-dot-color, var(--pb-allies-dot-style-color, #d6d6d6));
  color: transparent;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: width 0.24s ease, background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.pb-allies-dots .is-active {
  background: var(--pb-allies-dot-active, var(--pb-allies-dot-style-active, #111111));
}

.pb-allies-dots-pos-left {
  margin-left: 0;
  margin-right: auto;
}

.pb-allies-dots-pos-right {
  margin-left: auto;
  margin-right: 0;
}

.pb-allies-dots-style-pill {
  --pb-allies-dot-style-gap: 8px;
  --pb-allies-dot-style-size: 8px;
  --pb-allies-dot-style-color: rgb(255 255 255 / 38%);
  --pb-allies-dot-style-active: #ffffff;
  --pb-allies-dots-style-bg: rgb(15 23 42 / 72%);
  --pb-allies-dots-style-border: rgb(255 255 255 / 18%);
  --pb-allies-dots-style-border-width: 1px;
  --pb-allies-dots-style-padding: 8px 13px;
  box-shadow: 0 12px 28px rgb(15 23 42 / 16%);
}

.pb-allies-dots-style-pill .is-active,
.pb-allies-dots-style-glass .is-active {
  width: var(--pb-allies-line-width, 28px);
}

.pb-allies-dots-style-glass {
  --pb-allies-dot-style-gap: 8px;
  --pb-allies-dot-style-size: 8px;
  --pb-allies-dot-style-color: rgb(23 32 51 / 28%);
  --pb-allies-dot-style-active: #0d6efd;
  --pb-allies-dots-style-bg: rgb(255 255 255 / 72%);
  --pb-allies-dots-style-border: rgb(23 32 51 / 10%);
  --pb-allies-dots-style-border-width: 1px;
  --pb-allies-dots-style-padding: 9px 14px;
  box-shadow: 0 12px 34px rgb(23 32 51 / 10%);
  backdrop-filter: blur(10px);
}

.pb-allies-dots-style-lines,
.pb-allies-dots-style-bars {
  --pb-allies-dot-style-gap: 12px;
  --pb-allies-dot-style-color: #c7cdd5;
  --pb-allies-dot-style-active: #0878c9;
}

.pb-allies-dots-style-lines button,
.pb-allies-dots-style-bars button {
  width: var(--pb-allies-line-width, 44px);
  height: var(--pb-allies-line-height, 4px);
}

.pb-allies-dots-style-bars .is-active {
  width: calc(var(--pb-allies-line-width, 44px) + 12px);
}

.pb-allies-dots-style-numbers {
  --pb-allies-dot-style-gap: 8px;
  --pb-allies-dot-style-color: #ffffff;
  --pb-allies-dot-style-active: #0d6efd;
}

.pb-allies-dots-style-numbers button {
  width: var(--pb-allies-dot-size, 28px);
  height: var(--pb-allies-dot-size, 28px);
  border: 1px solid rgb(23 32 51 / 14%);
  color: #172033;
  font-size: 12px;
  font-weight: 800;
}

.pb-allies-dots-style-numbers .is-active {
  color: #ffffff;
}

.pb-allies-no-dots + .pb-allies-dots,
.pb-strategic-allies .pb-allies-dots:empty {
  display: none;
}

.pb-footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(320px, 470px);
  justify-content: center;
  align-items: start;
  gap: clamp(56px, 7vw, 112px);
  padding: 100px max(22px, calc((100vw - 1220px) / 2)) 88px;
}

.pb-footer-brand {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.pb-footer-logo {
  display: block;
  width: min(100%, 318px);
  height: auto;
}

.pb-footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pb-footer-socials a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 999px;
  background: var(--pb-footer-social-bg, #1238ff);
  color: var(--pb-footer-social-fg, #ffffff);
  transition: transform 180ms ease, background 180ms ease;
}

.pb-footer-socials a:hover {
  transform: translateY(-3px);
  background: #0a26c9;
}

.pb-footer-socials svg {
  width: var(--pb-footer-social-size, 22px);
  height: var(--pb-footer-social-size, 22px);
  fill: currentColor;
}

.pb-footer-contact {
  display: grid;
  gap: 20px;
  padding-top: 8px;
  color: #ffffff;
}

.pb-footer-line {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.45;
}

.pb-footer-line svg {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  fill: currentColor;
}

.pb-footer-line a,
.pb-footer-line span {
  color: #ffffff;
  font-size: inherit;
}

.pb-footer-line strong {
  color: #fff127;
  font-size: 20px;
  font-weight: 800;
}

.pb-linked-icon {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.pb-section-home-footer-components {
  color: #ffffff;
}

.pb-section-home-footer-components .pb-container {
  width: min(100%, 1220px);
}

.pb-section-home-footer-components .pb-grid {
  align-items: start;
}

.pb-section-home-footer-components .pb-column {
  display: grid;
  align-content: start;
}

.pb-section-home-footer-components .pb-column:first-child {
  justify-items: center;
  gap: 24px;
}

.pb-section-home-footer-components .pb-column:nth-child(2) {
  gap: 19px;
}

.pb-section-home-footer-components .pb-element-image,
.pb-section-home-footer-components .builder-element-image {
  width: 100%;
}

.pb-section-home-footer-components .pb-element-socialIcons,
.pb-section-home-footer-components .builder-element-socialIcons {
  width: 100%;
  justify-content: center;
}

.pb-section-home-footer-components .pb-social-icons {
  justify-content: center;
  gap: 12px;
}

.pb-section-home-footer-components .pb-social-icons-style-minimal a {
  width: 50px;
  min-height: 50px;
  box-shadow: 0 12px 30px rgb(18 56 255 / 28%);
}

.pb-section-home-footer-components .pb-social-icon {
  background: transparent;
}

.pb-section-home-footer-components .pb-linked-icon {
  display: block;
}

.pb-section-home-footer-components .pb-icon-box {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 2px;
  align-items: start;
  width: 100%;
  max-width: 470px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #ffffff;
  text-align: left;
}

.pb-section-home-footer-components .pb-icon {
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
}

.pb-section-home-footer-components .pb-icon svg {
  width: 17px;
  height: 17px;
}

.pb-section-home-footer-components .pb-icon-box strong,
.pb-section-home-footer-components .pb-icon-box p {
  grid-column: 2;
}

.pb-section-home-footer-components .pb-icon-box strong {
  color: #fff127;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.pb-section-home-footer-components .pb-icon-box p {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.42;
}

@media (max-width: 900px) {
  .pb-section-home-footer-components .pb-grid {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }

  .pb-section-home-footer-components .pb-column:nth-child(2) {
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .pb-section-home-footer-components {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .pb-section-home-footer-components .pb-icon-box {
    max-width: 100%;
  }

  .pb-section-home-footer-components .pb-icon-box p {
    font-size: 16px;
  }
}

.pb-section-home-footer-prefooter,
.pb-section-home-footer-main {
  padding: 0 !important;
}

.pb-section-home-footer-prefooter .pb-container,
.pb-section-home-footer-main .pb-container,
.pb-section-home-footer-prefooter .pb-grid,
.pb-section-home-footer-main .pb-grid,
.pb-section-home-footer-prefooter .pb-column,
.pb-section-home-footer-main .pb-column {
  width: 100%;
  max-width: 100% !important;
}

.pb-section-home-footer-prefooter .pb-grid,
.pb-section-home-footer-main .pb-grid {
  gap: 0 !important;
}

.pb-section-home-footer-prefooter .pb-element-alliesCarousel,
.pb-section-home-footer-main .pb-element-siteFooter,
.pb-section-home-footer-prefooter .builder-element-alliesCarousel,
.pb-section-home-footer-main .builder-element-siteFooter {
  width: 100%;
}

.pb-section-nosotros-hero-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0 0 0 / 48%);
  pointer-events: none;
}

.pb-section-nosotros-intro .pb-text p {
  margin: 0 0 18px;
}

.pb-section-nosotros-mission-vision .pb-grid {
  gap: 0 !important;
}

.pb-section-nosotros-mission-vision .pb-column,
.pb-section-nosotros-mission-vision .pb-element-card {
  height: 100%;
}

.pb-section-nosotros-mission-vision .pb-card {
  display: flex;
  min-height: 292px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pb-section-nosotros-mission-vision .pb-card > div {
  width: min(80%, 640px);
  padding: 42px 0;
}

.pb-section-nosotros-mission-vision .pb-card h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.pb-section-nosotros-mission-vision .pb-card p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

.pb-section-nosotros-team-commitment {
  overflow: visible;
}

.pb-section-nosotros-team-commitment .pb-image {
  box-sizing: border-box;
}

.pb-section-nosotros-team-commitment .pb-heading {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.pb-section-section-catalogo-hero-original {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

.pb-section-section-catalogo-hero-original .pb-grid {
  align-items: center;
}

.pb-section-section-catalogo-hero-original .pb-column:first-child {
  align-items: center;
  justify-content: center;
}

.pb-section-section-catalogo-hero-original .pb-column:first-child .pb-element-image,
.pb-section-section-catalogo-hero-original .pb-column:first-child .builder-element-image {
  display: flex;
  justify-content: center;
}

.pb-section-section-catalogo-hero-original .pb-column:first-child .pb-image {
  width: min(88.4%, 560px) !important;
  margin: 0 auto;
}

.pb-section-section-catalogo-hero-original .pb-button {
  min-height: 48px;
  min-width: 244px;
  justify-content: center;
  padding-inline: 28px;
}

@media (max-width: 767px) {
  .pb-section-nosotros-hero-title {
    margin-top: -32px !important;
    margin-bottom: 0 !important;
    min-height: 190px !important;
    padding: 44px 16px !important;
    background-position: center !important;
  }

  .pb-section-nosotros-hero-title .pb-heading {
    font-size: 38px !important;
  }

  .pb-section-nosotros-intro {
    padding-top: 42px !important;
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .pb-section-nosotros-intro .pb-grid,
  .pb-section-nosotros-mission-vision .pb-grid {
    grid-template-columns: 1fr !important;
  }

  .pb-section-nosotros-team-commitment .pb-image {
    width: 100% !important;
    margin-top: -38px !important;
  }

  .pb-section-section-catalogo-hero-original {
    min-height: auto !important;
    padding-top: 44px !important;
    padding-bottom: 44px !important;
    background-position: left center !important;
  }

  .pb-section-section-catalogo-hero-original .pb-grid {
    gap: 24px !important;
  }

  .pb-section-section-catalogo-hero-original .pb-column:first-child .pb-image {
    width: min(92%, 460px) !important;
  }

  .pb-section-section-catalogo-hero-original .pb-heading {
    font-size: clamp(34px, 10vw, 46px) !important;
  }
}

.pb-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-repeat: no-repeat;
}

.pb-section-bg-effect {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--pb-bg-image);
  background-size: var(--pb-bg-size, cover);
  background-position: var(--pb-bg-position, center);
  background-repeat: var(--pb-bg-repeat, no-repeat);
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
}

.pb-section.pb-bg-zoom,
.pb-section.pb-bg-zoom-loop,
.pb-section.pb-bg-hover-zoom {
  background-image: none !important;
}

.pb-section.pb-bg-zoom .pb-section-bg-effect {
  animation: pb-background-zoom var(--pb-bg-duration, 8500ms) ease-out both;
}

.pb-section.pb-bg-zoom-loop .pb-section-bg-effect {
  animation: pb-background-zoom-loop var(--pb-bg-duration, 12000ms) ease-in-out infinite alternate;
}

.pb-section.pb-bg-hover-zoom .pb-section-bg-effect {
  transition: transform 480ms ease;
}

.pb-section.pb-bg-hover-zoom:hover .pb-section-bg-effect {
  transform: scale(var(--pb-bg-scale, 1.08));
}

@keyframes pb-background-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(var(--pb-bg-scale, 1.08));
  }
}

@keyframes pb-background-zoom-loop {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(var(--pb-bg-scale, 1.08));
  }
}

.pb-container {
  position: relative;
  z-index: 2;
}

.pb-section-has-shape > .pb-container {
  position: relative;
  z-index: 2;
}

.pb-section-has-shape {
  overflow: visible;
}

.pb-section.pb-section-has-shape-top,
.pb-section.pb-section-has-shape-bottom {
  z-index: 1;
}

.pb-shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--pb-shape-height, 120px);
  color: var(--pb-shape-color, #ffffff);
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}

.pb-shape-divider span {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
}

.pb-shape-top {
  top: -1px;
}

.pb-shape-bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

.pb-shape-top.pb-shape-arrow {
  top: -1px;
  transform: none;
}

.pb-shape-bottom.pb-shape-arrow {
  bottom: calc(1px - var(--pb-shape-height, 120px));
  transform: none;
}

.pb-shape-arrow {
  overflow: visible;
  z-index: 1;
}

.pb-shape-arrow span {
  width: clamp(72px, 12vw, 240px);
  max-width: 100%;
  margin-inline: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.pb-shape-tilt span {
  clip-path: polygon(0 0, 100% 0, 100% 54%, 0 100%);
}

.pb-shape-tilt-inverse span {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 54%);
}

.pb-shape-angle-center span {
  clip-path: polygon(0 0, 100% 0, 74% 100%, 0 20%);
}

.pb-shape-angle-center-inverse span {
  clip-path: polygon(0 0, 100% 18%, 74% 100%, 0 0);
}

.pb-shape-triangle span {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.pb-shape-triangle-inverse span {
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 100% 0, 0 0);
}

.pb-shape-curve span {
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.pb-shape-curve-inverse span {
  clip-path: ellipse(62% 76% at 50% 0%);
}

.pb-shape-waves span {
  clip-path: polygon(0 0, 100% 0, 100% 60%, 92% 72%, 84% 63%, 76% 75%, 68% 62%, 60% 73%, 52% 62%, 44% 75%, 36% 62%, 28% 74%, 20% 63%, 12% 73%, 0 62%);
}

.pb-shape-waves-soft span {
  clip-path: polygon(0 0, 100% 0, 100% 68%, 88% 80%, 74% 68%, 58% 82%, 42% 67%, 26% 80%, 12% 68%, 0 78%);
}

.pb-shape-mountains span {
  clip-path: polygon(0 0, 100% 0, 100% 68%, 82% 100%, 64% 64%, 48% 92%, 34% 66%, 18% 100%, 0 70%);
}

.pb-shape-book span {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 75% 92%, 50% 70%, 25% 92%, 0 70%);
}

.pb-shape-split span {
  clip-path: polygon(0 0, 100% 0, 100% 45%, 50% 100%, 0 45%);
}

.pb-shape-catalog-cut span {
  clip-path: polygon(0 0, 100% 0, 100% 15%, 76% 41%, 64% 27%, 33% 100%, 0 16%);
}

.pb-shape-brush span {
  clip-path: polygon(0 0, 100% 0, 100% 68%, 92% 61%, 84% 75%, 76% 66%, 68% 80%, 59% 66%, 50% 74%, 41% 62%, 32% 79%, 23% 64%, 14% 74%, 7% 60%, 0 72%);
}

.pb-shape-teeth span {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 96% 100%, 92% 70%, 88% 100%, 84% 70%, 80% 100%, 76% 70%, 72% 100%, 68% 70%, 64% 100%, 60% 70%, 56% 100%, 52% 70%, 48% 100%, 44% 70%, 40% 100%, 36% 70%, 32% 100%, 28% 70%, 24% 100%, 20% 70%, 16% 100%, 12% 70%, 8% 100%, 4% 70%, 0 100%);
}

.builder-shape-picker {
  display: grid;
  gap: 10px;
  margin: 10px 0 14px;
}

.builder-shape-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #344054;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.builder-shape-picker-head strong {
  color: #0d6efd;
  font-size: 10px;
  font-weight: 900;
  text-align: right;
}

.builder-shape-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.builder-shape-choice {
  display: grid;
  gap: 5px;
  padding: 6px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #f8fafc;
  color: #344054;
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.builder-shape-choice:hover,
.builder-shape-choice.is-active {
  border-color: #0d6efd;
  background: #eef5ff;
  box-shadow: 0 0 0 2px rgb(13 110 253 / 12%);
}

.builder-shape-choice em {
  overflow: hidden;
  color: #344054;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.builder-shape-thumb {
  position: relative;
  display: block;
  height: 42px;
  overflow: hidden;
  border-radius: 3px;
  background: #23272f;
}

.builder-shape-thumb::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px) 0 0 / 16px 16px;
  content: "";
}

.builder-shape-thumb i {
  position: absolute;
  inset: 0;
  display: block;
  background: #a7adb5;
}

.builder-shape-thumb-none i {
  top: 50%;
  height: 2px;
  background: #cbd5e1;
  transform: translateY(-50%);
}

.builder-shape-thumb-tilt i {
  clip-path: polygon(0 0, 100% 0, 100% 52%, 0 100%);
}

.builder-shape-thumb-tilt-inverse i {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 52%);
}

.builder-shape-thumb-angle-center i {
  clip-path: polygon(0 0, 100% 0, 74% 100%, 0 20%);
}

.builder-shape-thumb-angle-center-inverse i {
  clip-path: polygon(0 0, 100% 18%, 74% 100%, 0 0);
}

.builder-shape-thumb-triangle i {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.builder-shape-thumb-triangle-inverse i {
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 100% 0, 0 0);
}

.builder-shape-thumb-curve i {
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.builder-shape-thumb-curve-inverse i {
  clip-path: ellipse(62% 76% at 50% 0%);
}

.builder-shape-thumb-waves i {
  clip-path: polygon(0 0, 100% 0, 100% 60%, 92% 72%, 84% 63%, 76% 75%, 68% 62%, 60% 73%, 52% 62%, 44% 75%, 36% 62%, 28% 74%, 20% 63%, 12% 73%, 0 62%);
}

.builder-shape-thumb-waves-soft i {
  clip-path: polygon(0 0, 100% 0, 100% 68%, 88% 80%, 74% 68%, 58% 82%, 42% 67%, 26% 80%, 12% 68%, 0 78%);
}

.builder-shape-thumb-mountains i {
  clip-path: polygon(0 0, 100% 0, 100% 68%, 82% 100%, 64% 64%, 48% 92%, 34% 66%, 18% 100%, 0 70%);
}

.builder-shape-thumb-arrow i {
  clip-path: polygon(0 0, 100% 0, 100% 56%, 56% 56%, 50% 100%, 44% 56%, 0 56%);
}

.builder-shape-thumb-book i {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 75% 92%, 50% 70%, 25% 92%, 0 70%);
}

.builder-shape-thumb-split i {
  clip-path: polygon(0 0, 100% 0, 100% 45%, 50% 100%, 0 45%);
}

.builder-shape-thumb-catalog-cut i {
  clip-path: polygon(0 0, 100% 0, 100% 15%, 76% 41%, 64% 27%, 33% 100%, 0 16%);
}

.builder-shape-thumb-brush i {
  clip-path: polygon(0 0, 100% 0, 100% 68%, 92% 61%, 84% 75%, 76% 66%, 68% 80%, 59% 66%, 50% 74%, 41% 62%, 32% 79%, 23% 64%, 14% 74%, 7% 60%, 0 72%);
}

.builder-shape-thumb-teeth i {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 96% 100%, 92% 70%, 88% 100%, 84% 70%, 80% 100%, 76% 70%, 72% 100%, 68% 70%, 64% 100%, 60% 70%, 56% 100%, 52% 70%, 48% 100%, 44% 70%, 40% 100%, 36% 70%, 32% 100%, 28% 70%, 24% 100%, 20% 70%, 16% 100%, 12% 70%, 8% 100%, 4% 70%, 0 100%);
}

.pb-container {
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
}

.pb-grid {
  display: grid;
  gap: inherit;
  align-items: inherit;
}

.pb-grid-1 {
  grid-template-columns: minmax(0, 1fr);
}

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

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

.pb-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pb-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pb-grid-sidebar-left {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
}

.pb-grid-sidebar-right {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
}

.pb-column > *:first-child {
  margin-top: 0;
}

.pb-column > *:last-child {
  margin-bottom: 0;
}

.pb-heading {
  margin: 0 0 18px;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.pb-text {
  margin: 0 0 20px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.pb-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.pb-linked {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.pb-linked-heading,
.pb-linked-text,
.pb-linked-image {
  display: block;
  max-width: 100%;
}

.pb-linked-image .pb-image {
  cursor: pointer;
}

.pb-button-wrap {
  margin-top: 20px;
}

.pb-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 46px;
  padding: 0 24px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.pb-button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 320ms ease;
}

.pb-button-filled {
  background: #0d6efd;
  border-color: #0d6efd;
}

.pb-button-outline {
  background: transparent;
}

.pb-button-ghost {
  background: rgb(255 255 255 / 12%);
  border-color: transparent;
}

.pb-button-effect-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgb(0 0 0 / 24%);
}

.pb-button-effect-glow:hover {
  box-shadow: 0 0 0 4px rgb(13 110 253 / 18%), 0 12px 24px rgb(13 110 253 / 25%);
}

.pb-button-effect-fill:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.pb-button-effect-scale:hover {
  transform: scale(1.04);
}

.pb-button-effect-shine::after {
  z-index: 1;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 42%), transparent);
  opacity: 1;
  transform: translateX(-170%) skewX(-18deg);
}

.pb-button-effect-shine:hover::after {
  transform: translateX(260%) skewX(-18deg);
}

.pb-button-effect-pulse:hover {
  animation: pb-button-pulse 700ms ease;
  box-shadow: 0 0 0 7px rgb(13 110 253 / 14%), 0 12px 24px rgb(13 110 253 / 18%);
}

.pb-button-effect-slide::after {
  background: rgb(255 255 255 / 16%);
  opacity: 1;
  transform: translateX(-105%);
}

.pb-button-effect-slide:hover::after {
  transform: translateX(0);
}

.pb-button-effect-press:hover {
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 3px 10px rgb(0 0 0 / 18%);
}

.pb-button-effect-outline:hover {
  border-color: currentColor;
  box-shadow: inset 0 0 0 2px currentColor, 0 12px 24px rgb(15 23 42 / 14%);
}

.pb-button-effect-none:hover {
  transform: none;
  box-shadow: none;
}

@keyframes pb-button-pulse {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.045);
  }

  100% {
    transform: scale(1);
  }
}

.pb-icon-box {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.pb-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0d6efd;
  color: #ffffff;
}

.pb-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.pb-icon-box strong {
  font-size: 20px;
}

.pb-icon-box p {
  margin: 0;
  line-height: 1.55;
}

.pb-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: inherit;
}

.pb-slider-track,
.pb-slide {
  min-height: inherit;
}

.pb-slide {
  position: relative;
  display: none;
  align-items: center;
  min-height: inherit;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pb-slide.is-active {
  display: flex;
}

.pb-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 45%);
}

.pb-slide-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 48px));
  margin-left: 42px;
  color: #ffffff;
}

.pb-slide-content h3 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
}

.pb-slide-content p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.55;
}

.pb-slider-dots {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pb-slider-dot-gap, 8px);
  z-index: 2;
}

.pb-slider-dots button {
  width: var(--pb-slider-dot-size, 10px);
  height: var(--pb-slider-dot-size, 10px);
  padding: 0;
  border: 2px solid var(--pb-slider-dot-active, #ffffff);
  border-radius: 50%;
  background: transparent;
  color: var(--pb-slider-dot-active, #ffffff);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: width .22s ease, height .22s ease, background .22s ease, border-color .22s ease, opacity .22s ease, transform .22s ease;
}

.pb-slider-dots button.is-active {
  background: var(--pb-slider-dot-active, #ffffff);
}

.pb-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: var(--pb-slider-arrow-size, 52px);
  height: var(--pb-slider-arrow-size, 52px);
  padding: 0;
  place-items: center;
  border: var(--pb-slider-arrow-border-width, 1px) solid var(--pb-slider-arrow-border, transparent);
  border-radius: var(--pb-slider-arrow-radius, 50%);
  background: var(--pb-slider-arrow-bg, #ffffff);
  color: var(--pb-slider-arrow-color, #1f2933);
  font-size: var(--pb-slider-arrow-icon-size, 42px);
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: var(--pb-slider-arrow-shadow, 0 14px 28px rgb(0 0 0 / 18%));
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease, opacity .22s ease;
}

.pb-slider-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.pb-slider-prev {
  left: var(--pb-slider-arrow-offset, 22px);
}

.pb-slider-next {
  right: var(--pb-slider-arrow-offset, 22px);
}

.pb-banner-slider {
  width: 100%;
  min-height: 730px;
  border-radius: 0;
  background: #050505;
}

.pb-banner-slide {
  overflow: hidden;
  isolation: isolate;
  background-image: none !important;
  background-position: center bottom;
}

.pb-banner-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--pb-banner-bg-image);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
}

.pb-banner-bg-zoom.is-active .pb-banner-slide-bg {
  animation: pb-banner-background-zoom var(--pb-banner-bg-duration, 8500ms) ease-out both;
}

.pb-banner-bg-zoom-loop.is-active .pb-banner-slide-bg {
  animation: pb-banner-background-zoom-loop var(--pb-banner-bg-duration, 12000ms) ease-in-out infinite alternate;
}

.pb-banner-bg-hover-zoom .pb-banner-slide-bg {
  transition: transform 480ms ease;
}

.pb-banner-bg-hover-zoom:hover .pb-banner-slide-bg {
  transform: scale(var(--pb-banner-bg-scale, 1.08));
}

@keyframes pb-banner-background-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(var(--pb-banner-bg-scale, 1.08));
  }
}

@keyframes pb-banner-background-zoom-loop {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(var(--pb-banner-bg-scale, 1.08));
  }
}

.pb-banner-slide::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 42%)),
    linear-gradient(0deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 8%));
}

.pb-banner-slide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(300px, 0.42fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  width: min(100% - 96px, 1200px);
  min-height: inherit;
  margin: 0 auto;
  padding: 72px 0 124px;
}

.pb-banner-layout-content-left .pb-banner-slide-inner {
  grid-template-columns: minmax(300px, 0.42fr) minmax(360px, 0.58fr);
}

.pb-banner-layout-content-left .pb-banner-media {
  order: 2;
  justify-self: start;
}

.pb-banner-layout-content-left .pb-banner-content {
  order: 1;
  justify-self: end;
}

.pb-banner-media {
  width: 100%;
  justify-self: end;
}

.pb-banner-zone {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
}

.pb-banner-zone .pb-element,
.pb-banner-zone .builder-banner-component {
  width: 100%;
  min-width: 0;
}

.pb-banner-media img,
.pb-banner-media video {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.pb-banner-media video {
  aspect-ratio: 16 / 9;
  max-height: none;
  object-fit: cover;
  background: #000000;
  box-shadow: 0 24px 40px rgb(0 0 0 / 34%);
}

.pb-banner-content {
  width: 100%;
  justify-self: start;
  color: #ffffff;
  padding-bottom: 34px;
}

.pb-banner-content .pb-heading {
  margin: 0 0 12px;
}

.pb-banner-content .pb-text {
  margin: 0 0 10px;
}

.pb-banner-content .pb-list {
  margin-top: 0;
  margin-bottom: 14px;
}

.pb-banner-content .pb-badge {
  width: fit-content;
}

.pb-banner-content .pb-icon-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.pb-banner-content .pb-icon-box .pb-icon {
  width: 17px;
  height: 17px;
  color: #ffffff;
}

.pb-banner-content .pb-icon-box strong {
  font-size: inherit;
  line-height: 1.1;
}

.pb-banner-content .pb-icon-box p {
  display: none;
}

.pb-banner-content .pb-button-wrap {
  margin-top: 4px;
}

.pb-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.pb-banner-eyebrow::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, #0d6efd 0 60%, transparent 0) 45% 54% / 9px 9px no-repeat,
    #ffffff;
}

.pb-banner-title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(46px, 4.2vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.pb-banner-highlight {
  margin-bottom: 12px;
  color: #dac956;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.pb-banner-text {
  margin-bottom: 13px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.pb-banner-list {
  display: grid;
  gap: 6px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.22;
}

.pb-banner-list li::marker {
  color: #dac956;
}

.pb-banner-slider .pb-slider-dots {
  right: auto;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.pb-slider-dots-hidden .pb-slider-dots,
.pb-slider-arrows-hidden .pb-slider-arrow {
  display: none;
}

.pb-slider-dots-modern .pb-slider-dots {
  max-width: min(72vw, 430px);
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(0 0 0 / 22%);
  box-shadow: 0 16px 36px rgb(0 0 0 / 20%);
  backdrop-filter: blur(12px);
}

.pb-slider-dots-modern .pb-slider-dots button {
  width: calc(var(--pb-slider-dot-size, 10px) * .88);
  height: calc(var(--pb-slider-dot-size, 10px) * .88);
  border: 0;
  background: var(--pb-slider-dot-color, rgb(255 255 255 / 48%));
  opacity: .9;
}

.pb-slider-dots-modern .pb-slider-dots button.is-active {
  width: calc(var(--pb-slider-dot-size, 10px) * 2.35);
  border-radius: 999px;
  background: var(--pb-slider-dot-active, #ffffff);
}

.pb-slider-dots-lines .pb-slider-dots {
  gap: 10px;
}

.pb-slider-dots-lines .pb-slider-dots button,
.pb-slider-dots-progress .pb-slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--pb-slider-dot-color, rgb(255 255 255 / 48%));
}

.pb-slider-dots-lines .pb-slider-dots button.is-active,
.pb-slider-dots-progress .pb-slider-dots button.is-active {
  width: 54px;
  background: var(--pb-slider-dot-active, #ffffff);
}

.pb-slider-dots-numbers .pb-slider-dots {
  gap: 7px;
  padding: 7px;
  border-radius: 999px;
  background: rgb(0 0 0 / 24%);
  backdrop-filter: blur(10px);
}

.pb-slider-dots-numbers .pb-slider-dots button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--pb-slider-dot-color, rgb(255 255 255 / 48%));
  background: transparent;
  color: var(--pb-slider-dot-active, #ffffff);
}

.pb-slider-dots-numbers .pb-slider-dots button.is-active {
  background: var(--pb-slider-dot-active, #ffffff);
  color: #101828;
}

.pb-slider-dots-pos-bottom-left .pb-slider-dots {
  right: auto;
  left: 46px;
  transform: none;
}

.pb-slider-dots-pos-bottom-right .pb-slider-dots {
  right: 46px;
  left: auto;
  transform: none;
}

.pb-slider-dots-pos-top-center .pb-slider-dots {
  top: 28px;
  bottom: auto;
}

.pb-slider-arrows-glass .pb-slider-arrow {
  border-color: var(--pb-slider-arrow-border, rgb(255 255 255 / 28%));
  background: var(--pb-slider-arrow-bg, rgb(255 255 255 / 16%));
  color: var(--pb-slider-arrow-color, #ffffff);
  box-shadow: 0 20px 42px rgb(0 0 0 / 24%);
  backdrop-filter: blur(14px);
}

.pb-slider-arrows-circle .pb-slider-arrow {
  background: var(--pb-slider-arrow-bg, #ffffff);
  color: var(--pb-slider-arrow-color, #101828);
}

.pb-slider-arrows-outline .pb-slider-arrow {
  border: var(--pb-slider-arrow-border-width, 2px) solid var(--pb-slider-arrow-border, var(--pb-slider-arrow-color, #ffffff));
  background: transparent;
  color: var(--pb-slider-arrow-color, #ffffff);
  box-shadow: none;
}

.pb-slider-arrows-square .pb-slider-arrow {
  border-radius: 14px;
}

.pb-slider-arrows-pill .pb-slider-arrow {
  width: calc(var(--pb-slider-arrow-size, 52px) * 1.35);
  border-radius: 999px;
}

.pb-slider-arrows-minimal .pb-slider-arrow {
  border: 0;
  background: transparent;
  color: var(--pb-slider-arrow-color, #ffffff);
  box-shadow: none;
}

.pb-slider-arrows-brand .pb-slider-arrow {
  border-color: var(--pb-slider-arrow-border, #0d6efd);
  background: var(--pb-slider-arrow-bg, #0d6efd);
  color: var(--pb-slider-arrow-color, #ffffff);
  box-shadow: var(--pb-slider-arrow-shadow, 0 18px 36px rgb(13 110 253 / 32%));
}

.pb-slider-arrows-dark .pb-slider-arrow {
  border-color: var(--pb-slider-arrow-border, rgb(255 255 255 / 18%));
  background: var(--pb-slider-arrow-bg, rgb(0 0 0 / 62%));
  color: var(--pb-slider-arrow-color, #ffffff);
  box-shadow: var(--pb-slider-arrow-shadow, 0 18px 34px rgb(0 0 0 / 34%));
}

.pb-slider-arrows-soft .pb-slider-arrow {
  border-color: var(--pb-slider-arrow-border, rgb(16 24 40 / 8%));
  background: var(--pb-slider-arrow-bg, rgb(255 255 255 / 78%));
  color: var(--pb-slider-arrow-color, #172033);
  box-shadow: var(--pb-slider-arrow-shadow, 0 10px 24px rgb(15 23 42 / 10%));
}

.pb-slider-arrows-floating .pb-slider-arrow {
  border-color: var(--pb-slider-arrow-border, rgb(255 255 255 / 34%));
  background: var(--pb-slider-arrow-bg, linear-gradient(135deg, rgb(255 255 255 / 34%), rgb(255 255 255 / 10%)));
  color: var(--pb-slider-arrow-color, #ffffff);
  box-shadow: var(--pb-slider-arrow-shadow, 0 24px 50px rgb(0 0 0 / 32%));
  backdrop-filter: blur(18px);
}

.pb-slider-arrows-chevrons .pb-slider-arrow {
  width: auto;
  border: 0;
  background: transparent;
  color: var(--pb-slider-arrow-color, #ffffff);
  font-size: calc(var(--pb-slider-arrow-icon-size, 42px) * 1.45);
  box-shadow: none;
  text-shadow: 0 6px 18px rgb(0 0 0 / 42%);
}

.pb-slider-arrows-pos-edges .pb-slider-prev {
  left: 38px;
}

.pb-slider-arrows-pos-edges .pb-slider-next {
  right: 38px;
}

.pb-slider-arrows-pos-bottom-right .pb-slider-arrow {
  top: auto;
  bottom: 30px;
  transform: none;
}

.pb-slider-arrows-pos-bottom-right .pb-slider-arrow:hover {
  transform: scale(1.06);
}

.pb-slider-arrows-pos-bottom-right .pb-slider-prev {
  right: calc(42px + var(--pb-slider-arrow-size, 52px));
  left: auto;
}

.pb-slider-arrows-pos-bottom-right .pb-slider-next {
  right: 32px;
}

.pb-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pb-gallery[data-pb-lightbox="1"] img {
  cursor: zoom-in;
}

.pb-gallery-slider {
  position: relative;
  width: 100%;
}

.pb-gallery-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.pb-gallery-slider .pb-gallery-track {
  display: flex;
  grid-template-columns: none;
  width: 100%;
  overflow: visible;
  scroll-snap-type: x mandatory;
}

.pb-gallery-slider .pb-gallery-track img {
  flex: 0 0 calc((100% - 28px) / 3);
  width: calc((100% - 28px) / 3);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  scroll-snap-align: start;
}

.pb-gallery-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(15 23 42 / 14%);
  border-radius: 999px;
  background: rgb(255 255 255 / 92%);
  color: #111827;
  font: 800 32px/1 Arial, sans-serif;
  transform: translateY(-50%);
  box-shadow: 0 14px 34px rgb(15 23 42 / 18%);
  cursor: pointer;
}

.pb-gallery-slider-arrow:hover {
  background: #ffffff;
}

.pb-gallery-slider-prev {
  left: 12px;
}

.pb-gallery-slider-next {
  right: 12px;
}

.pb-gallery img,
.pb-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.pb-lightbox-open {
  overflow: hidden;
}

.pb-gallery-lightbox[hidden] {
  display: none;
}

.pb-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgb(0 0 0 / 86%);
}

.pb-gallery-lightbox img {
  display: block;
  max-width: min(1120px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgb(0 0 0 / 45%);
}

.pb-gallery-lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
  color: #ffffff;
  font: 800 30px/1 Arial, sans-serif;
  cursor: pointer;
}

.pb-gallery-lightbox button:hover {
  background: rgb(255 255 255 / 22%);
}

.pb-gallery-lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 22px;
}

.pb-gallery-lightbox-prev {
  left: 24px;
}

.pb-gallery-lightbox-next {
  right: 24px;
}

.pb-gallery-lightbox-single .pb-gallery-lightbox-arrow {
  display: none;
}

.pb-pdf-book {
  --pb-pdf-book-page-max-height: 660px;
  --pb-pdf-book-page-gap: 0px;
  --pb-pdf-book-toolbar-bottom: 22px;
  --pb-pdf-book-zoom: 1;
  position: relative;
  display: flex;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #2b2b2b;
}

.pb-pdf-book-stage {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  padding: 44px 168px 88px;
}

.pb-pdf-book-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pb-pdf-book-page-gap);
  transform: scale(var(--pb-pdf-book-zoom));
  transform-origin: center;
  transition: transform .24s ease;
  will-change: transform;
}

.pb-pdf-book-page {
  display: block;
  width: auto;
  max-width: min(46vw, 470px);
  max-height: var(--pb-pdf-book-page-max-height);
  height: auto;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 22px 46px rgb(0 0 0 / 28%);
}

.pb-pdf-book-pages.is-cover .pb-pdf-book-page {
  max-width: min(34vw, 480px);
}

.pb-pdf-book-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(0 0 0 / 22%);
  color: rgb(255 255 255 / 84%);
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 26px rgb(0 0 0 / 22%);
  transition: color .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}

.pb-pdf-book-arrow::before {
  display: block;
  font: 800 64px/.72 Arial, sans-serif;
}

.pb-pdf-book-prev::before {
  content: "\2039";
  transform: translate(-2px, -2px);
}

.pb-pdf-book-next::before {
  content: "\203A";
  transform: translate(2px, -2px);
}

.pb-pdf-book-arrow:hover {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(0 0 0 / 38%);
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.pb-pdf-book-prev {
  left: 18px;
}

.pb-pdf-book-next {
  right: 18px;
}

.pb-pdf-book-toolbar {
  position: absolute;
  left: 50%;
  bottom: var(--pb-pdf-book-toolbar-bottom);
  z-index: 4;
  display: flex;
  min-height: 42px;
  overflow: hidden;
  align-items: center;
  gap: 0;
  padding: 6px 8px;
  border: 1px solid rgb(15 23 42 / 16%);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgb(0 0 0 / 28%);
  transform: translateX(-50%);
}

.pb-pdf-book-tool,
.pb-pdf-book-current,
.pb-pdf-book-total {
  display: grid;
  min-width: 34px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #4b5563;
  font: 700 13px/1 Montserrat, Arial, sans-serif;
}

.pb-pdf-book-tool {
  cursor: pointer;
}

.pb-pdf-book-tool:hover {
  background: #eef2f7;
  color: #111827;
}

.pb-pdf-book-current {
  width: 44px;
  border-radius: 2px 0 0 2px;
  background: #f1f3f6;
  text-align: center;
}

.pb-pdf-book-total {
  min-width: 38px;
  border-left: 1px solid #e5e7eb;
  border-radius: 0 2px 2px 0;
  background: #f1f3f6;
}

.pb-video {
  aspect-ratio: 16 / 9;
}

.pb-video iframe,
.pb-video video {
  width: 100%;
  height: 100%;
  border: 0;
}

.pb-divider {
  width: 100%;
  margin: 36px 0;
  text-align: center;
  line-height: 0;
}

.pb-divider-line {
  display: inline-block;
  max-width: 100%;
  width: 82%;
  border-top: 1px solid #b8b8b8;
  vertical-align: top;
}

.pb-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 8%);
}

.pb-card > div {
  padding: 22px;
}

.pb-card h3 {
  margin: 0 0 10px;
}

.pb-card p {
  margin: 0 0 16px;
  line-height: 1.55;
}

.pb-card-link {
  color: #0d6efd;
  font-weight: 800;
  text-decoration: none;
}

.pb-element {
  min-width: 0;
  max-width: 100%;
}

.pb-element > * {
  min-width: 0;
  max-width: 100%;
}

.pb-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  line-height: 1;
  text-transform: uppercase;
}

.pb-section-home-hero-original,
.pb-section-home-banner-electrofusion,
.pb-section-home-banner-slider-original,
.pb-section-home-mas-catalogos {
  isolation: isolate;
}

.pb-section-home-hero-original::before,
.pb-section-home-banner-electrofusion::before,
.pb-section-home-banner-slider-original::before,
.pb-section-home-mas-catalogos::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 34%));
}

.pb-section-home-banner-slider-original {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pb-section-home-banner-slider-original .pb-container {
  width: 100%;
  max-width: 100% !important;
}

.pb-section-home-hero-original .pb-video {
  overflow: hidden;
  border: 0;
  background: #000000;
}

.pb-section-home-hero-original .pb-video video {
  object-fit: cover;
}

.pb-section-home-hero-original .pb-badge,
.pb-section-home-banner-electrofusion .pb-badge,
.pb-section-home-mas-catalogos .pb-badge {
  gap: 8px;
  padding-left: 0;
  letter-spacing: 0;
}

.pb-section-home-hero-original .pb-badge::before,
.pb-section-home-banner-electrofusion .pb-badge::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, #ffffff 0 58%, transparent 0) 42% 52% / 8px 8px no-repeat,
    #ffffff;
  box-shadow: inset 0 0 0 5px #ffffff;
}

.pb-section-home-hero-original .pb-text,
.pb-section-home-banner-electrofusion .pb-text {
  white-space: pre-line;
}

.pb-section-home-catalogos-slider .pb-grid,
.pb-section-home-catalogos-more .pb-grid {
  justify-items: center;
}

.pb-section-home-catalogos-slider .pb-column,
.pb-section-home-catalogos-more .pb-column {
  width: 100%;
}

.pb-section-home-catalogos-slider .pb-catalog-download,
.pb-section-home-catalogos-more .pb-catalog-download {
  width: 100%;
}

.pb-section-home-catalogos-slider .pb-catalog-cover-link,
.pb-section-home-catalogos-more .pb-catalog-cover-link {
  width: min(100%, 224px);
}

.pb-section-home-productos-homologados .pb-badge,
.pb-section-home-novedades .pb-badge {
  display: flex;
  justify-content: center;
  padding: 0;
  letter-spacing: 0;
}

.pb-section-home-productos-homologados .pb-product-grid article {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgb(15 23 42 / 12%);
}

.pb-section-home-productos-homologados .pb-product-grid img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 20px;
  background: #ffffff;
}

.pb-section-home-mas-catalogos::before {
  background: rgb(0 0 0 / 62%);
}

.pb-section-home-proyecto-empieza-aqui {
  overflow: visible;
}

.pb-section-home-proyecto-empieza-aqui .pb-container {
  position: relative;
  z-index: 1;
}

.pb-section-home-proyecto-empieza-aqui::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 86px;
  z-index: 0;
  width: min(63vw, 1120px);
  height: 280px;
  transform: translateX(-50%);
  background: #f6f6f6;
  box-shadow: inset 0 0 0 1px rgb(15 23 42 / 2%);
}

.pb-section-home-proyecto-empieza-aqui .pb-heading {
  margin-bottom: 0;
}

.pb-section-home-proyecto-empieza-aqui .pb-text {
  margin-bottom: 0;
  letter-spacing: 0;
}

.pb-section-home-proyecto-empieza-aqui .pb-image {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  filter: drop-shadow(0 28px 28px rgb(0 0 0 / 14%));
}

.pb-section-home-beneficios-original .pb-icon-box {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 17px;
  padding: 22px 24px;
  border-radius: 2px;
  background: #f2f2f2;
  color: #20242d;
  box-shadow: inset 0 0 0 1px rgb(15 23 42 / 4%);
}

.pb-section-home-beneficios-original .pb-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 12px 24px rgb(15 23 42 / 10%);
}

.pb-section-home-beneficios-original .pb-icon svg {
  width: 23px;
  height: 23px;
}

.pb-section-home-beneficios-original .pb-icon-box strong {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.pb-section-home-beneficios-original .pb-icon-box p {
  display: none;
}

.pb-section-home-redes-original .pb-column {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pb-section-home-redes-original .pb-heading {
  margin: 0;
}

.pb-section-home-redes-original .pb-social-icons {
  justify-content: center;
  gap: 9px;
}

.pb-section-home-redes-original .pb-social-icons a {
  min-height: 48px;
  padding: 0;
  border: 0;
}

.pb-section-home-redes-original .pb-social-icons .pb-social-icon {
  width: 48px;
  height: 48px;
  background: var(--pb-social-bg, var(--pb-social-color, #111111));
  color: var(--pb-social-fg, #ffffff);
  font-weight: 900;
}

.pb-section-home-redes-original .pb-social-icons .pb-social-icon svg {
  width: var(--pb-social-icon-size, 20px);
  height: var(--pb-social-icon-size, 20px);
}

.pb-section-home-redes-original .pb-social-icons em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.pb-section-home-fiabilidad-seguridad {
  isolation: isolate;
}

.pb-section-home-fiabilidad-seguridad .pb-grid {
  align-items: center;
}

.pb-section-home-fiabilidad-seguridad .pb-column {
  display: grid;
  gap: 18px;
}

.pb-section-home-fiabilidad-seguridad .pb-badge,
.pb-section-home-certificacion-internacional .pb-badge,
.pb-section-home-ferias-reconocidas .pb-badge,
.pb-section-duragua-ferias-reconocidas .pb-badge,
.pb-section-home-termofusoras-digitales .pb-badge {
  justify-self: start;
  letter-spacing: 0;
}

.pb-section-home-fiabilidad-seguridad .pb-heading,
.pb-section-home-certificacion-internacional .pb-heading,
.pb-section-home-ferias-reconocidas .pb-heading,
.pb-section-duragua-ferias-reconocidas .pb-heading,
.pb-section-home-novedades-original .pb-heading {
  margin-bottom: 0;
  font-style: italic;
}

.pb-section-home-fiabilidad-seguridad .pb-text {
  margin-bottom: 0;
}

.pb-section-home-fiabilidad-seguridad .pb-image,
.pb-section-home-ferias-reconocidas .pb-image,
.pb-section-duragua-ferias-reconocidas .pb-image {
  margin-inline: auto;
}

.pb-section-home-certificacion-internacional {
  overflow: hidden;
}

.pb-section-home-certificacion-internacional .pb-image {
  margin-inline: auto;
  filter: drop-shadow(0 26px 34px rgb(0 0 0 / 22%));
}

.pb-section-home-certificacion-internacional .pb-text,
.pb-section-home-ferias-reconocidas .pb-text,
.pb-section-duragua-ferias-reconocidas .pb-text {
  margin-bottom: 0;
}

.pb-section-home-ferias-reconocidas,
.pb-section-duragua-ferias-reconocidas {
  color: #20242d;
  background-image: url("/assets/termofusion-clone/2025/10/hs-slide-background-opt.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
}

.pb-section-home-ferias-reconocidas .pb-grid,
.pb-section-duragua-ferias-reconocidas .pb-grid {
  align-items: center;
}

.pb-section-home-ferias-reconocidas .pb-column,
.pb-section-duragua-ferias-reconocidas .pb-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pb-section-home-ferias-reconocidas .pb-column:nth-child(2),
.pb-section-duragua-ferias-reconocidas .pb-column:nth-child(2) {
  max-width: 490px;
  justify-self: center;
  gap: 15px;
}

.pb-section-home-ferias-reconocidas .pb-column:first-child .pb-image,
.pb-section-duragua-ferias-reconocidas .pb-column:first-child .pb-image {
  width: min(108%, 560px) !important;
  max-width: none;
  margin-inline: auto !important;
}

.pb-section-home-ferias-reconocidas .pb-column:last-child .pb-image,
.pb-section-duragua-ferias-reconocidas .pb-column:last-child .pb-image {
  width: min(100%, 720px) !important;
  max-width: none;
  margin-inline: auto !important;
}

.pb-section-home-ferias-reconocidas .pb-badge,
.pb-section-duragua-ferias-reconocidas .pb-badge {
  display: block;
  justify-self: center;
  padding: 0 !important;
  background: transparent !important;
  color: #bfbfbf !important;
  border-radius: 0 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.2;
  text-align: center !important;
  text-transform: none;
}

.pb-section-home-ferias-reconocidas .pb-heading,
.pb-section-duragua-ferias-reconocidas .pb-heading {
  color: #1e2430 !important;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 42px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: 0;
  text-align: center !important;
}

.pb-section-home-ferias-reconocidas .pb-text,
.pb-section-duragua-ferias-reconocidas .pb-text {
  max-width: 489px;
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
  text-align: center !important;
}

.pb-section-home-ferias-reconocidas .pb-text strong,
.pb-section-duragua-ferias-reconocidas .pb-text strong {
  font-weight: 800;
}

.pb-section-home-ferias-reconocidas .pb-button-wrap,
.pb-section-duragua-ferias-reconocidas .pb-button-wrap {
  width: 100%;
  margin-top: 2px;
  text-align: center !important;
}

.pb-section-home-ferias-reconocidas .pb-button,
.pb-section-duragua-ferias-reconocidas .pb-button {
  border-radius: 0 !important;
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  box-shadow: none !important;
  text-transform: uppercase;
}

.pb-section-home-accesorios-maquinas {
  position: relative;
  overflow: visible;
  background: #100b78 !important;
  min-height: 360px !important;
  padding-top: 64px !important;
  padding-bottom: 58px !important;
}

.pb-section-home-accesorios-maquinas .pb-container {
  position: relative;
  z-index: 1;
  width: min(100% - 96px, 1180px);
}

.pb-section-home-accesorios-maquinas .pb-column {
  display: grid;
  align-content: start;
  justify-items: center;
  width: 100%;
}

.pb-section-home-accesorios-maquinas .pb-column.builder-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.pb-section-home-accesorios-maquinas .builder-element-image,
.pb-section-home-accesorios-maquinas .pb-element-image {
  width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  justify-content: center !important;
}

.pb-section-home-accesorios-maquinas .pb-image {
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 45px !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-inline: auto !important;
}

@supports selector(:has(*)) {
  .pb-section:has(.pb-image[src*="SETIEMBRE-1300x482"]) {
    overflow: visible;
    min-height: 360px !important;
    padding-top: 64px !important;
    padding-bottom: 58px !important;
  }

  .pb-section:has(.pb-image[src*="SETIEMBRE-1300x482"]) .pb-column.builder-column,
  .pb-section:has(.pb-image[src*="SETIEMBRE-1300x482"]) .pb-column {
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .pb-section:has(.pb-image[src*="SETIEMBRE-1300x482"]) .builder-element-image,
  .pb-section:has(.pb-image[src*="SETIEMBRE-1300x482"]) .pb-element-image {
    width: min(100%, 1180px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .pb-section:has(.pb-image[src*="SETIEMBRE-1300x482"]) .pb-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

.pb-section-home-termofusoras-heading-band {
  position: relative;
  z-index: 0;
  overflow: visible;
  background: #0605da !important;
  color: #ffffff;
  padding-top: 48px !important;
  padding-bottom: 62px !important;
}

.pb-section-home-termofusoras-heading-band .pb-grid {
  align-items: center !important;
}

.pb-section-home-termofusoras-heading-band .pb-column {
  align-items: center;
  display: grid;
  gap: 0;
  justify-items: center;
  min-height: 0;
}

.pb-section-home-termofusoras-heading-band .pb-text {
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-style: italic;
  font-weight: 800 !important;
  letter-spacing: 0.8px;
  line-height: 1.1 !important;
  text-align: center !important;
  text-transform: uppercase;
  word-spacing: 4px;
}

.pb-section-home-termofusoras-heading-band .pb-heading {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: "Roboto", "Montserrat", sans-serif;
  font-size: 54px !important;
  font-style: italic;
  font-weight: 900 !important;
  letter-spacing: 0;
  line-height: 39px !important;
  text-align: center !important;
}

.pb-section-home-termofusoras-digitales {
  background: #ffffff !important;
  color: #1f2933;
  margin-top: 0 !important;
}

.pb-section-home-termofusoras-digitales .pb-grid {
  align-items: stretch;
}

.pb-section-home-termofusoras-digitales .pb-column:first-child {
  align-self: center;
}

.pb-section-home-termofusoras-digitales .pb-card {
  height: 100%;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 18px 36px rgb(15 23 42 / 12%);
}

.pb-section-home-termofusoras-digitales .pb-card img {
  height: 210px;
  padding: 18px;
  object-fit: contain;
  background: #ffffff;
}

.pb-section-home-termofusoras-digitales .pb-card > div {
  padding: 20px 20px 22px;
}

.pb-section-home-termofusoras-digitales .pb-card h3 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.18;
}

.pb-section-home-termofusoras-digitales .pb-card p {
  color: #4b5563;
  font-size: 14px;
}

.pb-section-home-novedades-original {
  isolation: isolate;
}

.pb-section-home-novedades-original .pb-icon-box {
  height: 100%;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 4px;
  background: rgb(255 255 255 / 7%);
  color: #ffffff;
}

.pb-section-home-novedades-original .pb-icon {
  background: #0d6efd;
}

.pb-section-home-novedades-original .pb-icon-box strong {
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
}

.pb-section-home-novedades-original .pb-icon-box p {
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
}

.pb-section-home-electrofusion-lesso-showcase {
  isolation: isolate;
}

.pb-section-home-electrofusion-lesso-showcase .pb-container {
  position: relative;
  z-index: 2;
}

.pb-section-home-electrofusion-lesso-showcase .pb-grid {
  justify-content: center;
}

.pb-section-home-electrofusion-lesso-showcase .pb-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.pb-section-home-electrofusion-lesso-showcase .pb-image {
  display: block;
}

.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(2) > .pb-element-heading:first-child .pb-heading {
  margin-top: 26px;
  color: #707070 !important;
  font-style: italic;
  text-transform: uppercase;
}

.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(2) .pb-text strong {
  color: #111111;
  font-size: 11px;
  font-weight: 600;
}

.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(2) .pb-text span {
  font-weight: 700;
}

.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(1) .pb-element-image:first-child,
.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(3) .pb-element-image:first-child,
.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(2) .pb-element-image:last-child {
  width: 306px;
  max-width: 100%;
}

.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(1) .pb-element-image:first-child .pb-image,
.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(3) .pb-element-image:first-child .pb-image,
.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(2) .pb-element-image:last-child .pb-image {
  width: 306px !important;
  max-width: 100% !important;
  aspect-ratio: 1 / 1;
  height: auto !important;
  object-fit: cover;
}

.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(1) .pb-element-heading .pb-heading,
.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(3) .pb-element-heading .pb-heading {
  margin-bottom: 0;
}

.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(1) .pb-text,
.pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(3) .pb-text {
  white-space: nowrap;
}

.pb-section-home-lesso-stock-gallery {
  overflow: hidden;
}

.pb-section-home-lesso-stock-gallery .pb-container,
.pb-section-home-lesso-stock-gallery .pb-grid,
.pb-section-home-lesso-stock-gallery .pb-column,
.pb-section-home-lesso-stock-gallery .pb-element-gallery {
  width: 100%;
}

.pb-section-home-lesso-stock-gallery .pb-gallery-slider,
.pb-section-home-lesso-stock-gallery .pb-gallery-slider-viewport {
  width: 100%;
}

.pb-section-home-lesso-stock-gallery .pb-gallery {
  display: flex;
  width: 100%;
  gap: 5px !important;
  align-items: start;
  justify-items: center;
  overflow: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pb-section-home-lesso-stock-gallery .pb-gallery img {
  flex: 0 0 calc((100% - 10px) / 3);
  width: calc((100% - 10px) / 3);
  height: auto !important;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  scroll-snap-align: start;
}

.pb-section-home-lesso-stock-gallery .pb-gallery-slider-arrow {
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: rgb(0 0 0 / 58%);
  border-color: rgb(255 255 255 / 28%);
  box-shadow: 0 12px 28px rgb(0 0 0 / 24%);
}

.pb-section-home-lesso-stock-gallery .pb-gallery-slider-arrow:hover {
  background: rgb(0 0 0 / 76%);
}

.pb-section-home-mas-catalogos-aqui .pb-badge,
.pb-section-home-galeria-original .pb-badge {
  display: flex;
  justify-content: center;
  padding: 0;
  letter-spacing: 0;
}

.pb-section-home-compression-pp-banner {
  isolation: isolate;
  overflow: hidden;
  min-height: 232px;
}

.pb-section-home-compression-pp-banner .pb-container {
  position: relative;
  z-index: 1;
  min-height: 232px;
  max-width: 1440px !important;
}

.pb-section-home-compression-pp-banner .pb-column {
  position: relative;
  display: block;
  width: 100%;
  min-height: 232px;
  justify-self: stretch;
}

.pb-section-home-compression-pp-banner .pb-grid {
  min-height: 232px;
  justify-items: stretch !important;
}

.pb-section-home-compression-pp-banner .pb-element-heading,
.pb-section-home-compression-pp-banner .builder-element-heading {
  position: absolute;
  left: clamp(24px, calc(50% - 570px), 390px);
  z-index: 3;
  display: block !important;
  justify-content: initial !important;
  width: min(760px, calc(100vw - 48px));
  margin: 0;
}

.pb-section-home-compression-pp-banner .pb-element-heading:nth-child(1),
.pb-section-home-compression-pp-banner .builder-element-heading:nth-child(1) {
  top: 28px;
}

.pb-section-home-compression-pp-banner .pb-element-heading:nth-child(2),
.pb-section-home-compression-pp-banner .builder-element-heading:nth-child(2) {
  top: 78px;
}

.pb-section-home-compression-pp-banner .pb-heading {
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  text-shadow: 0 3px 8px rgb(0 0 0 / 10%);
}

.pb-section-home-compression-pp-banner .pb-linked-heading {
  display: block;
  width: max-content;
  max-width: 100%;
}

.pb-section-home-compression-pp-banner .pb-element-image,
.pb-section-home-compression-pp-banner .builder-element-image {
  position: absolute;
  top: 0;
  left: calc(50% - 770px);
  z-index: 2;
  display: block !important;
  justify-content: initial !important;
  width: 1500px;
  max-width: none !important;
  margin: 0;
  transform: none !important;
}

.pb-section-home-compression-pp-banner .pb-linked-image {
  display: block;
  width: 100%;
  max-width: none !important;
}

.pb-section-home-compression-pp-banner .pb-image {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgb(0 0 0 / 20%));
}

.pb-section-home-mas-catalogos-aqui {
  isolation: isolate;
  overflow: visible;
  min-height: 382px;
  z-index: 4;
  background-repeat: repeat-x;
  background-size: 680px auto;
  background-position: left -80px top -24px;
}

.pb-section-home-mas-catalogos-aqui::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 82%), rgb(0 0 0 / 60%) 46%, rgb(0 0 0 / 78%));
  pointer-events: none;
}

.pb-section-home-mas-catalogos-aqui::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 24% 18%, rgb(255 255 255 / 8%), transparent 25%),
    radial-gradient(circle at 62% 52%, rgb(0 0 0 / 26%), transparent 36%);
  pointer-events: none;
}

.pb-section-home-mas-catalogos-aqui .pb-container {
  position: relative;
  z-index: 1;
  min-height: 278px;
}

.pb-section-home-mas-catalogos-aqui .pb-grid {
  width: 100%;
  min-height: 278px;
  align-items: center;
}

.pb-section-home-mas-catalogos-aqui .pb-column {
  position: relative;
}

.pb-section-home-mas-catalogos-aqui .pb-column:first-child {
  min-height: 278px;
  overflow: visible;
}

.pb-section-home-mas-catalogos-aqui .pb-column:first-child .pb-element-image {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.pb-section-home-mas-catalogos-aqui .pb-column:first-child .pb-linked-image,
.pb-section-home-mas-catalogos-aqui .pb-column:first-child .pb-image {
  width: 100%;
}

.pb-section-home-mas-catalogos-aqui .pb-column:first-child .pb-image {
  filter: brightness(0.92) drop-shadow(0 24px 38px rgb(0 0 0 / 52%));
}

.pb-section-home-mas-catalogos-aqui .pb-column:last-child {
  display: grid;
  grid-template-columns: auto auto;
  align-content: center;
  align-items: center;
  justify-content: start;
  gap: 0 24px;
  transform: translateY(-48px);
  text-align: left;
}

.pb-section-home-mas-catalogos-aqui .pb-element-badge,
.pb-section-home-mas-catalogos-aqui .pb-element-heading {
  grid-column: 1 / -1;
}

.pb-section-home-mas-catalogos-aqui .pb-badge {
  display: block;
  justify-content: flex-start;
  margin-bottom: 9px;
  padding: 0;
  font-style: italic;
  letter-spacing: 0;
  text-shadow: 0 3px 12px rgb(0 0 0 / 45%);
}

.pb-section-home-mas-catalogos-aqui .pb-heading {
  margin: 0 0 28px;
  font-style: italic;
  text-align: left !important;
  text-shadow: 4px 4px 0 rgb(24 24 24 / 88%);
}

.pb-section-home-mas-catalogos-aqui .pb-button-wrap {
  text-align: left !important;
}

.pb-section-home-mas-catalogos-aqui .pb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 28px;
}

.pb-section-home-mas-catalogos-aqui .pb-element-button:last-child .pb-button {
  min-height: 0;
  padding: 2px 0;
  border-radius: 0 !important;
  border-bottom: 2px solid #ffffff !important;
  box-shadow: none;
}

.pb-section-home-catalogos-fila-uno .pb-grid,
.pb-section-home-catalogos-fila-dos .pb-grid {
  justify-items: center;
}

.pb-section-home-catalogos-fila-uno .pb-column,
.pb-section-home-catalogos-fila-dos .pb-column {
  width: 100%;
}

.pb-section-home-catalogos-fila-uno .pb-catalog-download,
.pb-section-home-catalogos-fila-dos .pb-catalog-download {
  width: 100%;
}

.pb-section-home-catalogos-fila-uno .pb-catalog-cover-link,
.pb-section-home-catalogos-fila-dos .pb-catalog-cover-link {
  width: min(100%, 224px);
}

.pb-section-home-galeria-original {
  background: #ffffff !important;
}

.pb-section-home-galeria-original .pb-container {
  max-width: 100% !important;
}

.pb-section-home-galeria-original .pb-grid,
.pb-section-home-galeria-original .pb-column {
  gap: 0;
}

.pb-section-home-galeria-original .pb-heading {
  font-style: italic;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pb-section-home-galeria-original .pb-badge {
  width: 100%;
  margin: 0 auto 14px;
}

.pb-section-home-galeria-original .pb-button-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 24px;
}

.pb-section-home-galeria-original .pb-button {
  min-height: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  line-height: 1;
  text-transform: uppercase;
}

.pb-section-home-galeria-original .pb-button:hover {
  color: #0d6efd !important;
  transform: none;
}

.pb-section-home-galeria-original .pb-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(110px, 10vw, 196px);
  gap: 3px !important;
  width: 100%;
  max-width: 100% !important;
  margin-top: 0 !important;
}

.pb-section-home-galeria-original .pb-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.pb-section-home-galeria-original .pb-gallery img:nth-child(1) {
  grid-column: 1 / span 3;
  grid-row: 1 / span 3;
}

.pb-section-home-galeria-original .pb-gallery img:nth-child(2) {
  grid-column: 4 / span 3;
  grid-row: 1 / span 1;
}

.pb-section-home-galeria-original .pb-gallery img:nth-child(3) {
  grid-column: 7 / span 3;
  grid-row: 1 / span 1;
}

.pb-section-home-galeria-original .pb-gallery img:nth-child(4) {
  grid-column: 10 / span 3;
  grid-row: 1 / span 3;
}

.pb-section-home-galeria-original .pb-gallery img:nth-child(5) {
  grid-column: 4 / span 3;
  grid-row: 2 / span 1;
}

.pb-section-home-galeria-original .pb-gallery img:nth-child(6) {
  grid-column: 7 / span 1;
  grid-row: 2 / span 1;
}

.pb-section-home-galeria-original .pb-gallery img:nth-child(7) {
  grid-column: 8 / span 1;
  grid-row: 2 / span 1;
}

.pb-section-home-galeria-original .pb-gallery img:nth-child(8) {
  grid-column: 9 / span 1;
  grid-row: 2 / span 1;
}

.pb-section-home-galeria-original .pb-gallery img:nth-child(9) {
  grid-column: 4 / span 6;
  grid-row: 3 / span 1;
}

.pb-section-duragua-brand-hero {
  isolation: isolate;
}

.pb-section-duragua-brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 22%));
}

.pb-section-duragua-brand-hero .pb-container {
  position: relative;
  z-index: 1;
}

.pb-section-duragua-brand-hero .pb-grid,
.pb-section-duragua-brand-hero .pb-column {
  display: grid;
  place-items: center;
}

.pb-section-duragua-brand-hero .pb-image {
  filter: drop-shadow(0 12px 18px rgb(0 0 0 / 28%));
}

.pb-section-duragua-benefits-strip .pb-grid {
  border-left: 1px solid rgb(255 255 255 / 16%);
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.pb-section-duragua-benefits-strip .pb-column {
  justify-content: center;
  min-height: 68px;
  padding: 0 42px;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.pb-section-duragua-benefits-strip .pb-column:last-child {
  border-right: 0;
}

.pb-section-duragua-benefits-strip .pb-heading {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.pb-section-duragua-benefits-strip .pb-text {
  max-width: 410px;
}

.pb-section-duragua-story .pb-column:first-child {
  position: relative;
  justify-self: end;
  max-width: 500px;
}

.pb-section-duragua-story .pb-column:last-child {
  justify-self: start;
  max-width: 540px;
}

.pb-section-duragua-story .pb-heading {
  letter-spacing: 0;
}

.pb-section-duragua-story .pb-element-icon {
  position: absolute;
  top: 38px;
  left: -40px;
  z-index: 1;
}

.pb-section-duragua-story .pb-element-icon .pb-icon-box {
  display: block;
}

.pb-section-duragua-story .pb-element-icon .pb-icon {
  width: 34px;
  height: 44px;
  background: transparent;
  color: #55bff4;
  filter: drop-shadow(0 7px 8px rgb(14 165 233 / 26%));
}

.pb-section-duragua-story .pb-element-icon .pb-icon svg {
  width: 34px;
  height: 44px;
}

.pb-section-duragua-story .pb-element-heading:nth-of-type(2) .pb-heading {
  text-transform: none;
}

.pb-section-duragua-story .pb-list {
  gap: 18px;
  margin-bottom: 0;
}

.pb-section-duragua-story .pb-list li::marker {
  color: #717680;
}

.pb-section-duragua-story .pb-element-tabs {
  margin-top: 24px;
}

.pb-section-duragua-story .pb-tabs {
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pb-section-duragua-story .pb-tabs-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.pb-section-duragua-story .pb-tabs-nav button {
  min-height: auto;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: #717680;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
  text-transform: none;
}

.pb-section-duragua-story .pb-tabs-nav button.is-active {
  color: #717680;
  background: transparent;
}

.pb-section-duragua-story .pb-tabs-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 14px;
}

.pb-section-duragua-story .pb-tab-panel {
  display: block;
  color: #717680;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.pb-section-duragua-story .pb-element-textColumns {
  margin-top: 24px;
}

.pb-section-duragua-story .pb-text-columns {
  padding: 0 0 18px;
  border-bottom: 1px solid #e1e4e8;
  color: #717680;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.pb-section-duragua-story .pb-text-columns strong {
  font-weight: 700;
}

.pb-section-duragua-story .pb-video {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 248px;
  overflow: hidden;
}

.pb-section-duragua-story .pb-video video {
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
  background: #000000;
}

.pb-section-duragua-projects-heading {
  position: relative;
  z-index: 1;
}

.pb-section-duragua-projects-heading .pb-text {
  font-style: italic;
  text-transform: uppercase;
}

.pb-section-duragua-projects-heading .pb-heading {
  margin: 0;
  font-style: italic;
  text-shadow: 0 2px 0 rgb(255 255 255 / 10%);
}

.pb-section-duragua-projects-heading .pb-shape-bottom {
  z-index: 0;
}

.pb-section-duragua-projects-heading .pb-shape-bottom.pb-shape-arrow {
  z-index: 1;
}

.pb-product-category-tabs-variant-duragua {
  grid-template-columns: minmax(132px, 0.32fr) minmax(0, 4fr);
  --pb-product-category-card-min: 180px;
  --pb-product-category-card-max: 215px;
  gap: 24px;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-sidebar {
  padding-top: 0;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-title {
  margin: 0 0 18px;
  color: #707070;
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
  line-height: 0.95;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-nav {
  gap: 22px;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-nav button {
  font-size: 12px;
  font-weight: 700;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--pb-product-category-card-min, 180px)), 1fr));
  gap: 16px;
  justify-content: center;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-slider {
  gap: 10px;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-slider-track {
  gap: 16px;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-card {
  position: relative;
  border-color: #dcdcdc;
  box-shadow: none;
  min-height: calc(var(--pb-product-category-card-min, 180px) * 1.36);
}

.pb-product-category-tabs-show-badge.pb-product-category-tabs-variant-duragua .pb-product-category-card::before {
  content: "NEW";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #3c9a45;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-card-media {
  min-height: 150px;
  padding: 0;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-card-media img {
  padding: 10px 14px 6px;
  max-height: 100%;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-card-body {
  align-content: center;
  min-height: 0;
  padding: 8px 14px 16px;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-card h3 {
  display: block;
  overflow: visible;
  font-size: 12px;
  font-weight: 700;
}

.pb-product-category-tabs-variant-duragua .pb-product-category-card p {
  overflow: hidden;
  color: #a5a5a5;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-section-duragua-catalogos-title {
  overflow: hidden;
}

.pb-section-duragua-catalogos-title .pb-heading {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  text-transform: uppercase;
}

.pb-section-duragua-catalogos-title .pb-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 172px;
  height: 3px;
  transform: translateX(-50%);
  background: #13a46f;
}

.pb-section-duragua-catalogos-grid .pb-grid {
  justify-content: center;
}

.pb-section-duragua-catalogos-grid .pb-column {
  align-items: center;
}

.pb-section-duragua-catalogos-grid .pb-catalog-cover-link {
  width: min(100%, 166px);
}

.pb-section-duragua-catalogos-grid .pb-catalog-download.pb-catalog-poster img {
  border-radius: 13px;
  box-shadow: 0 12px 22px rgb(0 0 0 / 22%);
}

.pb-section-duragua-catalogos-grid .pb-catalog-download.pb-catalog-poster strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.14;
  text-shadow: 0 2px 0 rgb(0 0 0 / 12%);
}

.pb-list {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 22px;
}

.pb-list li::marker {
  color: #0d6efd;
}

.pb-text-columns {
  display: grid;
  grid-template-columns: repeat(var(--pb-text-columns-count, 3), minmax(0, 1fr));
  gap: 24px;
  color: inherit;
}

.pb-text-columns > * {
  min-width: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.pb-text-columns ul,
.pb-text-columns ol {
  padding-left: 18px;
}

.pb-text-columns strong {
  color: inherit;
  font-weight: var(--pb-text-columns-strong-weight, 700);
}

.pb-icon-list {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.pb-icon-list-horizontal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.pb-icon-list li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: var(--pb-icon-list-text-color, inherit);
  font: inherit;
  line-height: inherit;
}

.pb-icon-list a,
.pb-icon-list li > span:not(.pb-icon-list-icon) {
  min-width: 0;
  color: var(--pb-icon-list-text-color, inherit);
  text-decoration: var(--pb-icon-list-text-decoration, none);
}

.pb-icon-list-icon {
  display: inline-flex;
  width: var(--pb-icon-list-icon-size, 1.15em);
  height: var(--pb-icon-list-icon-size, 1.15em);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--pb-icon-list-icon-color, currentColor);
}

.pb-icon-list-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.pb-accordion {
  overflow: hidden;
  border: 1px solid #d7dce3;
  border-radius: 8px;
  background: #ffffff;
}

.pb-accordion details + details {
  border-top: 1px solid #e5e7eb;
}

.pb-accordion summary {
  cursor: pointer;
  font-weight: 800;
  padding: 16px 18px;
}

.pb-accordion p {
  margin: 0;
  padding: 0 18px 18px;
  line-height: 1.55;
}

.pb-tabs {
  display: grid;
  border: 1px solid #d7dce3;
  border-radius: 8px;
  background: #ffffff;
  color: #172033;
}

.pb-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.pb-tabs-nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 9px 12px;
  background: #ffffff;
  color: #172033;
  font-weight: 800;
  cursor: pointer;
}

.pb-tabs-nav button.is-active {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #ffffff;
}

.pb-tabs-nav button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.pb-tabs-panels {
  min-width: 0;
}

.pb-tab-panel {
  display: none;
  padding: 18px;
  line-height: 1.6;
}

.pb-tab-panel.is-active {
  display: block;
}

.pb-tabs-style-underline {
  border-color: transparent;
  background: transparent;
}

.pb-tabs-style-underline .pb-tabs-nav {
  gap: 22px;
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
}

.pb-tabs-style-underline .pb-tabs-nav button {
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0 0 10px;
  background: transparent;
}

.pb-tabs-style-underline .pb-tabs-nav button.is-active {
  border-color: #0d6efd;
  background: transparent;
  color: #0d6efd;
}

.pb-tabs-style-pills {
  border-color: transparent;
  background: transparent;
}

.pb-tabs-style-pills .pb-tabs-nav {
  gap: 8px;
  padding: 8px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
}

.pb-tabs-style-pills .pb-tabs-nav button {
  border: 0;
  border-radius: 999px;
}

.pb-tabs-style-minimal {
  border-color: transparent;
  background: transparent;
}

.pb-tabs-style-minimal .pb-tabs-nav {
  justify-content: center;
  border: 0;
  padding: 0 0 14px;
}

.pb-tabs-style-minimal .pb-tabs-nav button {
  border: 0;
  background: transparent;
  color: #475467;
}

.pb-tabs-style-minimal .pb-tabs-nav button.is-active {
  background: transparent;
  color: #0d6efd;
}

.pb-tabs-layout-vertical {
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
}

.pb-tabs-layout-vertical .pb-tabs-nav {
  align-content: start;
  align-items: stretch;
  flex-direction: column;
  border-right: 1px solid #e5e7eb;
  border-bottom: 0;
}

.pb-tabs-layout-vertical .pb-tabs-nav button {
  justify-content: flex-start;
}

.pb-tabs-layout-vertical.pb-tabs-style-underline .pb-tabs-nav button {
  border-right: 2px solid transparent;
  border-bottom: 0;
  padding: 10px 12px;
}

.pb-tabs-layout-vertical.pb-tabs-style-underline .pb-tabs-nav button.is-active {
  border-right-color: #0d6efd;
}

.pb-counter {
  display: grid;
  gap: 8px;
}

.pb-counter strong {
  color: currentColor;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
}

.pb-counter span {
  color: currentColor;
  font-weight: 800;
  opacity: 0.9;
}

.pb-progress {
  display: grid;
  gap: 10px;
}

.pb-progress > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: currentColor;
  font-weight: 800;
}

.pb-progress em {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: #e5e7eb;
}

.pb-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: currentColor;
}

.pb-testimonial,
.pb-pricing,
.pb-form {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 8%);
}

.pb-testimonial {
  margin: 0;
  padding: 24px;
}

.pb-testimonial p {
  margin: 0 0 18px;
  line-height: 1.65;
}

.pb-testimonial cite {
  display: grid;
  gap: 2px;
  font-style: normal;
}

.pb-testimonial cite span {
  color: #667085;
  font-size: 13px;
}

.pb-pricing {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.pb-pricing h3,
.pb-form h3,
.pb-product-grid h3 {
  margin: 0;
}

.pb-pricing > strong {
  color: #0d6efd;
  font-size: 34px;
  line-height: 1;
}

.pb-pricing ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.pb-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  position: relative;
}

.pb-form-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.pb-form-message {
  grid-column: 1 / -1;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  background: #f0fdf4;
  color: #047857;
  padding: 11px 13px;
  font-size: 14px;
  font-weight: 700;
}

.pb-form-message-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.pb-form label {
  display: grid;
  gap: 6px;
  color: #475467;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pb-form input,
.pb-form textarea {
  min-height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
}

.pb-form textarea {
  min-height: 128px;
  padding: 12px;
  resize: vertical;
}

.pb-map {
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #dbeafe;
  color: #0f172a;
  font-weight: 800;
}

.pb-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.pb-floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 12px;
  font-family: Montserrat, Arial, sans-serif;
}

.pb-floating-whatsapp-left {
  right: auto;
  left: 24px;
  justify-items: start;
}

.pb-wa-launcher,
.pb-wa-close {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.pb-wa-launcher {
  position: relative;
  display: inline-flex;
  min-width: 238px;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  isolation: isolate;
  overflow: visible;
  border-radius: 999px;
  padding: 12px 16px 12px 22px;
  background: linear-gradient(135deg, #25d366, #12b84e);
  color: #ffffff;
  box-shadow: 0 18px 40px rgb(18 184 78 / 34%);
  animation: pb-wa-attention 4.8s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pb-wa-launcher::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: linear-gradient(135deg, rgb(37 211 102 / 96%), rgb(18 184 78 / 94%)), var(--pb-wa-cover, none);
  background-position: center;
  background-size: cover;
  content: "";
}

.pb-wa-launcher::after {
  position: absolute;
  inset: -9px;
  z-index: -1;
  border: 2px solid rgb(37 211 102 / 38%);
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: pb-wa-pulse-ring 4.8s ease-out infinite;
}

.pb-wa-launcher:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 22px 48px rgb(18 184 78 / 42%);
}

.pb-wa-launcher-copy,
.pb-wa-launcher-icon {
  position: relative;
  z-index: 1;
}

.pb-wa-launcher-copy {
  display: grid;
  min-width: 0;
  text-align: left;
}

.pb-wa-launcher-copy small {
  color: #f0fff5;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.pb-wa-launcher-copy strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.pb-wa-launcher-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #25d366;
  box-shadow: inset 0 0 0 4px rgb(37 211 102 / 18%);
}

.pb-wa-launcher-icon svg,
.pb-wa-panel-icon svg,
.pb-wa-avatar svg,
.pb-wa-status svg {
  width: 1em;
  height: 1em;
  display: block;
}

.pb-wa-chatgpt-icon path:first-child {
  fill: currentColor;
}

.pb-wa-chatgpt-icon path:last-child {
  fill: #ffffff;
}

.pb-wa-panel-icon .pb-wa-chatgpt-icon path:first-child,
.pb-wa-avatar .pb-wa-chatgpt-icon path:first-child {
  fill: #ffffff;
}

.pb-wa-panel-icon .pb-wa-chatgpt-icon path:last-child,
.pb-wa-avatar .pb-wa-chatgpt-icon path:last-child {
  fill: #25d366;
}

.pb-wa-status .pb-wa-chatgpt-icon path:first-child {
  fill: currentColor;
}

.pb-wa-status .pb-wa-chatgpt-icon path:last-child {
  fill: #ffffff;
}

.pb-wa-launcher-icon svg {
  font-size: 29px;
}

.pb-wa-panel {
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgb(15 23 42 / 28%);
}

.pb-wa-panel[hidden] {
  display: none;
}

.pb-wa-panel-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, #25d366, #12b84e);
  color: #ffffff;
}

.pb-wa-panel-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 16%);
  color: #ffffff;
  font-size: 30px;
}

.pb-wa-panel-head strong {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.pb-wa-panel-head p {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.pb-wa-note {
  padding: 14px 20px;
  background: #ffffff;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 900;
}

.pb-wa-advisors {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
}

.pb-wa-advisor {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border-left: 3px solid #25d366;
  border-radius: 8px;
  padding: 10px 14px 10px 10px;
  background: #f1f5f9;
  color: #475467;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pb-wa-advisor:hover {
  transform: translateY(-2px);
  background: #edfdf3;
  box-shadow: 0 14px 28px rgb(15 23 42 / 10%);
}

.pb-wa-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0 0 7px rgb(37 211 102 / 14%);
  font-size: 29px;
}

.pb-wa-advisor-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.pb-wa-advisor strong {
  overflow: hidden;
  color: #526071;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-wa-advisor small {
  overflow: hidden;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-wa-status {
  color: #25d366;
  font-size: 18px;
}

.pb-wa-close {
  display: none;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 42px rgb(18 184 78 / 34%);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.pb-floating-whatsapp.is-open .pb-wa-launcher {
  display: none;
  animation: none;
}

.pb-floating-whatsapp.is-open .pb-wa-close {
  display: grid;
}

@keyframes pb-wa-attention {
  0%,
  62%,
  100% {
    transform: translateY(0) scale(1) rotate(0);
  }

  8% {
    transform: translateY(-3px) scale(1.035) rotate(0);
  }

  12% {
    transform: translateY(-1px) scale(1.02) rotate(-1.4deg);
  }

  16% {
    transform: translateY(-1px) scale(1.02) rotate(1.4deg);
  }

  22% {
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes pb-wa-pulse-ring {
  0%,
  66%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }

  8% {
    opacity: 0.62;
  }

  34% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@media (max-width: 640px) {
  .pb-floating-whatsapp,
  .pb-floating-whatsapp-left {
    right: 14px;
    left: 14px;
    bottom: 14px;
    justify-items: end;
  }

  .pb-wa-launcher {
    min-width: min(100%, 310px);
  }

  .pb-wa-panel {
    width: 100%;
  }
}

.pb-section-section-contactanos-original .pb-container {
  width: min(100% - 40px, 1180px);
}

.pb-section-section-contactanos-original .pb-column:first-child {
  display: grid;
  justify-items: center;
}

.pb-section-section-contactanos-original .pb-element-image {
  display: flex;
  justify-content: center;
  width: 100%;
}

.pb-section-section-contactanos-original .pb-image {
  display: block;
  object-fit: contain;
}

.pb-section-section-contactanos-original .pb-icon-list {
  width: min(100%, 540px);
  gap: 12px;
  margin: 0;
  color: #242424;
  --pb-icon-list-icon-color: #2f3a4a;
  --pb-icon-list-icon-size: 18px;
}

.pb-section-section-contactanos-original .pb-icon-list li {
  align-items: flex-start;
  gap: 12px;
  font-family: Hind, Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.pb-section-section-contactanos-original .pb-element-heading {
  margin-bottom: 18px;
}

.pb-section-section-contactanos-original .pb-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  padding: 0;
  background: transparent !important;
}

.pb-section-section-contactanos-original .pb-form h3:empty {
  display: none;
}

.pb-section-section-contactanos-original .pb-form label {
  gap: 7px;
  color: #262626;
  font-family: Hind, Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.pb-section-section-contactanos-original .pb-form label:nth-of-type(3),
.pb-section-section-contactanos-original .pb-form label:nth-of-type(4),
.pb-section-section-contactanos-original .pb-form label:nth-of-type(5),
.pb-section-section-contactanos-original .pb-form-field-textarea {
  grid-column: 1 / -1;
}

.pb-section-section-contactanos-original .pb-form input,
.pb-section-section-contactanos-original .pb-form textarea {
  width: 100%;
  min-height: 44px;
  border: 2px solid #cccccc;
  border-radius: 0;
  background: #ffffff;
  color: #444444;
  font-family: Hind, Montserrat, Arial, sans-serif;
  font-size: 14px;
}

.pb-section-section-contactanos-original .pb-form textarea {
  min-height: 132px;
}

.pb-section-section-contactanos-original .pb-form .pb-button {
  grid-column: 1 / -1;
  width: max-content;
  min-width: 118px;
  min-height: 42px;
  border: 1px solid #cccccc !important;
  border-radius: 0 !important;
  background: #dddddd !important;
  color: #666666 !important;
  box-shadow: none;
}

.pb-section-section-contactanos-mapa-original .pb-container,
.pb-section-section-contactanos-mapa-original .pb-column,
.pb-section-section-contactanos-mapa-original .pb-element-map {
  width: 100%;
  max-width: none;
}

.pb-section-section-contactanos-mapa-original .pb-map {
  min-height: 430px;
  border-radius: 0;
  background: #e5e7eb;
}

.pb-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pb-product-grid article {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 8%);
}

.pb-product-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pb-product-grid article > div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.pb-product-grid p {
  margin: 0;
  line-height: 1.5;
}

.pb-product-grid a {
  color: #0d6efd;
  font-weight: 800;
  text-decoration: none;
}

.pb-product-category-tabs {
  --pb-product-category-accent: #0aa95b;
  --pb-product-category-card-radius: 22px;
  --pb-product-category-card-aspect: 4 / 5;
  --pb-product-category-card-min: 180px;
  --pb-product-category-card-max: none;
  display: grid;
  grid-template-columns: minmax(170px, 0.76fr) minmax(0, 4fr);
  gap: var(--pb-product-category-gap, 22px);
  align-items: stretch;
  width: 100%;
}

.pb-product-category-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4px;
}

.pb-product-category-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 14px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pb-product-category-title {
  margin: 18px 0 10px;
  color: #4b5563;
  font-size: 26px;
  font-style: italic;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.pb-product-category-copy {
  margin: 0 0 20px;
  color: #475467;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.pb-product-category-nav {
  display: grid;
  gap: 16px;
  width: 100%;
}

.pb-product-category-nav button {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: #111827;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.pb-product-category-nav button span {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  border-radius: 999px;
  background: transparent;
}

.pb-product-category-nav button.is-active {
  color: var(--pb-product-category-accent);
  font-weight: 800;
}

.pb-product-category-nav button.is-active span {
  position: relative;
  background: var(--pb-product-category-accent);
}

.pb-product-category-nav button.is-active span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: inherit;
  background: #ffffff;
}

.pb-product-category-content {
  min-width: 0;
}

.pb-product-category-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed #cbd5e1;
  border-radius: var(--pb-product-category-card-radius);
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pb-product-category-panel {
  display: none;
}

.pb-product-category-panel.is-active {
  display: block;
}

.pb-product-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--pb-product-category-card-min)), 1fr));
  gap: 18px;
  justify-content: center;
}

.pb-product-category-slider {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: center;
}

.pb-product-category-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--pb-product-category-slide-width, 260px);
  gap: 18px;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.pb-product-category-slider-track::-webkit-scrollbar {
  display: none;
}

.pb-product-category-slider .pb-product-category-card {
  scroll-snap-align: start;
}

.pb-product-category-slider-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d7dce3;
  border-radius: 999px;
  background: #ffffff;
  color: #172033;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgb(15 23 42 / 10%);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.pb-product-category-slider-button:hover {
  transform: translateY(-1px);
  border-color: var(--pb-product-category-accent);
  color: var(--pb-product-category-accent);
}

.pb-product-category-panel-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pb-product-category-panel-actions .pb-button-outline {
  border-color: #d1d5db;
  background: #ffffff;
  color: #111827;
}

.pb-product-category-card {
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto;
  justify-self: center;
  width: 100%;
  max-width: var(--pb-product-category-card-max, none);
  aspect-ratio: var(--pb-product-category-card-aspect);
  overflow: hidden;
  min-height: calc(var(--pb-product-category-card-min, 180px) * 1.36);
  border: 1px solid #e5e7eb;
  border-radius: var(--pb-product-category-card-radius);
  background: #ffffff;
  color: #1f2933;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 30px rgb(15 23 42 / 7%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pb-product-category-card.is-hidden {
  display: none;
}

.pb-product-category-card:hover {
  border-color: #cbd5e1;
}

.pb-product-category-card-media {
  box-sizing: border-box;
  display: grid;
  min-height: 150px;
  align-self: stretch;
  overflow: hidden;
  place-items: center;
  padding: 0;
}

.pb-product-category-card-media img {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 14px 12px 6px;
  object-fit: contain;
}

.pb-product-category-card-body {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 0;
  overflow: visible;
  padding: 10px 16px 18px;
}

.pb-product-category-card h3 {
  display: block;
  overflow: visible;
  margin: 0;
  color: #1f2933;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.pb-product-category-card p {
  overflow: hidden;
  margin: 0;
  color: #9aa1ad;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: #0b1220;
  color: #ffffff;
}

.pb-callout-icon,
.pb-alert > span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 14%);
  color: currentColor;
}

.pb-callout-icon svg,
.pb-alert svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.pb-callout strong,
.pb-newsletter strong,
.pb-catalog-download strong,
.pb-team-member strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.pb-callout p,
.pb-alert p,
.pb-contact-info p,
.pb-newsletter p,
.pb-catalog-download p,
.pb-team-member p {
  margin: 6px 0 0;
  line-height: 1.55;
}

.pb-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
}

.pb-logo-grid span {
  display: grid;
  min-height: 96px;
  place-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.pb-logo-grid img {
  display: block;
  width: min(120px, 80%);
  max-height: 72px;
  object-fit: contain;
}

.pb-timeline {
  display: grid;
  gap: 0;
  color: #172033;
}

.pb-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 22px;
}

.pb-timeline article::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: -1px;
  left: 12px;
  width: 2px;
  background: currentColor;
  opacity: 0.24;
}

.pb-timeline article:last-child::before {
  display: none;
}

.pb-timeline article > span {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 2px currentColor;
}

.pb-timeline strong,
.pb-steps strong,
.pb-contact-info strong,
.pb-comparison strong {
  display: block;
  font-size: 17px;
}

.pb-timeline p,
.pb-steps p {
  margin: 6px 0 0;
  line-height: 1.55;
}

.pb-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pb-steps article {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 8%);
}

.pb-steps article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #0d6efd;
  color: #ffffff;
  font-weight: 900;
}

.pb-table-wrap {
  overflow: auto;
  border: 1px solid #d7dce3;
  border-radius: 8px;
  background: #ffffff;
}

.pb-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.pb-table th,
.pb-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.pb-table th {
  background: #f8fafc;
  color: #172033;
  font-size: 12px;
  text-transform: uppercase;
}

.pb-contact-info {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: #f8fafc;
}

.pb-contact-info h3 {
  margin: 0 0 6px;
}

.pb-contact-info p {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(15 23 42 / 10%);
}

.pb-contact-info p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pb-contact-info span {
  color: inherit;
  opacity: 0.82;
}

.pb-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.pb-social-icons a {
  --pb-social-color: currentColor;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--pb-social-color);
  border-radius: 999px;
  background: transparent;
  color: var(--pb-social-fg, var(--pb-social-color));
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.pb-social-icons a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgb(15 23 42 / 14%);
}

.pb-social-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 18%);
  color: currentColor;
}

.pb-social-icon svg {
  width: var(--pb-social-icon-size, 18px);
  height: var(--pb-social-icon-size, 18px);
  fill: currentColor;
}

.pb-social-icons em {
  font-style: normal;
}

.pb-social-icons-style-solid a {
  background: var(--pb-social-bg, var(--pb-social-color));
  color: var(--pb-social-fg, #ffffff);
}

.pb-social-icons-style-soft a {
  border-color: #e5e7eb;
  background: var(--pb-social-bg, #f8fafc);
  color: var(--pb-social-fg, var(--pb-social-color));
}

.pb-social-icons-style-outline a {
  background: var(--pb-social-bg, #ffffff);
  color: var(--pb-social-fg, var(--pb-social-color));
}

.pb-social-icons-style-minimal a {
  justify-content: center;
  width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  background: var(--pb-social-bg, var(--pb-social-color));
  color: var(--pb-social-fg, #ffffff);
}

.pb-social-icons-style-minimal em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.pb-social-icons-size-sm a {
  min-height: 38px;
  padding-inline: 10px;
  font-size: 12px;
}

.pb-social-icons-size-sm .pb-social-icon {
  width: 24px;
  height: 24px;
}

.pb-social-icons-size-lg a {
  min-height: 52px;
  padding-inline: 16px;
  font-size: 15px;
}

.pb-social-icons-size-lg .pb-social-icon {
  width: 32px;
  height: 32px;
}

.pb-social-icons-size-lg .pb-social-icon svg {
  width: var(--pb-social-icon-size, 20px);
  height: var(--pb-social-icon-size, 20px);
}

.pb-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: center;
  padding: 26px;
  border-radius: 8px;
}

.pb-newsletter label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.pb-newsletter input {
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
}

.pb-newsletter button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: #0d6efd;
  color: #ffffff;
  font: inherit;
  font-weight: 900;
}

.pb-comparison {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.pb-comparison-head,
.pb-comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pb-comparison-head {
  background: #0d6efd;
  color: #ffffff;
}

.pb-comparison-head strong,
.pb-comparison-row span {
  padding: 14px 16px;
}

.pb-comparison-row + .pb-comparison-row {
  border-top: 1px solid #e5e7eb;
}

.pb-comparison-row span + span,
.pb-comparison-head strong + strong {
  border-left: 1px solid rgb(15 23 42 / 12%);
}

.pb-team-member,
.pb-catalog-download,
.pb-alert {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 8%);
}

.pb-team-member {
  overflow: hidden;
}

.pb-team-member img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pb-team-member > div,
.pb-catalog-download > div {
  padding: 22px;
}

.pb-team-member span {
  display: block;
  margin-top: 4px;
  color: #0d6efd;
  font-weight: 800;
}

.pb-catalog-download {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
}

.pb-catalog-download img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.pb-catalog-download.pb-catalog-poster {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: start;
  gap: 12px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #111827;
  text-align: center;
  transform: translateY(var(--pb-catalog-offset-y, 0));
}

.pb-catalog-cover-link {
  display: block;
  width: min(100%, 224px);
  transition: transform 180ms ease, filter 180ms ease;
}

.pb-catalog-download.pb-catalog-wide .pb-catalog-cover-link,
.pb-catalog-download.pb-catalog-wide strong,
.pb-catalog-download.pb-catalog-wide p {
  width: min(100%, 310px);
}

.pb-catalog-cover-link:hover {
  transform: translateY(-4px) scale(1.015);
  filter: drop-shadow(0 16px 24px rgb(15 23 42 / 18%));
}

.pb-catalog-download.pb-catalog-poster img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 18px 28px rgb(15 23 42 / 18%);
}

.pb-catalog-download.pb-catalog-poster strong {
  width: min(100%, 240px);
  margin: 0 auto;
  color: #161616;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.pb-catalog-download.pb-catalog-poster p {
  width: min(100%, 240px);
  margin: -4px auto 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
}

.pb-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.pb-marquee {
  overflow: hidden;
  padding: 14px 0;
  background: #053fba;
  color: #ffffff;
}

.pb-marquee > div {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: pb-marquee 24s linear infinite;
}

.pb-marquee span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes pb-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.pb-hover-none,
.pb-hover-lift,
.pb-hover-scale,
.pb-hover-shadow,
.pb-hover-glow,
.pb-hover-tilt,
.pb-hover-float,
.pb-hover-border,
.pb-hover-image-zoom,
.pb-hover-dim {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease, opacity 220ms ease;
  will-change: transform;
}

.pb-hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgb(15 23 42 / 12%);
}

.pb-hover-scale:hover {
  transform: scale(1.03);
}

.pb-hover-shadow:hover {
  box-shadow: 0 22px 44px rgb(15 23 42 / 18%);
}

.pb-hover-glow:hover {
  filter: drop-shadow(0 0 20px rgb(13 110 253 / 38%));
}

.pb-hover-tilt:hover {
  transform: perspective(900px) rotateX(1.4deg) rotateY(-2.2deg) translateY(-3px);
  box-shadow: 0 18px 34px rgb(15 23 42 / 14%);
}

.pb-hover-float:hover {
  transform: translateY(-8px);
}

.pb-hover-border:hover {
  border-color: var(--pb-product-category-accent, #0d6efd);
  box-shadow: 0 0 0 3px rgb(13 110 253 / 12%);
}

.pb-hover-image-zoom,
.pb-element-image.pb-hover-image-zoom,
.builder-image-frame.pb-hover-image-zoom,
.pb-hover-image-zoom .pb-linked-image {
  overflow: hidden;
  border-radius: inherit;
}

.pb-hover-image-zoom img,
.pb-hover-image-zoom .pb-image {
  transition: transform var(--pb-image-hover-duration, 320ms) ease, filter var(--pb-image-hover-duration, 320ms) ease;
  will-change: transform;
}

.pb-hover-image-zoom:hover img,
.pb-hover-image-zoom:hover .pb-image {
  transform: scale(var(--pb-image-hover-scale, 1.06));
}

.pb-hover-dim:hover {
  filter: brightness(0.92);
}

[data-pb-effect] {
  opacity: 0;
  transform: var(--pb-effect-transform, translateY(22px));
  filter: var(--pb-effect-filter, none);
  transition:
    opacity var(--pb-effect-duration, 650ms) var(--pb-effect-ease, cubic-bezier(0.2, 0.75, 0.25, 1)),
    transform var(--pb-effect-duration, 650ms) var(--pb-effect-ease, cubic-bezier(0.2, 0.75, 0.25, 1)),
    filter var(--pb-effect-duration, 650ms) ease;
  transition-delay: var(--pb-effect-delay, 0ms);
  will-change: opacity, transform, filter;
}

[data-pb-effect].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.pb-effect-none,
.pb-effect-fade {
  --pb-effect-transform: none;
}

.pb-effect-fade-up {
  --pb-effect-transform: translateY(28px);
}

.pb-effect-fade-down {
  --pb-effect-transform: translateY(-28px);
}

.pb-effect-slide-left {
  --pb-effect-transform: translateX(34px);
}

.pb-effect-slide-right {
  --pb-effect-transform: translateX(-34px);
}

.pb-effect-zoom {
  --pb-effect-transform: scale(0.96);
}

.pb-effect-pop {
  --pb-effect-transform: scale(0.92);
  --pb-effect-ease: cubic-bezier(0.2, 1.35, 0.32, 1);
}

.pb-effect-blur-up {
  --pb-effect-transform: translateY(24px);
  --pb-effect-filter: blur(8px);
}

.pb-effect-reveal {
  --pb-effect-transform: translateY(18px) scaleY(0.98);
  --pb-effect-filter: saturate(0.85);
}

.pb-effect-flip-up {
  --pb-effect-transform: perspective(900px) rotateX(9deg) translateY(26px);
}

.pb-effect-parallax {
  background-attachment: fixed;
}

@media (prefers-reduced-motion: reduce) {
  [data-pb-effect],
  .pb-hover-none,
  .pb-hover-lift,
  .pb-hover-scale,
  .pb-hover-shadow,
  .pb-hover-glow,
  .pb-hover-tilt,
  .pb-hover-float,
  .pb-hover-border,
  .pb-hover-image-zoom,
  .pb-hover-dim,
  .pb-button,
  .pb-section-bg-effect,
  .pb-banner-slide-bg,
  .pb-wa-launcher {
    animation: none !important;
    transition: none !important;
  }

  [data-pb-effect] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .pb-section-bg-effect,
  .pb-banner-slide-bg {
    transform: none !important;
  }
}

.pb-section-productos-page-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgb(13 110 253 / 26%), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1f46 54%, #05080f 100%) !important;
}

.pb-section-productos-page-hero .pb-grid {
  position: relative;
  z-index: 1;
}

.pb-section-productos-page-hero .pb-badge {
  width: fit-content;
}

.pb-section-productos-page-hero .pb-icon-list-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.pb-section-productos-page-hero .pb-icon-list li {
  align-items: center;
}

.pb-section-productos-page-hero .pb-icon-list-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgb(10 169 91 / 16%);
}

.pb-section-productos-page-hero .pb-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pb-section-productos-page-hero .pb-product-grid article {
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 18px;
  background: rgb(255 255 255 / 8%);
  box-shadow: 0 24px 44px rgb(0 0 0 / 28%);
  backdrop-filter: blur(10px);
}

.pb-section-productos-page-hero .pb-product-grid img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.pb-section-productos-page-hero .pb-product-grid h3 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.pb-section-productos-page-hero .pb-product-grid p {
  color: #b8c7df;
  font-size: 12px;
  font-weight: 700;
}

.pb-section-productos-page-hero .pb-product-grid a {
  color: #58d68d;
}

.pb-section-productos-page-stats .pb-counter {
  height: 100%;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 34px rgb(15 23 42 / 8%);
}

.pb-section-productos-page-stats .pb-counter strong {
  font-size: clamp(36px, 4vw, 56px);
}

.pb-section-productos-page-familias .pb-badge {
  width: fit-content;
  margin: 0 auto;
}

.pb-section-productos-page-familias .pb-product-grid article {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 42px rgb(15 23 42 / 10%);
}

.pb-section-productos-page-familias .pb-product-grid img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 20px;
  background: #ffffff;
}

.pb-section-productos-page-familias .pb-product-grid h3 {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.pb-section-productos-page-catalogo .pb-product-category-tabs {
  grid-template-columns: minmax(235px, 0.8fr) minmax(0, 3.6fr);
  align-items: start;
}

.pb-section-productos-page-catalogo .pb-product-category-sidebar {
  position: sticky;
  top: 96px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgb(15 23 42 / 8%);
}

.pb-section-productos-page-catalogo .pb-product-category-eyebrow {
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.pb-section-productos-page-catalogo .pb-product-category-title {
  margin-top: 16px;
  color: #111827;
  font-size: 30px;
  line-height: 1.05;
}

.pb-section-productos-page-catalogo .pb-product-category-copy {
  color: #475467;
  font-size: 13px;
}

.pb-section-productos-page-catalogo .pb-product-category-nav {
  max-height: 620px;
  overflow-y: auto;
  padding-right: 4px;
  gap: 10px;
}

.pb-section-productos-page-catalogo .pb-product-category-nav button {
  min-height: 38px;
  padding: 7px 0;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
}

.pb-section-productos-page-catalogo .pb-product-category-content {
  min-width: 0;
}

.pb-section-productos-page-catalogo .pb-product-category-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--pb-product-category-card-min, 220px)), 1fr));
  gap: 22px;
}

.pb-section-productos-page-catalogo .pb-product-category-card {
  max-width: var(--pb-product-category-card-max, 260px);
  border-color: #e5e7eb;
  border-radius: var(--pb-product-category-card-radius, 18px);
  box-shadow: 0 18px 36px rgb(15 23 42 / 8%);
}

.pb-section-productos-page-catalogo .pb-product-category-card-media {
  min-height: 200px;
  padding: 16px 16px 0;
  background: #ffffff;
}

.pb-section-productos-page-catalogo .pb-product-category-card-media img {
  padding: 0;
  object-fit: contain;
}

.pb-section-productos-page-catalogo .pb-product-category-card-body {
  padding: 14px 16px 18px;
}

.pb-section-productos-page-catalogo .pb-product-category-card h3 {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.22;
}

.pb-section-productos-page-catalogo .pb-product-category-card p {
  color: #8a94a6;
  font-size: 11px;
  font-weight: 800;
}

.pb-section-productos-page-catalogo .pb-product-category-panel-actions {
  margin-top: 34px;
}

.pb-section-productos-page-asesoria .pb-callout {
  border: 0;
  box-shadow: 0 24px 44px rgb(0 0 0 / 24%);
}

.pb-section-services-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.pb-section-services-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 78% 48%, rgb(13 110 253 / 18%), transparent 34%),
    linear-gradient(90deg, rgb(0 0 0 / 74%), rgb(3 12 24 / 46%), rgb(0 0 0 / 58%));
}

.pb-section-services-hero .pb-grid,
.pb-section-services-access-intro .pb-grid,
.pb-section-services-termofusion .pb-grid,
.pb-section-services-electrofusion .pb-grid {
  align-items: center;
}

.pb-section-services-hero .pb-heading {
  margin-right: auto;
  margin-left: auto;
  text-shadow: 0 10px 26px rgb(0 0 0 / 42%);
}

.pb-section-services-access-intro .pb-image {
  display: block;
  height: auto;
  object-fit: contain;
}

.pb-section-services-access-intro .pb-text {
  text-transform: uppercase;
}

.pb-section-services-access-intro .pb-heading {
  max-width: 500px;
}

.pb-section-services-access-cards .pb-icon-box {
  height: 100%;
}

.pb-section-services-access-cards .pb-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 6px;
  color: #0d6efd;
  background: #eef6ff;
}

.pb-section-services-access-cards .pb-column:nth-child(odd) .pb-icon {
  color: #0bb361;
  background: #effaf4;
}

.pb-section-services-access-cards .pb-icon svg {
  width: 28px;
  height: 28px;
}

.pb-section-services-access-cards .pb-icon-box strong {
  color: #071426;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.16;
}

.pb-section-services-access-cards .pb-icon-box p {
  color: #526176;
  font-size: 14px;
}

.pb-section-services-quote-cta {
  position: relative;
  overflow: hidden;
}

.pb-section-services-quote-cta::after {
  position: absolute;
  right: -96px;
  bottom: -126px;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  content: "";
  background: rgb(11 179 97 / 24%);
}

.pb-section-services-quote-cta .pb-grid {
  position: relative;
  z-index: 1;
}

.pb-section-services-quote-cta .pb-button,
.pb-section-services-termofusion .pb-button,
.pb-section-services-electrofusion .pb-button,
.pb-section-services-contact-direct .pb-button {
  min-height: 48px;
  padding: 14px 28px;
  border-width: 2px;
  border-style: solid;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.pb-section-services-termofusion .pb-image,
.pb-section-services-electrofusion .pb-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.pb-section-services-termofusion .pb-gallery,
.pb-section-services-electrofusion .pb-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pb-section-services-termofusion .pb-gallery img,
.pb-section-services-electrofusion .pb-gallery img {
  height: 116px;
  border-radius: 12px;
  object-fit: cover;
}

.pb-section-services-termofusion .pb-icon-list,
.pb-section-services-electrofusion .pb-icon-list {
  font-weight: 800;
}

.pb-section-services-termofusion .pb-icon-list-icon,
.pb-section-services-electrofusion .pb-icon-list-icon {
  color: #7d6bdc;
}

.pb-section-services-contact-direct .pb-divider {
  width: 100%;
}

.pb-section-services-contact-direct .pb-button {
  background: #0bb361;
  border-color: #0bb361;
  color: #ffffff;
}

@media (max-width: 900px) {
  .pb-section-services-hero {
    min-height: 270px !important;
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .pb-section-services-hero .pb-heading {
    font-size: clamp(30px, 8vw, 42px) !important;
  }

  .pb-section-services-access-intro .pb-grid,
  .pb-section-services-termofusion .pb-grid,
  .pb-section-services-electrofusion .pb-grid {
    grid-template-columns: 1fr !important;
  }

  .pb-section-services-access-intro .pb-heading,
  .pb-section-services-access-intro .pb-text,
  .pb-section-services-termofusion .pb-heading,
  .pb-section-services-termofusion .pb-text,
  .pb-section-services-electrofusion .pb-heading,
  .pb-section-services-electrofusion .pb-text {
    text-align: center !important;
  }

  .pb-section-services-access-intro .pb-heading {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 44px) !important;
  }

  .pb-section-services-quote-cta .pb-grid,
  .pb-section-services-access-cards .pb-grid {
    grid-template-columns: 1fr !important;
  }

  .pb-section-services-quote-cta .pb-heading,
  .pb-section-services-quote-cta .pb-text,
  .pb-section-services-quote-cta .pb-button-wrap {
    text-align: center !important;
  }
}

@media (max-width: 900px) {
  .pb-section-productos-page-hero .pb-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pb-section-productos-page-catalogo .pb-product-category-tabs {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-section-productos-page-catalogo .pb-product-category-sidebar {
    position: static;
  }

  .pb-section-productos-page-catalogo .pb-product-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }
}

@media (max-width: 640px) {
  .pb-section-productos-page-hero .pb-product-grid,
  .pb-section-productos-page-catalogo .pb-product-category-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-section-productos-page-catalogo .pb-product-category-card {
    max-width: 100%;
  }
}

@media (max-width: 1300px) {
  .pb-site-nav {
    grid-template-columns: 190px minmax(0, 1fr) auto 180px;
    gap: 10px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .pb-site-logo img {
    width: min(184px, 100%);
  }

  .pb-site-nav nav {
    gap: 14px;
  }

  .pb-site-search input[type="search"] {
    padding-left: 14px;
    font-size: 12px;
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--pb-product-category-card-min, 180px)), 1fr));
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-card-media {
    min-height: 150px;
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-card-media img {
    max-height: 100%;
  }
}

@media (max-width: 900px) {
  .pb-section-home-electrofusion-lesso-showcase .pb-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 34px !important;
  }

  .pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(2) {
    order: -1;
  }

  .pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(1) .pb-element-image:first-child .pb-image,
  .pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(3) .pb-element-image:first-child .pb-image,
  .pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(2) .pb-element-image:last-child .pb-image {
    width: min(306px, 100%) !important;
  }

  .pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(1) .pb-element-image:nth-child(2),
  .pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(3) .pb-element-image:nth-child(2) {
    margin-top: 26px !important;
  }

  .pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(1) .pb-text,
  .pb-section-home-electrofusion-lesso-showcase .pb-column:nth-child(3) .pb-text {
    white-space: normal;
  }

  .pb-section.pb-section-home-accesorios-maquinas {
    padding-top: 56px !important;
    padding-bottom: 58px !important;
  }

  .pb-section-home-accesorios-maquinas .pb-container {
    width: min(100% - 48px, 1080px);
  }

  .pb-section-home-accesorios-maquinas .pb-image {
    margin-top: -18px !important;
    border-radius: 32px !important;
  }

  .pb-section.pb-section-home-termofusoras-heading-band {
    padding-top: 42px !important;
    padding-bottom: 52px !important;
  }

  .pb-section-home-termofusoras-heading-band .pb-heading {
    font-size: 42px !important;
    line-height: 0.95 !important;
  }

  .pb-tabs-layout-vertical {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-tabs-layout-vertical .pb-tabs-nav {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .pb-site-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }

  .pb-site-nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
    text-align: center;
  }

  .pb-site-logo {
    display: grid;
    justify-items: center;
  }

  .pb-site-nav nav {
    gap: 14px;
  }

  .pb-site-quote {
    justify-self: center;
  }

  .pb-site-search {
    width: min(100%, 340px);
    justify-self: center;
  }

  .pb-site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-section {
    min-height: auto !important;
    padding-top: 58px !important;
    padding-bottom: 58px !important;
    background-attachment: scroll;
  }

  .pb-container {
    width: min(100% - 36px, 760px);
  }

  .pb-grid-3,
  .pb-grid-4,
  .pb-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .pb-grid {
    gap: 28px !important;
    align-items: center !important;
  }

  .pb-heading {
    font-size: clamp(34px, 6vw, 48px) !important;
    line-height: 1.02 !important;
  }

  .pb-text {
    font-size: clamp(15px, 2.6vw, 18px) !important;
    line-height: 1.55 !important;
  }

  .pb-image {
    width: 100% !important;
    max-width: 100%;
  }

  .pb-section.pb-section-home-compression-pp-banner {
    min-height: 180px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .pb-section-home-compression-pp-banner .pb-container,
  .pb-section-home-compression-pp-banner .pb-grid,
  .pb-section-home-compression-pp-banner .pb-column {
    width: 100% !important;
    min-height: inherit;
  }

  .pb-section-home-compression-pp-banner .pb-element-image,
  .pb-section-home-compression-pp-banner .builder-element-image {
    left: 50%;
    width: 1000px;
    transform: translateX(-50%) !important;
  }

  .pb-section-home-mas-catalogos-aqui {
    background-size: 560px auto !important;
    background-position: center top !important;
  }

  .pb-section-home-mas-catalogos-aqui .pb-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .pb-section-home-mas-catalogos-aqui .pb-column:first-child {
    min-height: 220px;
  }

  .pb-section-home-mas-catalogos-aqui .pb-column:first-child .pb-element-image {
    width: min(720px, 100%) !important;
    margin: -70px auto -30px !important;
  }

  .pb-section-home-mas-catalogos-aqui .pb-column:last-child {
    justify-content: center;
    transform: none;
    text-align: center;
  }

  .pb-banner-slider {
    min-height: 620px !important;
  }

  .pb-banner-slide-inner {
    grid-template-columns: minmax(0, 1fr);
    width: min(100% - 44px, 760px);
    gap: 24px;
    padding: 42px 0 66px;
  }

  .pb-banner-layout-content-left .pb-banner-slide-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-banner-layout-content-left .pb-banner-media,
  .pb-banner-layout-content-left .pb-banner-content {
    order: initial;
    justify-self: stretch;
  }

  .pb-banner-media {
    justify-self: center;
  }

  .pb-banner-media img,
  .pb-banner-media video {
    max-height: 330px;
  }

  .pb-banner-content {
    justify-self: center;
    max-width: 520px !important;
  }

  .pb-banner-title {
    font-size: clamp(42px, 8vw, 58px);
  }

  .pb-button-wrap {
    text-align: left !important;
  }

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

  .pb-section-home-lesso-stock-gallery .pb-container {
    width: 100%;
  }

  .pb-section.pb-section-home-lesso-stock-gallery {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .pb-section-home-lesso-stock-gallery .pb-grid {
    gap: 0 !important;
  }

  .pb-section-home-lesso-stock-gallery .pb-gallery {
    display: flex;
    gap: 5px !important;
    overflow: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .pb-section-home-lesso-stock-gallery .pb-gallery img {
    flex: 0 0 min(420px, 82vw);
    width: min(420px, 82vw);
    height: min(420px, 82vw);
    min-height: 0;
    scroll-snap-align: center;
  }

  .pb-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pb-logo-grid,
  .pb-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pb-newsletter {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-slide-content {
    width: min(620px, calc(100% - 42px));
    margin-left: 24px;
  }

  .pb-section-home-proyecto-empieza-aqui::before {
    bottom: 64px;
    width: min(86vw, 720px);
    height: 210px;
  }

  .pb-section-home-proyecto-empieza-aqui .pb-image {
    width: min(100%, 720px) !important;
    margin-top: 30px !important;
  }

  .pb-section-home-beneficios-original .pb-grid {
    align-items: stretch !important;
  }

  .pb-section-home-redes-original .pb-column {
    flex-direction: column;
  }

  .pb-section-home-fiabilidad-seguridad .pb-grid,
  .pb-section-home-certificacion-internacional .pb-grid,
  .pb-section-home-ferias-reconocidas .pb-grid,
  .pb-section-duragua-ferias-reconocidas .pb-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .pb-section-home-certificacion-internacional .pb-image,
  .pb-section-home-ferias-reconocidas .pb-image,
  .pb-section-duragua-ferias-reconocidas .pb-image {
    width: min(100%, 560px) !important;
  }

  .pb-section-home-termofusoras-digitales .pb-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .pb-section-duragua-benefits-strip .pb-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    border-right: 0;
    border-left: 0;
  }

  .pb-section-duragua-benefits-strip .pb-column {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    text-align: center;
  }

  .pb-section-duragua-benefits-strip .pb-column:last-child {
    border-bottom: 0;
  }

  .pb-section-duragua-benefits-strip .pb-heading,
  .pb-section-duragua-benefits-strip .pb-text {
    text-align: center !important;
  }

  .pb-section-duragua-story .pb-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .pb-section-duragua-story .pb-column:first-child,
  .pb-section-duragua-story .pb-column:last-child {
    justify-self: center;
    max-width: 640px;
  }

  .pb-section-duragua-story .pb-tabs-nav,
  .pb-section-duragua-story .pb-tabs-panels {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .pb-section-duragua-story .pb-text-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pb-product-category-tabs-variant-duragua {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-sidebar {
    align-items: center;
    text-align: center;
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--pb-product-category-card-min, 180px)), 1fr));
  }

  .pb-product-category-tabs {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-product-category-sidebar {
    align-items: center;
    text-align: center;
  }

  .pb-product-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .pb-product-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--pb-product-category-card-min)), 1fr));
  }

  .pb-product-category-slider-track {
    grid-auto-columns: minmax(220px, calc(50% - 9px));
  }

  .pb-section-home-novedades-original .pb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .pb-section.pb-section-home-compression-pp-banner {
    min-height: 112px !important;
  }

  .pb-section-home-compression-pp-banner .pb-element-image,
  .pb-section-home-compression-pp-banner .builder-element-image {
    width: 620px;
  }

  .pb-section-home-mas-catalogos-aqui .pb-column:last-child {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .pb-section-home-mas-catalogos-aqui .pb-element-badge,
  .pb-section-home-mas-catalogos-aqui .pb-element-heading {
    grid-column: auto;
  }

  .pb-site-topbar {
    font-size: 13px;
  }

  .pb-site-socials {
    gap: 7px;
  }

  .pb-site-socials a {
    width: 30px;
    height: 30px;
  }

  .pb-site-socials svg {
    width: 15px;
    height: 15px;
  }

  .pb-site-nav nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .pb-site-nav nav a {
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
  }

  .pb-site-quote {
    width: 100%;
  }

  .pb-site-search {
    display: none;
  }

  .pb-section-duragua-brand-hero {
    min-height: 214px !important;
  }

  .pb-section-duragua-brand-hero .pb-image {
    width: min(76vw, 248px) !important;
  }

  .pb-section-duragua-story .pb-heading {
    text-align: left !important;
  }

  .pb-section-duragua-story .pb-tabs-panels {
    display: none;
  }

  .pb-section-duragua-story .pb-tabs-nav {
    border-bottom: 1px solid #e5e7eb;
  }

  .pb-section-duragua-story .pb-tabs-nav button {
    padding-bottom: 8px;
    text-align: center;
  }

  .pb-section-duragua-story .pb-text-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-title {
    font-size: 24px !important;
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-card {
    min-height: calc(var(--pb-product-category-card-min, 180px) * 1.36);
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-card-media {
    min-height: 150px;
  }

  .pb-product-category-tabs-variant-duragua .pb-product-category-card-media img {
    max-height: 100%;
  }

  .pb-section-duragua-catalogos-title {
    padding-top: 94px !important;
  }

  .pb-section-duragua-catalogos-grid .pb-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 220px;
    margin: 0 auto;
  }

  .pb-section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .pb-container {
    width: min(100% - 28px, 1220px);
  }

  .pb-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: start !important;
  }

  .pb-grid-2,
  .pb-grid-3,
  .pb-grid-4,
  .pb-grid-5,
  .pb-grid-sidebar-left,
  .pb-grid-sidebar-right {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .pb-heading {
    font-size: clamp(28px, 11vw, 42px) !important;
    line-height: 1.03 !important;
  }

  .pb-text {
    font-size: 15px !important;
  }

  .pb-button-wrap {
    margin-top: 14px;
    text-align: center !important;
  }

  .pb-button {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
  }

  .pb-slide-content {
    margin-left: 22px;
  }

  .pb-slider {
    min-height: 420px !important;
  }

  .pb-banner-slider {
    min-height: 660px !important;
  }

  .pb-banner-slide {
    background-position: 28% bottom;
  }

  .pb-banner-slide-inner {
    width: min(100% - 28px, 500px);
    padding: 36px 0 72px;
    gap: 18px;
  }

  .pb-banner-media img,
  .pb-banner-media video {
    max-height: 250px;
  }

  .pb-banner-title {
    margin-bottom: 14px;
    font-size: clamp(38px, 12vw, 48px);
    line-height: 0.92;
  }

  .pb-banner-highlight,
  .pb-banner-text,
  .pb-banner-list {
    font-size: 14px;
  }

  .pb-banner-list {
    margin-bottom: 18px;
  }

  .pb-banner-slider .pb-button {
    width: auto;
    min-width: 120px;
  }

  .pb-section-home-proyecto-empieza-aqui::before {
    bottom: 54px;
    width: min(94vw, 430px);
    height: 150px;
  }

  .pb-section-home-proyecto-empieza-aqui .pb-heading {
    font-size: clamp(32px, 10vw, 42px) !important;
  }

  .pb-section-home-proyecto-empieza-aqui .pb-text {
    font-size: 13px !important;
  }

  .pb-section-home-proyecto-empieza-aqui .pb-image {
    width: min(100%, 430px) !important;
    margin-top: 24px !important;
  }

  .pb-section-home-beneficios-original .pb-icon-box {
    padding: 18px 20px;
  }

  .pb-section-home-redes-original .pb-social-icons .pb-social-icon {
    width: 44px;
    height: 44px;
  }

  .pb-section-home-fiabilidad-seguridad .pb-heading,
  .pb-section-home-certificacion-internacional .pb-heading,
  .pb-section-home-ferias-reconocidas .pb-heading,
  .pb-section-duragua-ferias-reconocidas .pb-heading,
  .pb-section-home-novedades-original .pb-heading,
  .pb-section-home-mas-catalogos-aqui .pb-heading,
  .pb-section-home-galeria-original .pb-heading {
    text-align: center !important;
  }

  .pb-section-home-fiabilidad-seguridad .pb-badge,
  .pb-section-home-certificacion-internacional .pb-badge,
  .pb-section-home-ferias-reconocidas .pb-badge,
  .pb-section-duragua-ferias-reconocidas .pb-badge,
  .pb-section-home-termofusoras-digitales .pb-badge {
    justify-self: center;
  }

  .pb-section-home-fiabilidad-seguridad .pb-text,
  .pb-section-home-certificacion-internacional .pb-text,
  .pb-section-home-ferias-reconocidas .pb-text,
  .pb-section-duragua-ferias-reconocidas .pb-text,
  .pb-section-home-termofusoras-digitales .pb-text {
    text-align: center !important;
  }

  .pb-section-home-accesorios-maquinas .pb-image {
    margin-top: 0 !important;
    border-radius: 18px !important;
  }

  .pb-section-home-termofusoras-heading-band {
    padding-top: 34px !important;
    padding-bottom: 42px !important;
  }

  .pb-section-home-termofusoras-heading-band .pb-text {
    font-size: 11px !important;
    word-spacing: 2px;
  }

  .pb-section-home-termofusoras-heading-band .pb-heading {
    font-size: 31px !important;
    line-height: 1 !important;
  }

  .pb-section-home-termofusoras-digitales .pb-grid,
  .pb-section-home-novedades-original .pb-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .pb-section-home-termofusoras-digitales .pb-card img {
    height: 230px;
  }

  .pb-section-home-galeria-original .pb-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 190px;
  }

  .pb-section-home-galeria-original .pb-gallery img {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .pb-section-home-galeria-original .pb-gallery img:nth-child(1),
  .pb-section-home-galeria-original .pb-gallery img:nth-child(4),
  .pb-section-home-galeria-original .pb-gallery img:nth-child(9) {
    grid-column: span 2 !important;
    min-height: 290px;
  }

  .pb-section-home-galeria-original .pb-button {
    width: auto;
    min-height: 0;
    padding: 0;
  }

  .pb-slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .pb-slider-prev {
    left: 8px;
  }

  .pb-slider-next {
    right: 8px;
  }

  .pb-slide-content h3 {
    font-size: clamp(30px, 11vw, 44px);
  }

  .pb-slide-content p {
    font-size: 15px;
  }

  .pb-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-gallery-lightbox {
    padding: 22px;
  }

  .pb-gallery-lightbox button {
    width: 40px;
    height: 40px;
  }

  .pb-gallery-lightbox-close {
    top: 14px;
    right: 14px;
  }

  .pb-gallery-lightbox-prev {
    left: 12px;
  }

  .pb-gallery-lightbox-next {
    right: 12px;
  }

  .pb-pdf-book {
    min-height: 520px;
    height: min(620px, 86vh) !important;
  }

  .pb-pdf-book-stage {
    padding: 34px 54px 76px;
  }

  .pb-pdf-book-page,
  .pb-pdf-book-pages.is-cover .pb-pdf-book-page {
    max-width: min(78vw, 360px);
    max-height: 68vh;
  }

  .pb-pdf-book-prev {
    left: 4px;
  }

  .pb-pdf-book-next {
    right: 4px;
  }

  .pb-pdf-book-arrow {
    width: 46px;
    height: 46px;
  }

  .pb-pdf-book-arrow::before {
    font-size: 42px;
    line-height: .76;
  }

  .pb-pdf-book-toolbar {
    max-width: calc(100% - 24px);
    overflow-x: auto;
  }

  .pb-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-product-category-title {
    font-size: 24px;
  }

  .pb-product-category-nav,
  .pb-product-category-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-product-category-card {
    min-height: calc(var(--pb-product-category-card-min, 180px) * 1.36);
  }

  .pb-product-category-slider {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 8px;
  }

  .pb-product-category-slider-track {
    grid-auto-columns: minmax(230px, 86%);
  }

  .pb-product-category-slider-button {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .pb-product-category-card-media {
    min-height: 150px;
  }

  .pb-callout,
  .pb-catalog-download,
  .pb-alert {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-callout {
    text-align: center;
    justify-items: center;
  }

  .pb-strategic-allies {
    padding: 42px 18px 52px;
  }

  .pb-allies-carousel {
    grid-template-columns: var(--pb-allies-arrow-size, 20px) minmax(0, 1fr) var(--pb-allies-arrow-size, 20px);
    gap: var(--pb-allies-arrow-gap, 8px);
  }

  .pb-allies-carousel.pb-allies-no-arrows {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-allies-slide {
    padding: 0 8px;
  }

  .pb-allies-slide img {
    max-width: 126px;
    max-height: 58px;
  }

  .pb-footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding: 64px 24px 58px;
    text-align: center;
  }

  .pb-footer-contact {
    justify-items: center;
  }

  .pb-footer-line {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 8px;
    max-width: 420px;
  }

  .pb-logo-grid,
  .pb-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-newsletter label,
  .pb-comparison-head,
  .pb-comparison-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .pb-comparison-row span + span,
  .pb-comparison-head strong + strong {
    border-left: 0;
    border-top: 1px solid rgb(15 23 42 / 12%);
  }
}

/* Responsive safety layer for generated pages. Desktop styles remain unchanged. */
@media (max-width: 900px) {
  .pb-section {
    overflow-x: clip;
  }

  .pb-container,
  .pb-grid,
  .pb-column,
  .pb-element,
  .pb-linked-image,
  .builder-image-frame,
  .pb-video,
  .pb-slider,
  .pb-banner-slider,
  .pb-gallery-slider,
  .pb-product-category-tabs {
    max-width: 100%;
    min-width: 0;
  }

  .pb-section:has(.pb-video) {
    min-height: auto !important;
  }

  .pb-video {
    display: block;
    width: min(100%, 720px) !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    margin-inline: auto;
    overflow: hidden;
  }

  .pb-video iframe,
  .pb-video video {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
  }

  .pb-slider:not(.pb-banner-slider) {
    min-height: clamp(320px, 58vw, 460px) !important;
    height: auto !important;
  }

  .pb-banner-slider {
    min-height: min(620px, 75vw) !important;
    height: auto !important;
  }

  .pb-banner-slide-inner,
  .pb-banner-layout-content-left .pb-banner-slide-inner {
    width: min(100% - 36px, 760px) !important;
    gap: 24px;
    padding: 52px 0 82px;
  }

  .pb-banner-slide-inner {
    grid-template-columns: minmax(320px, .55fr) minmax(250px, .45fr) !important;
  }

  .pb-banner-layout-content-left .pb-banner-slide-inner {
    grid-template-columns: minmax(250px, .45fr) minmax(320px, .55fr) !important;
  }

  .pb-banner-layout-content-left .pb-banner-media {
    order: 2;
    justify-self: start;
  }

  .pb-banner-layout-content-left .pb-banner-content {
    order: 1;
    justify-self: end;
  }

  .pb-banner-layout-content-left .pb-banner-media,
  .pb-banner-layout-content-left .pb-banner-content,
  .pb-banner-media,
  .pb-banner-content {
    max-width: 100% !important;
  }

  .pb-banner-media {
    justify-self: end;
  }

  .pb-banner-content {
    justify-self: start;
  }

  .pb-banner-content {
    padding-bottom: 0;
    text-align: left !important;
  }

  .pb-banner-content .pb-badge,
  .pb-banner-content .pb-icon-box {
    margin-inline: 0;
  }

  .pb-banner-content .pb-heading {
    font-size: clamp(32px, 7vw, 48px) !important;
    line-height: 1 !important;
    text-wrap: balance;
  }

  .pb-banner-content .pb-text,
  .pb-banner-content .pb-list {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .pb-banner-title {
    font-size: clamp(36px, 7vw, 52px);
    line-height: .95;
  }

  .pb-banner-media img,
  .pb-banner-media video {
    max-height: 360px;
  }

  .pb-slider-dots {
    left: 50%;
    right: auto;
    max-width: calc(100% - 36px);
    flex-wrap: wrap;
    transform: translateX(-50%);
  }

  .pb-slider-arrow {
    width: min(var(--pb-slider-arrow-size, 52px), 48px);
    height: min(var(--pb-slider-arrow-size, 52px), 48px);
    font-size: min(var(--pb-slider-arrow-icon-size, 42px), 36px);
  }

  .pb-gallery-slider .pb-gallery-track img {
    flex: 0 0 calc((100% - 14px) / 2);
    width: calc((100% - 14px) / 2);
  }
}

@media (max-width: 560px) {
  .pb-section {
    overflow-x: hidden;
  }

  .pb-container {
    width: min(100% - 24px, 1220px);
  }

  .pb-section:has(.pb-video) {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .pb-video {
    width: 100% !important;
  }

  .pb-slider:not(.pb-banner-slider) {
    min-height: clamp(280px, 104vw, 380px) !important;
  }

  .pb-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .pb-slider-arrows-pos-sides .pb-slider-prev {
    left: 10px;
  }

  .pb-slider-arrows-pos-sides .pb-slider-next {
    right: 10px;
  }

  .pb-banner-slider.pb-slider-arrows-pos-sides .pb-slider-arrow {
    top: 32%;
  }

  .pb-slider-dots {
    bottom: 12px;
    max-width: calc(100% - 20px);
    gap: 6px;
    padding: 6px 8px;
  }

  .pb-slider-dots button {
    width: min(var(--pb-slider-dot-size, 10px), 8px);
    height: min(var(--pb-slider-dot-size, 10px), 8px);
  }

  .pb-slider-dots-modern .pb-slider-dots button.is-active {
    width: 24px;
  }

  .pb-gallery-slider .pb-gallery-track img {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .pb-banner-slider {
    min-height: min(520px, 130vw) !important;
    height: auto !important;
  }

  .pb-banner-slide-inner,
  .pb-banner-layout-content-left .pb-banner-slide-inner {
    grid-template-columns: minmax(0, 1fr) !important;
    width: calc(100% - 28px) !important;
    gap: 18px;
    padding: 34px 0 58px;
  }

  .pb-banner-layout-content-left .pb-banner-media,
  .pb-banner-layout-content-left .pb-banner-content,
  .pb-banner-media,
  .pb-banner-content {
    order: initial;
    justify-self: center;
  }

  .pb-banner-content {
    text-align: center !important;
  }

  .pb-banner-content .pb-badge,
  .pb-banner-content .pb-icon-box {
    margin-inline: auto;
  }

  .pb-banner-content .pb-heading {
    font-size: clamp(28px, 9vw, 36px) !important;
  }

  .pb-banner-content .pb-text,
  .pb-banner-content .pb-list {
    font-size: 14px !important;
    line-height: 1.38 !important;
  }

  .pb-banner-content .pb-badge {
    font-size: 12px !important;
  }

  .pb-banner-content .pb-button {
    min-height: 42px;
    padding-inline: 18px;
  }

  .pb-banner-title {
    font-size: clamp(30px, 10vw, 42px);
  }

  .pb-banner-text,
  .pb-banner-list {
    font-size: 14px;
  }

  .pb-banner-media img,
  .pb-banner-media video {
    max-height: 260px;
  }

  .pb-banner-slide-inner {
    min-height: auto;
  }
}
