/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --bg-navbar: #00330A;
  --primary-verde: #006134;
  --primary-rojo: #CF2A22;
  --blanco: #fff;
  --negro: #000;
  --hover-text: #222222be;
}

/* ============================================================
   AJUSTE GENERAL DE LEGIBILIDAD
   ============================================================ */
.como-participar-section p,
.promo-cta-section p,
.producto-section p,
.podio-section p,
.video-galeria-section p,
.registro-section p,
.footer-section p {
  text-wrap: pretty;
}

.como-participar-section .paso-text,
.prod-descripcion,
.registro-section .registro-subtexto,
.registro-aviso {
  text-align: justify;
  text-justify: inter-word;
}

.como-participar-section .paso-text,
.prod-descripcion,
.registro-subtexto {
  max-width: 60ch;
}

.promo-cta-texto {
  max-width: 34ch;
}

.registro-header {
  text-align: center;
}

.registro-header .registro-titulo,
.registro-header .registro-subtexto {
  text-align: center;
}

.registro-header .registro-subtexto {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {

  .como-participar-section .paso-text,
  .promo-cta-texto,
  .prod-descripcion,
  .registro-section .registro-subtexto,
  .registro-aviso {
    text-align: left;
    max-width: 100%;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
html {
  scroll-behavior: smooth;
}

#home,
#podio,
#galeria,
#producto,
#participar,
#maximo {
  scroll-margin-top: 100px;
}

#registro {
  scroll-margin-top: 0px;
}

.navbar {
  background-color: var(--blanco) !important;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  isolation: auto;
}

.navbar,
.navbar .nav-link,
.navbar .navbar-brand,
.navbar .navbar-toggler {
  color: var(--primary-verde) !important;
}

.navbar .nav-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.navbar .nav-link {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.85rem;
  transition: color 0.2s, background 0.2s;
}

.navbar .nav-link.active,
.navbar .nav-link:focus,
.navbar .nav-link:hover {
  color: var(--primary-rojo) !important;
  border-radius: 0.5rem;
}

.navbar-light .navbar-toggler {
  border: 2px solid var(--primary-verde);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23006134' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar .navbar-nav {
  gap: 0.5rem;
}

.btn-comprar-navbar {
  color: var(--blanco) !important;
  background-color: var(--primary-rojo);
  border-radius: 2rem;
  box-shadow: 0 2px 8px 0 rgba(0, 97, 52, 0.10);
  font-size: 0.85rem;
}

.btn-comprar-navbar:hover,
.btn-comprar-navbar:focus {
  color: var(--blanco) !important;
  background-color: #a82219;
  box-shadow: 0 6px 20px rgba(207, 43, 34, 0.45);
}

.btn-comprar-navbar .icon-cart-check {
  display: none;
}

.btn-comprar-navbar:hover .icon-cart {
  display: none;
}

.btn-comprar-navbar:hover .icon-cart-check {
  display: inline-block;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    justify-content: center !important;
    text-align: center;
    width: 100%;
  }

  .navbar .nav-item {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .navbar .nav-link {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .btn-comprar-navbar {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .nav-item.d-flex.align-items-center {
    justify-content: center !important;
    display: flex !important;
    width: 100%;
  }
}

/* ============================================================
   BANNER
   ============================================================ */
@media (max-width: 991.98px) {
  .banner-section img {
    content: url('/salvo2026/img/bg-mobile.png');
    min-height: 350px;
    max-height: 700px;
    object-fit: cover;
  }
}

/* ============================================================
   SECCIÓN: CÓMO PARTICIPAR
   ============================================================ */
.title-participar {
  color: var(--primary-rojo);
  font-size: 3.5rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 991.98px) {
  .title-participar {
    font-size: 2.3rem;
    text-align: center;
  }
}

.como-participar-section {
  background-image: url('/salvo2026/img/bg-pasos.png');
  ;
  position: relative;
  overflow: hidden;
}

.hoja-esquina {
  position: absolute;
  top: 0;
  width: 250px;
  pointer-events: none;
  z-index: 0;
}

.hoja-top-left {
  left: 0;
}

.hoja-top-right {
  right: 0;
}

/* ── Tablet: 768px – 991.98px ─────────────────────────────── */
@media (max-width: 991.98px) {
  .hoja-esquina {
    width: clamp(100px, 16vw, 200px);
  }
}

/* ── Mobile grande: 576px – 767.98px ─────────────────────── */
@media (max-width: 767.98px) {
  .hoja-esquina {
    width: clamp(80px, 22vw, 140px);
  }
}

/* ── Mobile chico: < 575.98px ─────────────────────────────── */
@media (max-width: 575.98px) {
  .hoja-esquina {
    width: clamp(60px, 20vw, 100px);
  }
}

/* ============================================================
   PASOS — Layout base (desktop)
   ============================================================ */
.space-paso {
  width: 100%;
  margin-top: 5rem;
  gap: 28px;
}

.paso-num {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.paso-num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.paso-num-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-width: 380px;
}

.paso-num-text-step2 {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 12px;
  row-gap: 10px;
  align-items: center;
}

.paso-num-text-step2 .paso-num {
  grid-column: 1;
}

.paso-num-text-step2 .paso-text {
  grid-column: 2;
  text-align: left;
  text-justify: auto;
}

.paso-num-text-step2 .btn {
  grid-column: 2;
  justify-self: start;
}

.paso-num-text .paso-text {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0 !important;
  white-space: normal;
  word-break: break-word;
  font-size: 1.125rem;
  color: var(--hover-text) !important;
  line-height: 1.5;
  background-color: transparent !important;
}

.img-paso {
  max-width: 300px;
}

.title-paso {
  color: var(--primary-verde) !important;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  z-index: 1000 !important;
  position: relative;
}

.desc-paso {
  font-size: 1.125rem;
  color: var(--hover-text) !important;
  z-index: 1000 !important;
  position: relative;
}

.title-paso,
.desc-paso {
  background: var(--blanco) !important;
  border: none !important;
}

/* ============================================================
   PASOS — Responsive (≤ 767 px)
   ============================================================ */
@media (max-width: 767.98px) {
  .space-paso {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    text-align: center;
    margin-top: 3rem;
  }

  .space-paso .img-paso {
    order: -1;
  }

  .paso-num-text {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    max-width: 90vw !important;
    gap: 10px !important;
  }

  .paso-num-text-step2 {
    display: grid !important;
    grid-template-columns: 50px 1fr !important;
    column-gap: 10px !important;
    row-gap: 10px !important;
    align-items: center !important;
    max-width: 90vw !important;
  }

  .paso-num-text-step2 .btn {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .paso-num-text .paso-text {
    font-size: 1rem !important;
    text-align: left !important;
  }

  .img-paso {
    max-width: 160px;
  }
}

/* ============================================================
   SECCIÓN: PROMO CTA
   ============================================================ */
.promo-cta-section {
  background-image: url('/salvo2026/img/bg-promo-desktop.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

.promo-burbuja {
  position: absolute;
  width: clamp(34px, 4vw, 70px);
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.promo-burbuja-l1 {
  left: 1%;
  top: 8%;
  width: clamp(20px, 2.5vw, 44px);
}

.promo-burbuja-l2 {
  left: 9%;
  top: 30%;
  width: clamp(45px, 5.5vw, 80px);
}

.promo-burbuja-l3 {
  left: 2%;
  top: 52%;
  width: clamp(32px, 3.8vw, 60px);
}

.promo-burbuja-l4 {
  left: 15%;
  top: 72%;
  width: clamp(22px, 2.8vw, 42px);
}

.promo-burbuja-l5 {
  left: 5%;
  top: 88%;
  width: clamp(40px, 5vw, 72px);
}

.promo-burbuja-l6 {
  left: 21%;
  top: 18%;
  width: clamp(28px, 3.2vw, 52px);
}

.promo-burbuja-l7 {
  left: 27%;
  top: 58%;
  width: clamp(18px, 2vw, 34px);
}

.promo-burbuja-r1 {
  right: 1%;
  top: 10%;
  width: clamp(30px, 3.8vw, 62px);
}

.promo-burbuja-r2 {
  right: 10%;
  top: 35%;
  width: clamp(20px, 2.5vw, 40px);
}

.promo-burbuja-r3 {
  right: 2%;
  top: 60%;
  width: clamp(42px, 5.2vw, 78px);
}

.promo-burbuja-r4 {
  right: 16%;
  top: 78%;
  width: clamp(28px, 3.2vw, 52px);
}

.promo-burbuja-r5 {
  right: 4%;
  top: 90%;
  width: clamp(22px, 2.8vw, 44px);
}

.promo-burbuja-r6 {
  right: 22%;
  top: 22%;
  width: clamp(38px, 4.8vw, 70px);
}

.promo-burbuja-r7 {
  right: 26%;
  top: 48%;
  width: clamp(18px, 2.2vw, 36px);
}

.promo-burbuja-l8 {
  left: 33%;
  top: 85%;
  width: clamp(24px, 3vw, 48px);
}

.promo-burbuja-l9 {
  left: 4%;
  top: 42%;
  width: clamp(16px, 1.8vw, 30px);
}

.promo-burbuja-r8 {
  right: 33%;
  top: 20%;
  width: clamp(16px, 1.8vw, 30px);
}

.promo-burbuja-r9 {
  right: 6%;
  top: 44%;
  width: clamp(26px, 3.2vw, 50px);
}

.promo-cta-section .container {
  position: relative;
  z-index: 1;
}

.promo-cta-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.promo-cta-media {
  flex: 0 0 auto;
}

.promo-cta-texto {
  color: var(--blanco);
  font-size: 1.75rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  max-width: 480px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  padding: 0.5em 1.5em;
  border-radius: 1em;
  letter-spacing: 1px;
}

.promo-cta-subtexto {
  color: var(--blanco);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  max-width: 480px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  padding: 0.5em 1.5em;
  border-radius: 1em;
  letter-spacing: 1px;
}

@media (max-width: 991.98px) {
  .promo-cta-layout {
    flex-direction: column;
    gap: 1rem;
  }

  .promo-cta-texto {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.btn-promo-cta {
  background-color: var(--primary-rojo);
  color: var(--blanco) !important;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(207, 43, 34, 0.35);
  transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-promo-cta:hover,
.btn-promo-cta:focus {
  background-color: #a82219;
  box-shadow: 0 6px 20px rgba(207, 43, 34, 0.45);
}

.btn-promo-cta .icon-cart-fill {
  display: none;
}

.btn-promo-cta:hover .icon-cart,
.btn-promo-cta:focus .icon-cart {
  display: none;
}

.btn-promo-cta:hover .icon-cart-fill,
.btn-promo-cta:focus .icon-cart-fill {
  display: inline-block;
}

.promo-terminos {
  color: var(--blanco);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid var(--blanco);
  border-radius: 2rem;
  padding: 0.5rem 0.75rem;
  margin-left: 2.5em;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.promo-terminos:hover {
  opacity: 1;
  font-weight: 500;
  color: var(--negro);
  background-color: var(--blanco);
  border: 1px solid var(--blanco);
}

.promo-terminos .icon-info-fill {
  display: none !important;
}

.promo-terminos .icon-info {
  display: inline-block !important;
}

.promo-terminos:hover .icon-info {
  display: none !important;
}

.promo-terminos:hover .icon-info-fill {
  display: inline-block !important;
}

@media (max-width: 991.98px) {
  .promo-cta-section {
    background-image: url('/salvo2026/img/bg-promo-mobile.png');
    padding: 1rem 1rem;
  }

  .promo-burbuja {
    width: clamp(22px, 5vw, 42px);
    opacity: 0.72;
  }

  .promo-burbuja-l2,
  .promo-burbuja-l4,
  .promo-burbuja-l6,
  .promo-burbuja-l7,
  .promo-burbuja-l8,
  .promo-burbuja-l9,
  .promo-burbuja-r2,
  .promo-burbuja-r4,
  .promo-burbuja-r6,
  .promo-burbuja-r7,
  .promo-burbuja-r8,
  .promo-burbuja-r9 {
    display: none;
  }

  .promo-cta-texto {
    font-size: 1.2rem;
  }

  .promo-terminos {
    margin-left: 0;
  }
}

.promo-hoja {
  position: absolute;
  width: clamp(110px, 14vw, 240px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.promo-hoja-top-left {
  top: -10px;
  left: -10px;
}

.promo-hoja-top-right {
  top: -10px;
  right: -10px;
}

@media (max-width: 767.98px) {
  .promo-hoja {
    width: clamp(70px, 18vw, 130px);
  }
}

.ft-premio {
  width: 170px;
  max-width: 100%;
  height: auto;
}

@media (min-width: 576px) {
  .ft-premio {
    width: 210px;
  }
}

@media (min-width: 768px) {
  .ft-premio {
    width: 250px;
  }
}

@media (min-width: 1200px) {
  .ft-premio {
    width: 285px;
  }
}

/* ============================================================
   SECCIÓN: MÁXIMO PODER
   ============================================================ */
.maximo-poder-section {
  background-color: var(--blanco);
}

.maximo-poder-titulo {
  color: var(--primary-rojo);
  font-weight: bold;
  font-size: 2.2rem;
  font-family: 'Montserrat', sans-serif;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.3;
}

.maximo-poder-row {
  gap: 3rem;
  margin-bottom: 3rem;
}

.maximo-poder-img {
  max-width: 280px;
  width: 100%;
  flex-shrink: 0;
}

.maximo-poder-subtexto {
  color: var(--primary-verde);
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 320px;
  line-height: 1.4;
  margin: 0;
}

.maximo-poder-frase {
  color: var(--negro);
  font-size: 1.3rem;
  font-weight: 350;
  margin-bottom: 1.5rem;
}

.btn-maximo-poder {
  background-color: var(--primary-rojo);
  color: var(--blanco) !important;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(207, 43, 34, 0.35);
  transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-maximo-poder:hover,
.btn-maximo-poder:focus {
  background-color: #a82219;
  box-shadow: 0 6px 20px rgba(207, 43, 34, 0.45);
}

.btn-maximo-poder .icon-cart-fill {
  display: none;
}

.btn-maximo-poder:hover .icon-cart,
.btn-maximo-poder:focus .icon-cart {
  display: none;
}

.btn-maximo-poder:hover .icon-cart-fill,
.btn-maximo-poder:focus .icon-cart-fill {
  display: inline-block;
}

@media (max-width: 767.98px) {
  .maximo-poder-titulo {
    font-size: 1.5rem;
    max-width: 100%;
  }

  .maximo-poder-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem;
    text-align: center;
  }

  .maximo-poder-img {
    max-width: 200px;
  }

  .maximo-poder-subtexto {
    font-size: 1.2rem;
    max-width: 90vw;
    text-align: center;
  }

  .maximo-poder-frase {
    font-size: 1.1rem;
  }
}

.maximo-extra-row {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

.maximo-extra-row>.col-12 {
  margin-bottom: 0.5rem !important;
}

@media (min-width: 768px) {
  .maximo-extra-row>.col-md-6 {
    margin-bottom: 0 !important;
  }
}

.maximo-extra-row {
  margin: 0 0 3rem 0 !important;
  gap: 3rem !important;
}

.maximo-extra-row {
  gap: 2rem;
  flex-wrap: wrap;
}

.maximo-extra-img {
  max-width: 320px;
  width: 100%;
}

@media (max-width: 767.98px) {
  .maximo-extra-img {
    max-width: 180px;
  }
}

/* ============================================================
   SECCIÓN: PODIO DE GANADORES
   ============================================================ */
.podio-section {
  background: #D9E4E0;
}

.podio-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.podio-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podio-card {
  border-radius: 1.25rem;
  padding: 2rem 1.5rem 1.5rem;
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

/* 1er lugar — Rojo, más alto */
.podio-card--1 {
  background-color: var(--primary-verde);
  order: 2;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* 2do lugar — Verde */
.podio-card--2 {
  background-color: var(--primary-verde);
  order: 1;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* 3er lugar — Plata */
.podio-card--3 {
  background-color: var(--primary-verde);
  order: 3;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* Lugar complementario */
.podio-card--4 {
  background-color:#727272;
  order: 3;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.podio-trofeo1 {
  font-size: 2rem;
  color: #FFD700;
}

.podio-trofeo2 {
  font-size: 2rem;
  color: #c0c0c0;
}

.podio-trofeo3 {
  font-size: 2rem;
  color: #bf8970;
}

.podio-trofeo4 {
  font-size: 2rem;
  color: #fff;
}

.podio-nolugar {
  color: var(--blanco);
  font-size: 3rem;
}

.podio-num {
  font-size: 4.5rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: #ffe08a;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.puntos-num1 {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  color: #ffe08a;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  margin: inherit;
}

.puntos-num2 {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  color: #c0c0c0;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  margin: inherit;
}

.puntos-num3 {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  color: #bf8970;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  margin: inherit;
}

.podio-nombre {
  font-size: 1rem;
  font-weight: 700;
  color: #fff7de;
  margin: 0;
  line-height: 1.3;
}

.podio-label {
  font-size: 0.75rem;
  color: #ffd56a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.podio-non {
  font-size: 1rem;
  font-weight: 600;
  color: #fff4c2;
  margin: 0;
  line-height: 1.5;
  text-align: center;
  text-align: justify;
  text-justify: inter-word;
  padding: 0 1rem;
}

.podio-card--1 .podio-num {
  color: #ffd700;
}

.podio-card--1 .podio-nombre {
  color: #fff4c2;
}

.podio-card--1 .podio-label {
  color: #ffe083;
  font-weight: 900;
}

.podio-card--2 .podio-num {
  color: #d8f1ff;
}

.podio-card--2 .podio-nombre {
  color: #e9f8ff;
}

.podio-card--2 .podio-label {
  color: #c3ebff;
  font-weight: 900;
}

.podio-card--3 .podio-num {
  color: #ffd0b3;
}

.podio-card--3 .podio-nombre {
  color: #ffe8dc;
}

.podio-card--3 .podio-label {
  color: #ffc6a2;
  font-weight: 900;
}

.nolugar{
  color: var(--blanco);
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  height: 230px !important;
  align-items: center;
  align-content: center;
}

/* Responsive */
@media (max-width: 575.98px) {

  .nolugar {height: 215px !important;}
  .podio-wrap {
    gap: 10px;
  }

  .podio-card {
    width: clamp(100px, 28vw, 160px);
    padding: 1.25rem 0.75rem;
  }

  .podio-num {
    font-size: 2.5rem;
  }

  .podio-nombre {
    font-size: 0.85rem;
  }
}

.podio-non {
  font-size: 2rem;
  color: #fff;
  font-weight: 900;
}

/* Empty State - Sin datos */
.podio-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem 2rem;
  text-align: center;
  min-height: 400px;
}

.podio-empty-icon {
  font-size: 5rem;
  color: #006134;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.podio-empty-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.podio-empty-description2 {
  font-size: 1rem;
  color: #666;
  max-width: 500px;
  line-height: 0;
  text-align: center;
}

@media (max-width: 767.98px) {
  .podio-empty-state {
    padding: 2.5rem 1.5rem;
    min-height: auto;
  }

  .podio-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .podio-empty-title {
    font-size: 1.4rem;
  }

  .podio-empty-description {
    font-size: 0.95rem;
  }
}

/* ============================================================
   SECCIÓN: INICIA EL VERANO
   ============================================================ */
.inicia-verano-section {
  background-color: var(--primary-rojo);
}

.inicia-verano-titulo {
  color: var(--blanco);
  font-size: 2.2rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.3;
}

.inicia-verano-subtexto {
  color: var(--blanco);
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .inicia-verano-titulo {
    font-size: 1.6rem;
    max-width: 100%;
  }

  .inicia-verano-subtexto {
    font-size: 1.1rem;
    max-width: 100%;
  }
}

/* ============================================================
   SECCIÓN: GANADORES
   ============================================================ */
.ganadores-section {
  background-color: var(--blanco);
}

.ganadores-titulo {
  color: var(--primary-rojo);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.ganadores-subtexto {
  color: var(--hover-text);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.ganadores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Tarjeta individual */
.ganador-card {
  background: var(--blanco);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  position: relative;
}

.ganador-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Foto */
.ganador-foto-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f0f0f0;
  display: block;
}

.ganador-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.ganador-card:hover .ganador-foto {
  transform: scale(1.05);
}

/* Info */
.ganador-info {
  padding: 1rem;
}

.ganador-nombre {
  color: var(--primary-verde);
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.ganador-lugar {
  color: var(--hover-text);
  font-size: 0.85rem;
  margin: 0;
}

.ganador-lugar i {
  color: var(--primary-rojo);
}

/* Responsive */
@media (max-width: 991.98px) {
  .ganadores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ganadores-titulo {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .ganadores-grid {
    grid-template-columns: 1fr;
  }

  .ganadores-titulo {
    font-size: 1.5rem;
  }

  .ganadores-subtexto {
    font-size: 1rem;
  }
}

.ganador-medalla {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background-color: var(--primary-rojo);
  color: var(--blanco);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   SECCIÓN: REGISTRO
   ============================================================ */
.registro-section {
  background: #D9E4E0;
  /* background: #fff; */
  position: relative;
  overflow: hidden;
}

.registro-section .container {
  position: relative;
  z-index: 2;
}

.registro-hoja {
  position: absolute;
  width: clamp(120px, 16vw, 260px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.registro-hoja-top-left {
  top: -12px;
  left: -12px;
}

.registro-hoja-top-right {
  top: -12px;
  right: -12px;
}

.registro-hoja-bottom-left {
  bottom: -12px;
  left: -12px;
  transform: rotate(180deg);
}

.registro-hoja-bottom-right {
  bottom: -12px;
  right: -12px;
  transform: rotate(180deg);
}

.registro-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 97, 52, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.registro-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(207, 42, 34, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.registro-titulo {
  color: var(--primary-rojo);
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.registro-subtexto {
  color: var(--hover-text);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.registro-card {
  background: var(--blanco);
  border-radius: 2rem;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.10);
  padding: 2.5rem 2.5rem;
  max-width: 760px;
  border: 2px solid rgba(0, 97, 52, 0.08);
  position: relative;
  z-index: 1;
}

.registro-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.registro-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.registro-label {
  display: block;
  color: var(--primary-verde);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.registro-input {
  width: 100%;
  border: 2px solid #e8e8e8;
  border-radius: 0.875rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--negro);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.registro-input:focus {
  border-color: var(--primary-verde);
  background: var(--blanco);
  box-shadow: 0 0 0 4px rgba(0, 97, 52, 0.10);
}

.registro-input::placeholder {
  color: #bbb;
}

.registro-field select.registro-input,
.registro-field select.registro-input:hover,
.registro-field select.registro-input:focus,
.registro-field select.registro-input:active {
  background: #fafafa !important;
  border-color: #e8e8e8 !important;
  box-shadow: none !important;
  outline: none;
}

#podio-sucursal,
#podio-sucursal:hover,
#podio-sucursal:focus,
#podio-sucursal:focus-visible,
#podio-sucursal:active {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fafafa !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M4.47 6.97a.75.75 0 0 1 1.06 0L8 9.44l2.47-2.47a.75.75 0 1 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 0 1 0-1.06z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.85rem center !important;
  background-size: 1rem !important;
  border-color: #e8e8e8 !important;
  box-shadow: none !important;
  outline: none !important;
  padding-right: 2.3rem;
}

#reg-sucursal,
#reg-sucursal:hover,
#reg-sucursal:focus,
#reg-sucursal:focus-visible,
#reg-sucursal:active {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fafafa !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M4.47 6.97a.75.75 0 0 1 1.06 0L8 9.44l2.47-2.47a.75.75 0 1 1 1.06 1.06l-3 3a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 0 1 0-1.06z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.85rem center !important;
  background-size: 1rem !important;
  border-color: #e8e8e8 !important;
  box-shadow: none !important;
  outline: none !important;
  padding-right: 2.3rem;
}

#podio-sucursal::-ms-expand {
  display: none;
}

#reg-sucursal::-ms-expand {
  display: none;
}

.btn-registro {
  background: var(--primary-rojo);
  color: var(--blanco) !important;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}

.btn-registro:hover {
  background-color: #a82219;
  box-shadow: 0 6px 20px rgba(207, 43, 34, 0.45);
}

.btn-registro:active {
  transform: translateY(-1px);
}

.registro-aviso {
  color: #bbb;
  font-size: 0.8rem;
  margin-bottom: 0;
  text-align: center;
}

/* ============================================================
   DROPZONE — Estilos personalizados
   ============================================================ */
.dropzone {
  border: 2px dashed var(--primary-verde) !important;
  border-radius: 0.875rem !important;
  background-color: #f0f8f4 !important;
  min-height: 140px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background-color 0.2s, border-color 0.2s !important;
  padding: 1.25rem !important;
}

.dropzone:hover,
.dropzone.dz-drag-hover {
  background-color: #e2f4ec !important;
  border-color: #004d28 !important;
}

.dropzone .dz-message {
  margin: 0 !important;
  color: #888 !important;
  font-size: 0.95rem !important;
  text-align: center !important;
}

.dropzone .dz-message .dz-link {
  color: var(--primary-verde) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
}

.dropzone .dz-preview .dz-image {
  border-radius: 0.875rem !important;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: var(--primary-verde) !important;
}

.dropzone .dz-preview.dz-success .dz-success-mark svg,
.dropzone .dz-preview.dz-error .dz-error-mark svg {
  filter: none !important;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  color: var(--primary-verde) !important;
}

.dropzone .dz-preview .dz-details {
  background-color: rgba(0, 97, 52, 0.85) !important;
  border-radius: 0.875rem !important;
}

@media (max-width: 767.98px) {
  .registro-card {
    padding: 1.75rem 1.25rem;
    border-radius: 1.5rem;
  }

  .registro-titulo {
    font-size: 1.8rem;
  }

  .registro-field-group {
    grid-template-columns: 1fr;
  }

  .registro-hoja {
    width: clamp(84px, 22vw, 140px);
    opacity: 0.88;
  }

  .registro-hoja-bottom-left,
  .registro-hoja-bottom-right {
    display: none;
  }
}

/* ============================================================
   SECCIÓN: VIDEO & GALERÍA
   ============================================================ */
.video-galeria-section {
  background-color: var(--blanco);
  position: relative;
  overflow: hidden;
}

/* --- Video --- */
.vg-video-wrap {
  max-width: 780px;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  background: var(--negro);
  border: 3px solid rgba(0, 97, 52, 0.12);
}

.vg-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* --- Grid mosaico --- */
.vg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.vg-item {
  overflow: hidden;
  border-radius: 1rem;
  background: #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

/* Celda ancha (ocupa 2 columnas) */
.vg-item--wide {
  grid-column: span 2;
}

/* Celda alta (ocupa 2 filas) */
.vg-item--tall {
  grid-row: span 2;
}

.vg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.vg-item:hover .vg-img {
  transform: scale(1.06);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .vg-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .vg-item--wide {
    grid-column: span 2;
  }

  .vg-item--tall {
    grid-row: span 1;
  }
}

@media (max-width: 575.98px) {
  .vg-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .vg-item--wide,
  .vg-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .vg-video-wrap {
    border-radius: 1rem;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .g3 {
    display: none;
  }
}

/* Fix: d-md-block no debe sobrescribir display: grid */
@media (min-width: 768px) {
  .vg-grid.d-md-block {
    display: grid !important;
  }
}

/* --- Swiper Carrusel --- */
.galeria-swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  position: relative;
  width: 100%;
}

.galeria-swiper .swiper-wrapper {
  width: 100%;
}

.galeria-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #f5f5f5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  width: auto;
  height: 320px;
}

.galeria-swiper .swiper-slide:hover {
  box-shadow: 0 8px 25px rgba(0, 97, 52, 0.2);
}

.galeria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botones de navegación */
.galeria-swiper .swiper-button-prev,
.galeria-swiper .swiper-button-next {
  color: var(--blanco);
  background-color: var(--primary-verde);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
}

.galeria-swiper .swiper-button-prev i,
.galeria-swiper .swiper-button-next i {
  font-size: 24px;
  color: var(--blanco);
}

.galeria-swiper .swiper-button-prev:hover,
.galeria-swiper .swiper-button-next:hover {
  background-color: var(--primary-verde);
  color: var(--blanco);
  box-shadow: 0 4px 15px rgba(0, 97, 52, 0.3);
}

.galeria-swiper .swiper-button-prev {
  left: 0;
}

.galeria-swiper .swiper-button-next {
  right: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
  .galeria-swiper {
    padding: 15px 20px;
  }

  .galeria-swiper .swiper-button-prev,
  .galeria-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .galeria-swiper .swiper-button-prev i,
  .galeria-swiper .swiper-button-next i {
    font-size: 18px;
  }

  .galeria-swiper .swiper-button-prev {
    left: 0;
  }

  .galeria-swiper .swiper-button-next {
    right: 0;
  }
}

@media (max-width: 575.98px) {
  .galeria-swiper {
    padding: 10px 10px 20px 10px;
  }

  .galeria-swiper .swiper-button-prev,
  .galeria-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 97, 52, 0.8);
  }

  .galeria-swiper .swiper-button-prev i,
  .galeria-swiper .swiper-button-next i {
    font-size: 14px;
  }

  .galeria-swiper .swiper-slide {
    border-radius: 0.75rem;
  }
}

/* ============================================================
   SECCIÓN: FICHA DE PRODUCTO
   ============================================================ */
.producto-section {
  background: var(--blanco);
}

.producto-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* --- Galería --- */
.producto-galeria {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prod-img-principal-wrap {
  position: relative;
  background: var(--blanco);
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 97, 52, 0.10);
}

.prod-img-principal {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.prod-img-principal-wrap:hover .prod-img-principal {
  transform: scale(1.06);
}

.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-rojo);
  color: var(--blanco);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  letter-spacing: 0.4px;
}

.prod-thumbnails {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 3;
}

.prod-thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 0.75rem;
  background: #f5f5f5;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 3;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.prod-thumb:hover {
  border-color: var(--primary-verde);
}

.prod-thumb.active {
  border-color: var(--primary-verde);
  box-shadow: 0 0 0 3px rgba(0, 97, 52, 0.15);
}

/* --- Detalle --- */
.prod-marca {
  color: var(--primary-rojo);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.prod-nombre {
  color: var(--negro);
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.prod-formato {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.prod-precio-wrap {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.prod-precio {
  color: var(--negro);
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.prod-vigencia {
  color: #aaa;
  font-size: 0.8rem;
}

.prod-divisor {
  border-color: rgba(0, 0, 0, 0.08);
  margin: 1.25rem 0;
}

.prod-descripcion {
  color: var(--hover-text);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Selector cantidad */
.prod-cantidad-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-verde);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.prod-cantidad-ctrl {
  display: inline-flex;
  align-items: center;
  border: 2px solid #e8e8e8;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.prod-cant-btn {
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  color: var(--primary-verde);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-cant-btn:hover {
  background: rgba(0, 97, 52, 0.08);
}

.prod-cant-num {
  min-width: 36px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--negro);
  user-select: none;
}

/* Botón agregar */
.btn-agregar-carrito {
  background-color: var(--primary-rojo);
  color: var(--blanco) !important;
  border: none;
  border-radius: 0px 0px 8px 8px;
  font-size: 1.05rem;
  padding: 20px 0px;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(207, 43, 34, 0.30);
}

.btn-agregar-carrito2 {
  background-color: rgba(90, 90, 90, 0.3);
  color: #5a5a5a !important;
  border: none;
  border-radius: 0px 0px 8px 8px;
  font-size: 1.05rem;
  padding: 20px 0px;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-agregar-carrito:hover {
  background-color: #a82219;
  box-shadow: 0 6px 22px rgba(207, 43, 34, 0.45);
  transform: translateY(-2px);
}

.btn-agregar-carrito2:hover {
  background-color: rgba(90, 90, 90, 0.3);
}

.btn-agregar-carrito:active {
  transform: translateY(0);
}



/* Aviso éxito */
.prod-aviso-exito {
  margin-top: 1rem;
  background: rgba(0, 97, 52, 0.09);
  color: var(--primary-verde);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
}

/* Features */
.prod-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prod-features li {
  color: var(--hover-text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prod-features li i {
  color: var(--primary-verde);
  font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 767.98px) {
  .producto-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prod-nombre {
    font-size: 1.3rem;
  }

  .prod-precio {
    font-size: 1.8rem;
  }

  .prod-thumb {
    width: 56px;
    height: 56px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  background-color: var(--primary-verde);
  padding: 2rem 0;
  min-height: 200px;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
}

.footer-left {
  display: flex;
  flex-direction: row;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.footer-derechos,
.footer-desarrollado {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.footer-derechos {
  color: var(--blanco);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-desarrollado {
  color: var(--blanco);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-dev-logo {
  max-height: 15px;
  width: auto;
  opacity: 0.9;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-siguenos {
  color: var(--blanco);
  font-size: 0.95rem;
  font-weight: 500;
  margin-right: 8px;
}

.footer-social-link {
  color: var(--blanco);
  font-size: 1.4rem;
  margin-left: 10px;
  opacity: 0.85;
  line-height: 1;
  transition: opacity 0.2s, transform 0.2s;
}

.footer-social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--blanco);
}

@media (max-width: 767.98px) {
  .footer-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-desarrollado {
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
}

/* ============================================================
   BOTÓN FLOTANTE CARRITO
   ============================================================ */
.btn-carrito-flotante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background-color: var(--primary-rojo);
  border: 2px solid var(--blanco);
  color: var(--blanco) !important;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 16px rgba(207, 43, 34, 0.40);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-carrito-flotante:hover {
  transform: scale(1.25);
  box-shadow: 0 6px 24px rgba(207, 43, 34, 0.55);
  color: var(--blanco) !important;
}

.carrito-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--primary-verde);
  color: var(--blanco);
  font-size: 0.7rem;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid var(--blanco);
}

@media (max-width: 767.98px) {
  .btn-carrito-flotante {
    top: auto;
    bottom: 24px;
    right: 16px;
    transform: none;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .btn-carrito-flotante:hover {
    transform: scale(1.1);
  }
}

/* ============================================================
   EFECTOS — Hover
   ============================================================ */
.hvr-1 {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-1:hover,
.hvr-1:focus,
.hvr-1:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* ============================================================
   salvo-landing.css
   Estilos exclusivos de la landing "Enciende tu verano Salvo 2026"
   ============================================================ */

/* ── Fondo FUERA del @layer para que no sea pisado por salvo.css ── */
html.landing-page {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: #000;
  background-image: url('/salvo2026/img/bg-puntos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

body.landing-page {
  margin: 0;
  padding: 2rem 1rem;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  background-image: url('/salvo2026/img/bg-puntos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow-x: hidden;
}

@layer subodega-landing {

  /* ── Reset básico ── */
  html,
  body {
    margin: 0;
    padding: 0;
  }

  /* ── Capa oscura semitransparente ── */
  body.landing-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    z-index: 0;
  }

  /* ── Asegura que el contenido esté encima ── */
  body.landing-page>* {
    position: relative;
    z-index: 1;
  }

  /* ── Mejora en móviles ── */
  @media (max-width: 768px) {
    body.landing-page {
      padding: 1.5rem 1rem;
    }
  }

  /* ============================================================
     TODO LO SIGUIENTE ESTÁ DENTRO DEL WRAPPER #salvo-landing
     Nada de esto afecta elementos fuera de ese div
     ============================================================ */
  @scope (#salvo-landing) {

    /* ── Variables propias ── */
    :scope {
      --sl-red: #d0021b;
      --sl-green: #2d7a2d;
      --sl-white: #ffffff;
      --sl-dark: #111111;
      --sl-glass: rgba(255, 255, 255, 0.82);
      --sl-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
      --sl-radius: 18px;

      position: relative;
      z-index: 1;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── CARD PRINCIPAL ── */
    .sb-card {
      width: 100%;
      max-width: 560px;
      background: var(--sl-glass);
      backdrop-filter: blur(14px) saturate(1.4);
      border-radius: var(--sl-radius);
      box-shadow: var(--sl-shadow);
      overflow: hidden;
      animation: sl-slideUp .55s cubic-bezier(.22, .68, 0, 1.2) both;
    }

    @keyframes sl-slideUp {
      from {
        opacity: 0;
        transform: translateY(40px) scale(.97);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* ── HEADER DE LA CARD ── */
    .sb-card__header {
      background: var(--sl-white);
      padding: 1.5rem 1.75rem 1.25rem;
      position: relative;
      overflow: hidden;
    }

    .sb-card__logo {
      justify-content: center;
      align-items: center;
    }

    .sb-card__logo span {
      color: var(--sl-green);
    }

    .sb-card__subtitle {
      font-size: .75rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .78);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: .35rem;
    }

    /* ── CUERPO ── */
    .sb-card__body {
      padding: 1.75rem 1.75rem 1.5rem;
      background-color: var(--sl-white);
    }

    /* ── BUSCADOR ── */
    .sb-search-label {
      display: block;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--sl-dark);
      margin-bottom: .6rem;
    }

    .sb-search-wrap {
      display: flex;
    }

    .sb-search-wrap input {
      flex: 1;
      border: 2px solid #ddd;
      border-radius: 10px 0 0 10px;
      padding: .7rem 1rem;
      font-family: 'Montserrat', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      outline: none;
      transition: border-color .2s;
      background: #fff;
      color: var(--sl-dark);
    }

    .sb-search-wrap input:focus {
      border-color: var(--sl-red);
    }

    .sb-search-wrap input::placeholder {
      font-weight: 400;
      color: #aaa;
    }

    /* ── FILTRO SUCURSAL ── */
    .sb-filter-wrap {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1.2rem;
    }

    .sb-filter-wrap .sb-search-label {
      margin-bottom: 0;
      white-space: nowrap;
    }

    /* ── SELECT SUCURSAL ── */
    .sb-select {
      flex: 1;
      border: 2px solid #ddd;
      border-radius: 10px;
      padding: .65rem 2.2rem .65rem .9rem;
      font-family: 'Montserrat', sans-serif;
      font-size: .85rem;
      font-weight: 600;
      color: var(--sl-dark);
      background: #fff;
      outline: none;
      cursor: pointer;
      transition: border-color .2s;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23888' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right .7rem center;
    }

    .sb-select:focus {
      border-color: var(--sl-red);
    }

    /* ── BOTÓN ── */
    .sb-btn {
      background: var(--sl-red);
      color: #fff !important;
      border: none;
      border-radius: 0 10px 10px 0 !important;
      padding: .7rem 1.15rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: .4rem;
      transition: background .2s, transform .12s;
      white-space: nowrap;
    }

    .sb-btn:hover {
      background: #a8001a;
    }

    .sb-btn:active {
      transform: scale(.96);
    }

    .sb-divider {
      height: 1px;
      background: #00000059;
      border-radius: 2px;
      margin: 1.25rem 0;
    }

    .sb-results-title {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #666;
      margin-bottom: .8rem;
    }

    .sb-results-title span {
      color: var(--sl-red);
      font-size: .85rem;
    }

    .sb-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: .55rem;
      max-height: 320px;
      overflow-y: auto;
      padding-right: 4px;
    }

    .sb-list::-webkit-scrollbar {
      width: 5px;
    }

    .sb-list::-webkit-scrollbar-track {
      background: #f0f0f0;
      border-radius: 4px;
    }

    .sb-list::-webkit-scrollbar-thumb {
      background: var(--sl-red);
      border-radius: 4px;
    }

    .sb-item {
      display: flex;
      align-items: center;
      gap: .9rem;
      background: #fff;
      border: 1.5px solid #eee;
      border-radius: 12px;
      padding: .75rem 1rem;
      cursor: pointer;
      transition: border-color .18s, box-shadow .18s, transform .12s;
      animation: sl-fadeIn .3s ease both;
    }

    @keyframes sl-fadeIn {
      from {
        opacity: 0;
        transform: translateX(-10px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .sb-item:hover {
      box-shadow: 0 4px 16px rgba(208, 2, 27, .12);
      transform: translateX(3px);
    }

    .sb-item__pos {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .72rem;
      font-weight: 700;
      flex-shrink: 0;
      border: 1.5px solid #ddd;
      background: #f5f5f5;
      color: #666;
    }

    .sb-item__pos.gold {
      background: #FFF3CD;
      color: #856404;
      border-color: #FFD700;
    }

    .sb-item__pos.silver {
      background: #f0f0f0;
      color: #555;
      border-color: #ccc;
    }

    .sb-item__pos.bronze {
      background: #FFF0E0;
      color: #8B4513;
      border-color: #cd7f32;
    }

    .sb-item__icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--sl-red), #ff4d4d);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .sb-item__icon.green {
      background: linear-gradient(135deg, var(--sl-green), #4caf50);
    }

    .sb-item__info {
      flex: 1;
      min-width: 0;
    }

    .sb-item__name {
      font-weight: 700;
      font-size: .92rem;
      color: var(--sl-dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin: 0;
    }

    .sb-item__meta {
      font-size: .72rem;
      color: #888;
      margin-top: .1rem;
      margin-bottom: 0;
    }

    .sb-item__badge {
      font-size: .68rem;
      font-weight: 700;
      padding: .2rem .55rem;
      border-radius: 20px;
      background: #f0fff0;
      color: var(--sl-green);
      border: 1px solid var(--sl-green);
      white-space: nowrap;
    }

    .sb-item__badge.red {
      background: #fff0f0;
      color: var(--sl-red);
      border-color: var(--sl-red);
    }

    .sb-empty {
      text-align: center;
      padding: 2rem 1rem;
      color: #aaa;
    }

    .sb-empty i {
      font-size: 2.5rem;
      display: block;
      margin-bottom: .6rem;
    }

    .sb-empty p {
      font-size: .85rem;
      font-weight: 600;
      margin: 0;
    }

    .sb-card__footer {
      background: var(--sl-white);
      padding: .7rem 1.75rem;
      text-align: center;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--sl-dark);
    }
  }
}

/* ============================================================
   MODAL DE BIENVENIDA - FIX VISIBILIDAD
   ============================================================ */
#modalBienvenida {
  display: none;
}

#modalBienvenida.show {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1050 !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal.fade {
  transition: opacity 0.15s linear;
  opacity: 0;
}

.modal.show {
  opacity: 1;
  display: block !important;
  visibility: visible !important;
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
  z-index: 1050;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  z-index: 1050;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.modal-backdrop.show {
  opacity: 0.5;
  display: block !important;
  visibility: visible !important;
}

/* Estilos minimalistas específicos para el modal de bienvenida */
#modalBienvenida .modal-dialog {
  max-width: 400px;
}

#modalBienvenida .modal-content {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#modalBienvenida .btn-close {
  margin: 0;
  opacity: 0.6;
}

#modalBienvenida .btn-close:hover {
  opacity: 1;
}

#main-scroll {
  min-height: 100vh;
  overflow: hidden;
}

/* FOOTER BASE */
.footer-section {
  background: var(--primary-verde);
  color: #fff;
  padding: 40px 0;
  width: 100%;
}

/* CONTENEDOR FLEX */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  /* 🔥 CLAVE: evitar que se corte */
  flex-wrap: wrap;
}

/* IZQUIERDA */
.footer-left {
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-left p {
  margin: 0;
  /* 🔥 esto corrige el descuadre */
}

.footer-derechos {
  margin: 0;
  font-size: 14px;
}

.footer-desarrollado {
  margin: 5px 0 0;
  font-size: 13px;
}

/* LOGO DEV */
.footer-dev-logo {
  height: 25px;
}

/* DERECHA */
.footer-right {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.footer-social-link:hover {
  color: #0d6efd;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }
}

/* ── Notie global (para páginas con navbar ~90px) ── */
body > .notie-container {
  position: fixed !important;
  z-index: 999999 !important;
}

.notie-container {
  height: 90px !important;
  z-index: 99999 !important;
}

/* ── Notie en la landing (sin navbar, al ras) ── */
body.landing-page .notie-container,
body.landing-page > .notie-container {
  top: 0 !important;
}

.title-login {
  font-weight: bold;
  text-decoration: none;
  color: var(--primary-verde);
  text-decoration: none;
}

/* ============================================================
   MODAL SELECCIÓN DE ENTREGA / SUCURSAL
   Agregar al final de salvo.css
   ============================================================ */

/* Overlay */
.modal-suc-entrega .modal-dialog {
  max-width: 480px;
  width: 100%;
}

/* Caja principal */
.modal-suc-content {
  border: none;
  border-radius: 16px;
  padding: 4rem 4rem;
  position: relative;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Botón cerrar X */
.modal-suc-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #888;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.modal-suc-close:hover {
  color: #222;
}

/* Bloques (domicilio / sucursal) */
.modal-suc-bloque {
  text-align: center;
  margin-bottom: 0.4rem;
}

/* Título verde */
.modal-suc-titulo {
  color: #026550;
  font-weight: 700;
  text-align: center;
}

/* Subtítulo gris */
.modal-suc-subtitulo {
  font-size: 16px;
  color: #898989;
  margin-bottom: 0.9rem;
}

/* Label de selects */
.modal-suc-label-select {
  font-size: 16px;
  color: #898989;
  margin-bottom: 0.4rem;
  margin-top: 0.8rem;
  text-align: center;
}

/* Wrap del input CP */
.modal-suc-field-wrap {
  width: 100%;
}

/* Input Código Postal */
.modal-suc-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 2px solid #c0392b;
  border-radius: 50px;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.modal-suc-input::placeholder {
  color: #aaa;
}

.modal-suc-input:focus {
  border-color: #1a6b3c;
  box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.12);
}

/* Feedback CP */
.modal-suc-feedback {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  text-align: center;
}

.modal-suc-feedback.ok {
  color: #1a6b3c;
  background: #e8f5ee;
}

.modal-suc-feedback.error {
  color: #c0392b;
  background: #fdecea;
}

/* Selects */
.modal-suc-select {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 2px solid #c0392b;
  border-radius: 50px;
  font-size: 0.92rem;
  color: #333;
  outline: none;
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0.2rem;
}

.modal-suc-select:focus {
  border-color: #1a6b3c;
  box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.12);
}

.modal-suc-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Separador "o" */
.modal-suc-separador {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0;
}

.modal-suc-sep-linea {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.modal-suc-sep-texto {
  font-size: 0.95rem;
  color: #888;
  font-weight: 500;
}

/* Botón Continuar */
.modal-suc-btn-continuar {
  display: block;
  width: 220px;
  padding: 0.5rem;
  margin: 1.4rem auto 0; /* 👈 esto lo centra */
  background: #1a6b3c;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.modal-suc-btn-continuar:hover {
  background: #155730;
  transform: translateY(-1px);
}

.modal-suc-btn-continuar:active {
  transform: translateY(0);
}

.modal-suc-btn-continuar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.modal-suc-footer {
  text-align: center;
  font-size: 16px;
  color: #898989;
  margin-top: 1rem;
  margin-bottom: 0;
}

.modal-suc-login {
  color: #c0392b;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.modal-suc-login:hover {
  text-decoration: underline;
  color: #a93226;
}

/* Responsive */
@media (max-width: 500px) {
  .modal-suc-content {
    padding: 1.6rem 1.2rem 1.3rem;
  }

  .modal-suc-titulo {
    font-size: 1.05rem;
  }
}