.prod-page,
.prod-detail-page,
.prod-page *,
.prod-detail-page * {
  box-sizing: border-box;
}

.prod-page,
.prod-detail-page {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #5b5b5f;
}

.prod-basculas-inicio,
.prod-basculas-detalle {
  --prod-accent: #009cbd;
}

.prod-equipos-inicio,
.prod-equipos-detalle {
  --prod-accent: #d0006f;
}

.prod-servicios-inicio,
.prod-servicios-detalle {
  --prod-accent: #6ba539;
}

.prod-page__section,
.prod-detail-page__section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 44px 0;
}

.prod-page__section--hero,
.prod-detail-page__section--hero {
  background: #ffffff;
}

.prod-detail-page__section--hero-light {
  background: #eaeaea;
}

.prod-page__section--catalog,
.prod-page__section--brands,
.prod-detail-page__section {
  background: #ffffff;
}

.prod-equipos-detalle .prod-detail-page__section--hero-light {
  background: #f2f2f2;
}

.prod-page__section--cta {
  background-color: #eaeaea;
  background-image: url("../asstes/images/bg-mozaico-1.png");
  background-repeat: repeat;
  background-size: 140px auto;
}

.prod-detail-page__section--mosaic-blue {
  background-color: #009cbd;
  background-image: url("../asstes/images/bg-mozaico-1.png");
  background-repeat: repeat;
  background-size: 140px auto;
}

.prod-detail-page__section--mosaic-green {
  background-color: #6ba539;
  background-image: url("../asstes/images/bg-mozaico-1.png");
  background-repeat: repeat;
  background-size: 140px auto;
}

.prod-page__wrap,
.prod-detail-page__wrap {
  width: min(100%, 1265px);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 50px);
}

.prod-page__hero-grid,
.prod-page__cta-grid,
.prod-detail-page__hero-grid,
.prod-detail-page__split-grid,
.prod-detail-page__media-grid,
.prod-detail-page__white-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 50px);
  align-items: center;
}

.prod-page__hero-brand img,
.prod-page__cta-media img,
.prod-detail-page__hero-media img,
.prod-detail-page__split-grid img,
.prod-detail-page__cards-grid img,
.prod-page__catalog-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.prod-page__hero-brand h1,
.prod-detail-page__hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  color: #5b5b5f;
}

.prod-page__hero-copy p,
.prod-detail-page__hero-copy p,
.prod-detail-page__split-grid p,
.prod-detail-page__benefits-card li,
.prod-detail-page__cards-grid p,
.prod-detail-page__option-card p,
.prod-detail-page__split-grid li {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 300;
  color: #5b5b5f;
}

.prod-page__catalog-grid {
  display: grid;
  gap: 36px 32px;
}

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

.prod-page__catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 310px;
  position: relative;
  text-align: center;
}

.prod-page__catalog-item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
}

.prod-page__catalog-mark {
  position: absolute;
  left: 0;
  top: 20px;
  width: 56px;
  height: 56px;
  opacity: 0.18;
}

.prod-page__catalog-mark > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.prod-page__catalog-mark--pink {
  color: #d0006f;
}

.prod-page__catalog-mark--green {
  color: #6ba539;
}

.prod-page__catalog-item.is-placeholder .prod-page__placeholder {
  width: min(100%, 280px);
  height: 190px;
  background: #e3e3e3;
  border-radius: 10px;
}

.prod-page__section--brands h2,
.prod-detail-page__wrap > h2,
.prod-detail-page__split-grid h2,
.prod-page__cta-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #5b5b5f;
}

.prod-page__cta-copy p {
  font-size: 20px;
  line-height: 1.28;
}

.prod-page__cta-copy .btn.primary,
.prod-detail-page__hero-actions .btn.primary,
.prod-detail-page__wrap .btn.primary,
.prod-detail-page__cards-grid .btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
}

.prod-page__cta-media,
.prod-detail-page__hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-detail-page__hero-copy h1 {
  margin-top: 12px;
}

.prod-detail-page__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.prod-detail-page__breadcrumb img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.prod-equipos-detalle__hero-logo {
  margin-bottom: 0;
}

