/* =============================================
Variables
============================================= */
/* =============================================
Base
============================================= */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: #1c282c;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
}
.btn {
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
}
/* =============================================
Header y navegación
============================================= */
.site-header {
  position: relative;
  min-height: 720px;
  background: url('../img/bg/BG_HOME.png') center top / cover no-repeat;
  overflow: hidden;
}
.site-nav {
  position: relative;
  z-index: 20;
  padding: 28px 0 10px;
}
.site-link {
  position: relative;
  margin: 0 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  transition: color 0.25s ease;
}
.site-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  border-radius: 5px;
  background: #ff7300;
  transition: width 0.25s ease;
}
.site-link:hover,
.site-link.active {
  color: #ff7300;
}
.site-link:hover::after,
.site-link.active::after {
  width: 100%;
}
.btn-register {
  padding: 14px 24px;
  color: #ffffff;
  background: #ff7300;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.95), 0 10px 20px rgba(0, 0, 0, 0.18);
}
.site-brand img {
  width: 128px;
}
.site-menu-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #ff7300;
  font-size: 28px;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.55);
  transition: visibility 0.35s ease, background 0.35s ease;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu-panel {
  width: 100%;
  min-height: 100vh;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(135deg, #ff7300 0%, #fed700 100%);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.85, 0.25, 1);
}
.mobile-menu-panel a {
  color: #ffffff;
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}
.mobile-menu-panel .btn-register {
  align-self: flex-start;
  font-size: 16px;
  text-transform: none;
  text-shadow: none;
  background: #31ac37;
}
.mobile-menu-logo {
  width: 170px;
  margin-bottom: 14px;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.18);
  font-size: 22px;
}
/* =============================================
Hero
============================================= */
.hero-section {
  position: relative;
  z-index: 2;
  padding: 70px 0 150px;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 10px;
}
.hero-campaign {
  width: 100%;
  max-width: 720px;
  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.18));
  animation: heroFloat 5s ease-in-out infinite;
}
.hero-product img {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  filter: drop-shadow(0 26px 22px rgba(0, 0, 0, 0.25));
}
/* =============================================
Pasos
============================================= */
.steps-section {
  position: relative;
  z-index: 4;
  margin-top: -78px;
  padding: 0 0 88px;
  background: #ffffff;
}
.intro-card {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 44px;
  padding: 38px 50px 32px;
  text-align: center;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}
.intro-card h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #000;
}
.intro-card h1 span {
  color: #ff7300;
}
.intro-card p {
  max-width: 840px;
  margin: 0 auto 4px;
  font-size: 16px;
  line-height: 1.35;
}
.intro-notch {
  position: absolute;
  left: 50%;
  top: -36px;
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
}
.step-card {
  position: relative;
  min-height: 470px;
  height: 100%;
  padding: 36px 34px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.18);
}
.step-card h2 {
  margin: 0;
  color: #ff7300;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.9;
  font-weight: 950;
}
.step-card p {
  max-width: 245px;
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.2;
}
.step-card .step-product-img {
  position: absolute;
  left: 38px;
  bottom: 30px;
  width: 190px;
}
.step-card span {
  position: absolute;
  right: 22px;
  bottom: 2px;
  color: #ff7300;
  font-size: 84px;
  line-height: 1;
  font-weight: 950;
}
.step-card i {
  position: absolute;
  top: 34px;
  right: 52px;
  color: #ff7300;
  font-size: 46px;
}
.step-yellow {
  background: #fed700;
}
/* Card de acumulación */
.step-acumula {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.step-acumula .step-acumula-copy {
  position: relative;
  z-index: 2;
  transform: translateY(-22px);
}
.step-acumula h2 {
  color: #ff7300;
  font-size: clamp(46px, 4.4vw, 64px);
  line-height: 0.88;
  letter-spacing: 0.02em;
}
.step-acumula p {
  max-width: 320px;
  margin: 14px auto 0;
  color: #000;
  font-size: 18px;
  line-height: 1.16;
}
.step-acumula strong {
  font-weight: 950;
}
.step-acumula span {
  right: 28px;
  bottom: 14px;
  color: #ff7300;
  font-size: 92px;
}
.step-acumula .step-acumula-face {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.step-acumula .step-acumula-face-top {
  top: 74px;
  right: 64px;
  width: 58px;
}
.step-acumula .step-acumula-face-bottom {
  left: 56px;
  bottom: 60px;
  width: 48px;
  transform: rotate(-10deg);
}
.step-orange {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: #ff7300;
}
.step-orange h2,
.step-orange span {
  color: #fed700;
}
.step-orange .step-phone {
  width: 225px;
  margin-bottom: 18px;
}
.step-orange p {
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}
/* =============================================
Registro
============================================= */
.ready-section {
  position: relative;
  min-height: 660px;
  padding: 82px 0;
  background: linear-gradient(90deg, #fffadc 0 74%, #ffffff 74% 100%);
  overflow: hidden;
}
.ready-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.ready-copy {
  max-width: 600px;
}
.ready-copy h2 {
  margin: 0 0 16px;
  color: #000;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.ready-copy h2 span {
  display: block;
  color: #ff7300;
  font-size: 1.18em;
}
.ready-copy p {
  margin-bottom: 34px;
  font-size: 18px;
}
.btn-whatsapp {
  padding: 16px 34px;
  color: #ffffff;
  background: #31ac37;
  box-shadow: 0 14px 24px rgba(49, 172, 55, 0.3);
}
.ready-phone {
  position: relative;
}
.ready-phone img {
  width: 470px;
  margin-left: auto;
  filter: drop-shadow(0 30px 20px rgba(0, 0, 0, 0.18));
}
/* =============================================
Premios
============================================= */
.prizes-section {
  position: relative;
  padding: 110px 0 145px;
  background-color: #ffffff;
  overflow: hidden;
}
.prizes-section.bg-loaded {
  background: url('../img/bg/BG_PREMIOS.png') center top / cover no-repeat;
}
.section-title {
  margin: 0 0 34px;
  text-align: center;
  color: #000;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.section-title span {
  color: #ff7300;
}
.prizes-card {
  max-width: 1010px;
  min-height: 430px;
  margin: 0 auto;
  padding: 72px 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-radius: 58px;
  background: #61abe1;
}
.prize-item {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  color: #ffffff;
}
.prize-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 34px;
  width: 3px;
  height: 230px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.82);
}
.prize-item img {
  width: 180px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.prize-item:hover img {
  transform: translateY(-8px) scale(1.05);
}
.prize-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 0.95;
  font-weight: 950;
}
.prize-item p {
  margin: 6px 0 0;
  font-size: 17px;
}
/* =============================================
Productos
============================================= */
.products-section {
  padding: 92px 0 118px;
  background: #fffadc;
}
.products-title {
  margin: 0;
  color: #ff7300;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0.02em;
}
.products-subtitle {
  margin: 0 0 68px;
  color: #000;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}
.products-logos {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 90px;
}
.products-logos a {
  display: grid;
  gap: 12px;
  justify-items: center;
  color: #ff7300;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.products-logos a:hover {
  transform: translateY(-8px);
}
.products-logos img {
  max-height: 118px;
  object-fit: contain;
}
/* =============================================
FAQ
============================================= */
.faq-section {
  position: relative;
  padding: 108px 0 96px;
  background-color: #ffffff;
  overflow: hidden;
}
.faq-section.bg-loaded {
  background: url('../img/bg/BG_PREGUNTAS.png') center top / cover no-repeat;
}
.faq-title {
  max-width: 1020px;
  margin: 0 auto 50px;
  color: #000;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.03em;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  padding: 17px 18px 17px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: #000;
  background: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
}
.faq-item button i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-left: 12px;
  border-radius: 50%;
  color: #fed700;
  background: #000;
  transition: transform 0.25s ease;
}
.faq-item.is-open button i {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  color: rgba(28, 40, 44, 0.82);
  font-size: 14px;
  line-height: 1.45;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.is-open .faq-answer {
  padding: 0 24px 18px;
}
/* =============================================
Footer
============================================= */
.site-footer {
  padding: 58px 0 34px;
  background: #fffadc;
}
.footer-top {
  max-width: 1030px;
  margin: 0 auto;
  padding-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(0, 0, 0, 0.75);
}
.footer-top img {
  width: 190px;
}
.footer-legal {
  display: grid;
  gap: 6px;
  color: #000;
  font-size: 14px;
}
.footer-legal a {
  color: #1c282c;
}
.footer-bottom {
  padding-top: 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(28, 40, 44, 0.72);
}
/* =============================================
Animaciones
============================================= */
.no-js .reveal-up,
.reveal-up {
  opacity: 1;
  transform: none;
}
.js-ready .reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-ready .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.22s;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/* =============================================
Laptop
============================================= */
@media (min-width: 992px) and (max-width: 1300px) {
  .site-header {
    min-height: 650px;
  }
  .hero-section {
    padding: 55px 0 130px;
  }
  .step-card {
    min-height: 430px;
  }
}
/* =============================================
Tablet
============================================= */
@media (min-width: 577px) and (max-width: 991px) {
  .site-header {
    min-height: auto;
    background-position: center top;
  }
  .site-nav {
    padding: 18px 0 6px;
  }
  .hero-section {
    padding: 34px 0 86px;
  }
  .hero-container,
  .ready-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-container {
    gap: 18px;
  }
  .hero-campaign {
    max-width: 460px;
    margin: 0 auto;
  }
  .hero-product img {
    max-width: 560px;
    margin: 0 auto;
  }
  .steps-section {
    margin-top: -48px;
    padding-bottom: 68px;
  }
  .intro-card {
    max-width: 680px;
    margin-bottom: 34px;
    padding: 30px 28px 28px;
    border-radius: 24px;
  }
  .intro-card h1 {
    font-size: 42px;
  }
  .intro-card p,
  .intro-card strong {
    font-size: 14px;
    line-height: 1.32;
  }
  .intro-notch {
    top: -28px;
    width: 56px;
    height: 56px;
  }
  .steps-grid {
    gap: 22px 0;
    justify-content: center;
  }
  .steps-grid > [class*='col-'] {
    width: 100%;
  }
  .step-card {
    max-width: 430px;
    min-height: 360px;
    margin: 0 auto;
    padding: 30px 28px;
    border-radius: 24px;
  }
  .step-card h2 {
    font-size: 42px;
  }
  .step-card p {
    max-width: 250px;
    font-size: 14px;
  }
  .step-card .step-product-img {
    width: 150px;
    left: 30px;
    bottom: 28px;
  }
  .step-card span {
    right: 20px;
    bottom: 8px;
    font-size: 72px;
  }
  .step-orange .step-phone {
    width: 180px;
    margin-bottom: 14px;
  }
  .step-acumula .step-acumula-copy {
    transform: translateY(-14px);
  }
  .step-acumula h2 {
    font-size: 46px;
  }
  .step-acumula p {
    max-width: 280px;
    font-size: 15px;
    line-height: 1.18;
  }
  .step-acumula span {
    right: 22px;
    bottom: 10px;
    font-size: 76px;
  }
  .step-acumula .step-acumula-face-top {
    top: 58px;
    right: 48px;
    width: 44px;
  }
  .step-acumula .step-acumula-face-bottom {
    left: 42px;
    bottom: 48px;
    width: 38px;
  }
  .ready-section {
    min-height: auto;
    padding: 66px 0 58px;
    background: #fffadc;
  }
  .ready-container {
    gap: 22px;
  }
  .ready-copy {
    max-width: 560px;
    margin: 0 auto;
  }
  .ready-copy h2 {
    font-size: 52px;
  }
  .ready-copy p {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .ready-phone img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .prizes-section {
    padding: 82px 0 96px;
  }
  .section-title {
    margin-bottom: 26px;
    font-size: 42px;
  }
  .prizes-card {
    max-width: 680px;
    min-height: 340px;
    padding: 44px 28px;
    border-radius: 42px;
  }
  .prize-item {
    min-height: 220px;
  }
  .prize-item:not(:last-child)::after {
    top: 28px;
    height: 190px;
  }
  .prize-item img {
    width: 140px;
    height: 95px;
    margin-bottom: 12px;
  }
  .prize-item h3 {
    font-size: 17px;
  }
  .prize-item p {
    font-size: 14px;
  }
  .products-section {
    padding: 74px 0 86px;
  }
  .products-title {
    font-size: 46px;
  }
  .products-subtitle {
    margin-bottom: 48px;
    font-size: 16px;
  }
  .products-logos {
    gap: 62px;
  }
  .products-logos img {
    max-height: 102px;
  }
  .faq-section {
    padding: 82px 0 76px;
    background-position: center top;
  }
  .faq-title {
    max-width: 680px;
    margin-bottom: 36px;
    font-size: 42px;
  }
  .faq-list {
    max-width: 620px;
  }
  .site-footer {
    padding-top: 48px;
  }
  .footer-top {
    max-width: 680px;
  }
}
/* =============================================
Mobile
============================================= */
@media (max-width: 576px) {
  .site-header {
    min-height: auto;
    background-position: center top;
  }
  .site-nav {
    padding: 16px 0 4px;
  }
  .hero-section {
    padding: 28px 0 78px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .hero-campaign {
    width: 94%;
    margin: 0 auto;
  }
  .hero-product img {
    width: 96%;
    margin: 0 auto;
  }
  .steps-section {
    margin-top: -38px;
    padding-bottom: 58px;
  }
  .intro-card {
    margin-bottom: 30px;
    padding: 24px 18px 22px;
    border-radius: 20px;
  }
  .intro-card h1 {
    font-size: 28px;
  }
  .intro-card p,
  .intro-card strong {
    font-size: 11px;
    line-height: 1.28;
  }
  .intro-notch {
    top: -22px;
    width: 44px;
    height: 44px;
  }
  .steps-grid {
    gap: 18px 0;
  }
  .step-card {
    min-height: 314px;
    padding: 26px 24px;
    border-radius: 18px;
  }
  .step-card h2 {
    font-size: 36px;
  }
  .step-card p {
    font-size: 13px;
  }
  .step-card .step-product-img {
    width: 135px;
    left: 24px;
    bottom: 24px;
  }
  .step-card span {
    right: 16px;
    font-size: 64px;
  }
  .step-orange .step-phone {
    width: 185px;
  }
  .ready-section {
    min-height: auto;
    padding: 58px 0 42px;
    background: #fffadc;
  }
  .ready-container {
    grid-template-columns: 1fr;
  }
  .ready-copy {
    order: 2;
    text-align: center;
  }
  .ready-copy h2 {
    font-size: 34px;
  }
  .ready-copy p {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .ready-phone {
    order: 1;
    margin-bottom: 10px;
  }
  .ready-phone::before {
    left: 0;
    top: 74px;
    width: 120px;
    height: 116px;
  }
  .ready-phone img {
    width: 245px;
    margin: 0 auto;
  }
  .btn-whatsapp {
    padding: 12px 22px;
    font-size: 13px;
  }
  .prizes-section {
    padding: 72px 0 86px;
  }
  .prizes-section.bg-loaded {
    background-image: url('../img/bg/BG-Premios-mb.png');
  }
  .section-title {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .prizes-card {
    width: 100%;
    max-width: 300px;
    min-height: 650px;
    padding: 36px 26px;
    grid-template-columns: 1fr;
    border-radius: 34px;
  }
  .prize-item {
    min-height: auto;
    padding: 14px 0;
  }
  .prize-item:not(:last-child)::after {
    display: none;
  }
  .prize-item img {
    width: 140px;
    height: 95px;
    margin-bottom: 8px;
  }
  .prize-item h3 {
    font-size: 16px;
  }
  .prize-item p {
    font-size: 13px;
  }
  .products-section {
    padding: 58px 0 76px;
  }
  .products-title {
    font-size: 34px;
  }
  .products-subtitle {
    margin-bottom: 36px;
    font-size: 12px;
  }
  .products-logos {
    flex-direction: column;
    align-items: center;
    gap: 38px;
  }
  .products-logos img {
    max-height: 100px;
  }
  .faq-section {
    padding: 74px 0 70px;
    background-position: center top;
  }
  .faq-title {
    margin-bottom: 34px;
    font-size: 30px;
  }
  .faq-list {
    gap: 10px;
  }
  .faq-item button {
    padding: 13px 12px 13px 16px;
    font-size: 11px;
  }
  .faq-item button i {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  .faq-answer {
    font-size: 12px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-top img {
    width: 150px;
  }
  .step-acumula {
    min-height: 314px;
  }
  .step-acumula .step-acumula-copy {
    transform: translateY(-14px);
  }
  .step-acumula h2 {
    font-size: 42px;
  }
  .step-acumula p {
    max-width: 250px;
    font-size: 13px;
    line-height: 1.18;
  }
  .step-acumula span {
    right: 18px;
    bottom: 8px;
    font-size: 68px;
  }
  .step-acumula .step-acumula-face-top {
    top: 44px;
    right: 34px;
    width: 40px;
  }
  .step-acumula .step-acumula-face-bottom {
    left: 34px;
    bottom: 42px;
    width: 34px;
  }
}
/* =============================================
Carrusel de productos
============================================= */
.product-carousel-section {
  padding: 92px 0 110px;
  background: #fffadc;
  overflow: hidden;
}
.product-carousel-section .logos-brand {
  align-items: center;
  justify-items: center;
  margin-bottom: 40px;
}
.product-carousel-section .logos-brand img {
  height: 131px;
}
.product-carousel-head {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
}
.product-carousel-head h2 {
  margin: 0;
  color: #ff7300;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0.02em;
}
.product-carousel-head p {
  margin: 12px 0 0;
  color: #000;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}
.product-carousel-wrap {
  position: relative;
}
.product-swiper {
  padding: 8px 4px 0;
}
.product-slide-card {
  min-height: 320px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.product-slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.18);
}
.product-slide-card:hover .product-slide-img img {
  transform: scale(1.06) rotate(-2deg);
}
.product-slide-card h3 {
  margin: 22px 0 0;
  color: #1c282c;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 950;
  text-align: center;
}
.product-slide-img {
  width: 100%;
  height: 210px;
  display: grid;
  place-items: center;
}
.product-slide-img img {
  max-width: 190px;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.28s ease;
}
/* =============================================
Controles del carrusel
============================================= */
.product-carousel-controls {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
/*
  Reset fuerte para evitar que Swiper posicione el contador
  como paginación absoluta.
*/
.product-carousel-controls .swiper-pagination.product-carousel-pagination,
.product-carousel-controls .swiper-pagination-bullets.swiper-pagination-horizontal.product-carousel-pagination {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: 74px !important;
  min-width: 74px;
  height: auto;
  margin: 0;
  transform: none !important;
  flex: 0 0 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c282c;
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
}
.product-carousel-pagination .swiper-pagination-current {
  color: #ff7300;
}
.product-carousel-pagination .swiper-pagination-total {
  color: rgba(28, 40, 44, 0.65);
}
.product-carousel-btn {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #ff7300;
  font-size: 22px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}
.product-carousel-btn::after {
  display: none;
  content: none;
}
.product-carousel-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: #eb6a00;
}
.product-carousel-btn i {
  line-height: 1;
}
/* =============================================
Carrusel laptop
============================================= */
@media (min-width: 992px) and (max-width: 1300px) {
  .product-carousel-section {
    padding: 82px 0 96px;
  }
  .product-carousel-section .logos-brand {
    align-items: center;
    justify-items: center;
    margin-bottom: 40px;
  }
  .product-slide-card {
    min-height: 300px;
  }
  .product-slide-img {
    height: 190px;
  }
  .product-slide-img img {
    max-width: 170px;
    max-height: 180px;
  }
}
/* =============================================
Carrusel tablet
============================================= */
@media (min-width: 577px) and (max-width: 991px) {
  .product-carousel-section {
    padding: 74px 0 86px;
  }
  .product-carousel-section .logos-brand {
    margin-bottom: 40px;
  }
  .product-carousel-section .logos-brand img {
    height: 110px;
  }
  .product-carousel-head {
    max-width: 620px;
    margin-bottom: 36px;
  }
  .product-carousel-head h2 {
    font-size: 44px;
  }
  .product-carousel-head p {
    font-size: 16px;
  }
  .product-swiper {
    padding: 6px 4px 0;
  }
  .product-slide-card {
    min-height: 280px;
    padding: 24px 18px 22px;
    border-radius: 24px;
  }
  .product-slide-card h3 {
    margin-top: 18px;
    font-size: 16px;
  }
  .product-slide-img {
    height: 170px;
  }
  .product-slide-img img {
    max-width: 150px;
    max-height: 160px;
  }
  .product-carousel-controls {
    gap: 16px;
    margin-top: 16px;
  }
  .product-carousel-btn {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 19px;
  }
  .product-carousel-controls .swiper-pagination.product-carousel-pagination,
  .product-carousel-controls .swiper-pagination-bullets.swiper-pagination-horizontal.product-carousel-pagination {
    flex-basis: 68px;
    width: 68px !important;
    min-width: 68px;
    font-size: 15px;
  }
}
/* =============================================
Carrusel mobile
============================================= */
@media (max-width: 576px) {
  .product-carousel-section {
    padding: 58px 0 76px;
  }
  .product-carousel-section .logos-brand {
    margin-bottom: 40px;
  }
  .product-carousel-section .logos-brand img {
    height: 80px;
  }
  .product-carousel-head {
    margin-bottom: 28px;
  }
  .product-carousel-head h2 {
    font-size: 34px;
  }
  .product-carousel-head p {
    font-size: 13px;
  }
  .product-swiper {
    padding: 4px 4px 0;
  }
  .product-slide-card {
    max-width: 300px;
    min-height: 290px;
    margin: 0 auto;
    padding: 24px 20px 22px;
    border-radius: 22px;
  }
  .product-slide-card h3 {
    margin-top: 18px;
    font-size: 18px;
  }
  .product-slide-img {
    height: 180px;
  }
  .product-slide-img img {
    max-width: 160px;
    max-height: 170px;
  }
  .product-carousel-controls {
    gap: 14px;
    margin-top: 14px;
  }
  .product-carousel-btn {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .product-carousel-controls .swiper-pagination.product-carousel-pagination,
  .product-carousel-controls .swiper-pagination-bullets.swiper-pagination-horizontal.product-carousel-pagination {
    flex-basis: 62px;
    width: 62px !important;
    min-width: 62px;
    font-size: 14px;
  }
}
/* =============================================
Ganadores
============================================= */
.winners-section {
  padding: 92px 0 110px;
  background-color: #ffffff;
  overflow: hidden;
}
.winners-section.bg-loaded {
  background: url('../img/bg/BG_PREMIOS.png') center top / cover no-repeat;
}
.winners-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}
.winners-head h2 {
  margin: 0;
  color: #ff7300;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0.02em;
}
.winners-head p {
  margin: 12px 0 0;
  color: #000;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}
.winners-card {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 46px 54px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.13);
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.winners-copy {
  max-width: 680px;
  margin: 0 auto 30px;
}
.winners-copy p {
  margin: 0;
  color: #000;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 800;
}
.winners-copy strong {
  color: #ff7300;
  font-weight: 950;
}
.winners-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.winners-icons i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #ff7300;
  font-size: 26px;
  box-shadow: 0 12px 20px rgba(255, 115, 0, 0.28);
}
.winners-list-wrap {
  max-width: 520px;
  max-height: 480px;
  overflow-y: auto;
  margin: 0 auto;
  padding: 28px 30px;
  border-radius: 26px;
  background: #fed700;
  scrollbar-color: #ff7300 #f1f5f9;
  /* Color del pulgar y color del riel */
  scrollbar-width: thin;
  /* Puede ser 'auto', 'thin' o 'none' para ocultarlo */
}
.winners-list-wrap h3 {
  margin: 0 0 20px;
  color: #000;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 950;
}
.winners-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.winners-list li {
  position: relative;
  padding: 13px 18px 13px 46px;
  border-radius: 999px;
  color: #1c282c;
  background: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-align: left;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.winners-list li::before {
  content: '\F5E7';
  position: absolute;
  left: 16px;
  top: 50%;
  color: #ff7300;
  font-family: 'bootstrap-icons';
  font-size: 18px;
  transform: translateY(-50%);
}
/* =============================================
Ganadores laptop
============================================= */
@media (min-width: 992px) and (max-width: 1300px) {
  .winners-section {
    padding: 82px 0 96px;
  }
  .winners-card {
    max-width: 820px;
    padding: 42px 48px;
  }
}
/* =============================================
Ganadores tablet
============================================= */
@media (min-width: 577px) and (max-width: 991px) {
  .winners-section {
    padding: 74px 0 86px;
  }
  .winners-head {
    max-width: 620px;
    margin-bottom: 36px;
  }
  .winners-head h2 {
    font-size: 46px;
  }
  .winners-head p {
    font-size: 16px;
  }
  .winners-card {
    max-width: 680px;
    padding: 38px 34px;
    border-radius: 30px;
  }
  .winners-copy {
    margin-bottom: 26px;
  }
  .winners-copy p {
    font-size: 19px;
  }
  .winners-icons i {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .winners-list-wrap {
    max-width: 500px;
    padding: 26px 26px;
  }
  .winners-list-wrap h3 {
    font-size: 18px;
  }
  .winners-list li {
    font-size: 16px;
  }
}
/* =============================================
Ganadores mobile
============================================= */
@media (max-width: 576px) {
  .winners-section {
    padding: 58px 0 76px;
  }
  .winners-head {
    margin-bottom: 28px;
  }
  .winners-head h2 {
    font-size: 36px;
  }
  .winners-head p {
    font-size: 13px;
  }
  .winners-card {
    padding: 30px 18px;
    border-radius: 24px;
  }
  .winners-copy {
    margin-bottom: 22px;
  }
  .winners-copy p {
    font-size: 16px;
    line-height: 1.3;
  }
  .winners-icons {
    gap: 10px;
    margin-bottom: 14px;
  }
  .winners-icons i {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }
  .winners-list-wrap {
    padding: 22px 16px;
    border-radius: 20px;
  }
  .winners-list-wrap h3 {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .winners-list {
    gap: 10px;
  }
  .winners-list li {
    padding: 12px 14px 12px 40px;
    font-size: 15px;
  }
  .winners-list li::before {
    left: 14px;
    font-size: 16px;
  }
}