.prod-equipos-detalle__hero-logo img {
  width: auto;
  height: 80px;
  max-width: 100%;
  max-height: 80px;
}

.prod-detail-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.prod-detail-page__gallery-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.prod-detail-page__gallery-row img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
}

.prod-detail-page__video-wrap {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  min-height: 320px;
  background: #101010;
}

.prod-detail-page__video-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}

.prod-detail-page__benefits-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 28px;
}

.prod-detail-page__benefits-card ul,
.prod-detail-page__split-grid ul {
  margin: 0;
  padding-left: 20px;
}

.prod-detail-page__cards-grid {
  display: grid;
  gap: 22px;
}

.prod-detail-page__cards-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.prod-detail-page__cards-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prod-detail-page__cards-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prod-detail-page__cards-grid article {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.prod-equipos-detalle__cards-grid {
  grid-auto-rows: 1fr;
}

.prod-equipos-detalle__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent !important;
}

.prod-equipos-detalle__media {
  width: 320px;
  height: 320px;
  max-width: 100%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-equipos-detalle__media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.prod-equipos-detalle__card .prod-equipos-detalle__btn-download {
  margin-top: auto;
  margin-left: 0;
  background: #d0006f;
  color: #ffffff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  padding: 8px 12px;
  line-height: 1;
  width: 100%;
}

.prod-equipos-detalle__btn-download img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.prod-detail-page__cards-grid h3,
.prod-detail-page__option-card h3,
.prod-detail-page__split-grid h3,
.prod-detail-page__wrap > h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 700;
  color: #5b5b5f;
}

.prod-detail-page__cards-grid a {
  color: var(--prod-accent, #009cbd);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.prod-detail-page__option-card {
  width: min(100%, 420px);
  background: #f5f5f5;
  border-radius: 12px;
  padding: 18px;
}

.prod-detail-page__option-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.prod-detail-page__white-card {
  background: #ffffff;
  border-radius: 15px;
  padding: clamp(20px, 2.6vw, 36px);
}

.prod-detail-page__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.prod-detail-page__filters button,
.prod-detail-page__filters a {
  border: 0;
  background: transparent;
  color: #5b5b5f;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 4px;
  text-decoration: none;
}

.prod-detail-page__filters button.is-active,
.prod-detail-page__filters a.is-active,
.prod-detail-page__filters button.active,
.prod-detail-page__filters a.active {
  color: var(--prod-accent, #009cbd);
}

.prod-detail-page__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.prod-detail-page__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfcfcf;
}

.prod-detail-page__dots span:first-child {
  background: #707070;
}

.prod-detail-page__placeholder {
  width: 100%;
  min-height: 180px;
  border-radius: 10px;
  background: #e0e0e0;
}

.prod-detail-page details {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  padding: 14px 18px;
  margin-bottom: 14px;
}

.prod-detail-page summary {
  cursor: pointer;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 500;
  color: #5b5b5f;
}

.prod-detail-page details p {
  margin: 12px 0 0;
}

/* CTA del detalle igual al CTA de inicio */
.prod-page__section--cta {
  background: #ffffff;
  position: relative;
  overflow: visible;
}

.prod-page__section--cta::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  margin-top: -90px;
  width: 100vw;
  height: 220px;
  background-color: #eaeaea;
  background-image: url("../asstes/images/bg-mozaico-1.png");
  background-repeat: repeat;
  background-size: 140px auto;
  z-index: 1;
}

.prod-page__section--cta .prod-page__wrap {
  position: relative;
  z-index: 2;
}

.prod-page__cta-copy {
  display: flex;
  flex-direction: column;
}

.prod-page__cta-copy h2 {
  margin: 0;
  font-size: clamp(25px, 3.2vw, 41px);
  transform: translateY(-90px);
}

.prod-page__cta-copy p {
  margin: 0;
  font-size: 25px;
  line-height: 1.28;
  transform: translateY(-40px);
}

.prod-page__cta-copy .btn.primary {
  align-self: flex-end;
  transform: translateY(0);
}

.prod-page__cta-media img {
  width: auto;
  height: auto;
  max-width: min(100%, 420px);
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  transform: translateY(-20px);
}
