

/* =========================
   BASE
========================= */
body{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =========================
   RETAIL HERO
========================= */

.retail-hero-section{
  position:relative;
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../images/banner_retail.avif") center/cover no-repeat;
  margin-top:var(--navbar-height);
}

.retail-hero-glow-o{
  position:absolute;
  bottom:-30%;
  right:-10%;
  width:700px;
  height:700px;
  background:radial-gradient(circle, rgba(239,130,32,0.1), transparent 60%);
  pointer-events:none;
}

.retail-hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}

.retail-hero-content{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:800px;
  padding:120px 20px 80px;
}

.retail-hero-pill{
  display:inline-block;
  margin-bottom:24px;
  padding:8px 20px;
  border-radius:20px;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--primary);
  background:rgba(239,130,32,0.1);
  border:1px solid rgba(239,130,32,0.2);
}

.retail-hero-content h1{
  font-size:3.5rem;
  font-weight:700;
  line-height:1.1;
  margin-bottom:20px;
  color:#fff;
}

.retail-hero-sub{
  font-size:1.2rem;
  color:rgba(255,255,255,0.65);
  max-width:600px;
  margin:0 auto 36px;
  line-height:1.6;
}

.retail-hero-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin:0 0 48px;
}

.retail-hero-buttons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  padding:16px 36px;
  border-radius:12px;
  font-weight:700;
  font-size:16px;
  line-height:1;
  text-decoration:none;
  margin:0;
  border:1.5px solid transparent;
  box-sizing:border-box;
  box-shadow:none !important;
  transition:all .35s ease;
}

.retail-hero-buttons .btn-primary{
  background:linear-gradient(135deg,var(--primary),#ff9a3c);
  color:#fff;
}

.retail-hero-buttons .btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 0 40px rgba(239,130,32,0.5) !important;
}

.retail-hero-buttons .btn-secondary{
  color:rgba(255,255,255,0.8);
  border-color:rgba(255,255,255,0.2);
}

.retail-hero-buttons .btn-secondary:hover{
  transform:translateY(-3px);
  border-color:var(--primary);
  color:#fff;
  background:rgba(239,130,32,0.08);
}

.retail-hero-buttons .btn-primary{
  background:linear-gradient(135deg,var(--primary),#ff9a3c);
  color:#fff;
}

.retail-hero-stats{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.retail-hero-stat{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.retail-hero-stat-num{
  font-size:1.8rem;
  font-weight:800;
  color:var(--primary);
  line-height:1;
}

.retail-hero-stat-label{
  font-size:0.8rem;
  color:rgba(255,255,255,0.5);
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.retail-hero-stat-dot{
  width:4px;
  height:4px;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
}

.retail-hero-fade{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:120px;
  background:linear-gradient(to top, #fff, transparent);
  pointer-events:none;
}

@media(max-width:768px){
  .retail-hero-content h1{
    font-size:2.2rem;
  }
  .retail-hero-sub{
    font-size:1rem;
  }
  .retail-hero-stats{
    gap:12px;
  }
  .retail-hero-stat-num{
    font-size:1.4rem;
  }
}

/* Videos */
/* SECTION */
.apple-scroll{
  padding:160px 20px;
}

/* CONTAINER */
.apple-container{
  display:flex;
  gap:120px;
  max-width:1300px;
  margin:0 auto;
  align-items:flex-start;
}

/* TEXT */
.apple-text{
  flex:1;
  max-width:520px;
  padding-top:140px;
}

/* STEPS */
.step{
  display:flex;
  gap:24px;
  margin-bottom:320px;
  opacity:0.15;
  transform:translateY(80px) scale(0.98);
  transition:
    opacity .6s ease,
    transform .8s cubic-bezier(0.22,1,0.36,1);
}

.step.active{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* INDICATOR */
.step-indicator{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding-top:6px;
}

.step-line{
  width:2px;
  flex:1;
  min-height:40px;
  background:rgba(0,0,0,0.08);
  transition:background .6s ease;
}

.step:last-child .step-line{
  display:none;
}

.step.active .step-line{
  background:var(--primary);
}

.step-num{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:13px;
  font-weight:700;
  color:#aaa;
  background:rgba(0,0,0,0.04);
  border:1.5px solid rgba(0,0,0,0.08);
  transition:all .5s ease;
  flex-shrink:0;
}

.step.active .step-num{
  color:#fff;
  background:var(--primary);
  border-color:var(--primary);
  box-shadow:0 4px 15px rgba(239,130,32,0.3);
}

/* BODY */
.step-body{
  flex:1;
}

.step-body h2{
  font-size:44px;
  font-weight:600;
  letter-spacing:-0.02em;
  margin-bottom:16px;
  line-height:1.1;
  color:#111;
  transition:color .5s ease;
}

.step:not(.active) .step-body h2{
  color:#aaa;
}

.step-body p{
  color:#6e6e73;
  font-size:18px;
  line-height:1.7;
  max-width:420px;
}

/* RIGHT SIDE */
.apple-visual{
  flex:2;
  max-width:none;

  position:sticky;
  top:140px;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* VIDEO WRAPPER */
.video-wrapper{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  min-height:420px;
  max-height:620px;
  border-radius:32px;
  overflow:hidden;
  transform:scale(1.05);
  background:#000;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.1),
    0 80px 140px rgba(0,0,0,0.2);
}

/* STRIPE-LIKE GLOW */
.video-wrapper::before{
  content:"";
  position:absolute;
  inset:-25%;
  background:radial-gradient(circle, rgba(0,122,255,0.25), transparent 70%);
  filter:blur(80px);
  z-index:0;
}

/* VIDEO */
.video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;

  opacity:0;
  transform:scale(1.08);

  transition:
    opacity .6s ease,
    transform 1.2s cubic-bezier(0.22,1,0.36,1);

  z-index:1;
}

.video.active{
  opacity:1;
  transform:scale(1);
}

/* MOBILE */
@media(max-width:900px){

  .apple-container{
    display:block;
  }

  .apple-text{
    max-width:100%;
  }

  .apple-visual{
    position:relative;
    top:auto;
    transform:none;
    margin-top:40px;
  }

  .step{
    margin-bottom:60px;
    opacity:1;
    transform:none;
    gap:0;
    flex-direction:column;
  }

  .step-indicator{
    display:none;
  }

  .step-body h2{
    font-size:28px;
  }

  .video-wrapper{
    position:relative;
    aspect-ratio:16/9;
    border-radius:24px;
    margin-bottom:20px;
    overflow:hidden;
    display:none;
  }

  .video{
    position:relative;
    opacity:1 !important;
    transform:none !important;
    margin-bottom:20px;
    border-radius: 24px;
  }

  .mobile-video{
    width:100%;
    border-radius:24px;
    margin-bottom:20px;

    opacity:0;
    transform:scale(0.96);

    transition:
      opacity .6s ease,
      transform .8s cubic-bezier(0.22,1,0.36,1);

    box-shadow:
      0 20px 40px rgba(0,0,0,0.15);
  }

  .mobile-video.in-view{
    opacity:1;
    transform:scale(1);
  }

}

@media(min-width:1600px){

  .apple-container{
    max-width:1500px;
  }

  .video-wrapper{
    max-height:700px;
  }

}

/* =========================
   SECTION SPACING
========================= */
.section{
  padding:120px 8%;
  max-width:1400px;
  margin:auto;
  position:relative;
}

.center{
  text-align:center;
}

/* =============================
   IMAGE + TEXT SECTION
============================= */
.image-text {
    position: relative;
    padding: 60px 0;
    background-color: #fff;
}

.image-text .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.image-text__half {
    display: flex;
    flex-direction: column;
    padding: 15px;
    justify-content: center;
}

.image-text__img img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-text__img img:hover {
    transform: scale(1.03);
}

.image-text__text {
    max-width: 500px;
}

.image-text__text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #111;
}

.image-text__text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.image-text__text a.btn {
    margin-top: 20px;
    align-self: center;
}

.flex-opposite {
    flex-direction: row-reverse;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .image-text__text h2 {
        font-size: 1.7rem;
        text-align: center;
    }
    .image-text__text p {
        font-size: 1rem;
        text-align: center;
    }
    .image-text__text a.btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .flex-opposite {
        flex-direction: column !important;
    }
    .image-text__img img {
        max-width: 100%;
    }
    .image-text__text h2 {
        font-size: 1.5rem;
    }
    .image-text__text p {
        font-size: 0.95rem;
    }
}

/* =============================
   RETAIL — IN-STORE SECTION
============================= */

.retail-store-section{
  background:#fafafa;
  position:relative;
}

.store-content{
  display:flex;
  flex-direction:column;
  padding:15px;
  max-width:520px;
}

.store-content h2{
  font-size:2rem;
  margin-bottom:16px;
  line-height:1.3;
  color:#111;
}

.store-content p{
  font-size:1rem;
  line-height:1.7;
  color:#555;
  margin-bottom:16px;
}

.store-content .btn-primary{
  align-self:flex-start;
  margin-top:10px;
}

.store-highlight{
  position:relative;
  padding-left:20px;
  margin-top:8px;
  border-left:3px solid var(--primary);
  color:#444 !important;
  font-style:italic;
}

/* PILLS */
.store-pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.store-pill{
  display:inline-block;
  padding:6px 16px;
  border-radius:20px;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.3px;
  text-transform:uppercase;
  color:var(--primary);
  background:rgba(239,130,32,0.08);
  border:1px solid rgba(239,130,32,0.15);
  transition:all .3s ease;
}

.store-pill:hover{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
}

/* IMAGE WRAP */
.store-image-wrap{
  position:relative;
  display:inline-block;
}

.store-image-wrap img{
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  transition:transform .5s ease;
}

.store-image-wrap:hover img{
  transform:scale(1.02);
}

.store-image-glow{
  position:absolute;
  inset:-8px;
  border-radius:20px;
  background:linear-gradient(135deg, rgba(239,130,32,0.15), transparent 50%, rgba(239,130,32,0.05));
  z-index:-1;
  opacity:0;
  transition:opacity .5s ease;
}

.store-image-wrap:hover .store-image-glow{
  opacity:1;
}

/* STATS */
.store-stats{
  display:flex;
  gap:20px;
  padding:20px 24px;
  margin:12px 0 18px;
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.05);
  box-shadow:0 4px 20px rgba(0,0,0,0.04);
}

.store-stat{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.store-stat-num{
  font-size:1.4rem;
  font-weight:800;
  color:var(--primary);
  line-height:1.1;
}

.store-stat-label{
  font-size:0.75rem;
  color:#888;
  line-height:1.3;
  text-transform:uppercase;
  letter-spacing:0.3px;
}

.store-stat-divider{
  width:1px;
  background:rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media(max-width:992px){
  .store-content{
    max-width:100%;
    text-align:center;
  }
  .store-content .btn-primary{
    align-self:center;
  }
  .store-pills{
    justify-content:center;
  }
  .store-stats{
    justify-content:center;
    flex-wrap:wrap;
  }
  .store-stat-divider{
    display:none;
  }
}

@media(max-width:768px){
  .store-content h2{
    font-size:1.5rem;
  }
  .store-content p{
    font-size:0.95rem;
  }
  .store-stats{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:16px;
  }
}

/* =========================
   FLOW 
========================= */

.flow-section{
  position:relative;
}

.flow-container{
  position:sticky;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  margin-top:80px;
  padding:0 40px;
}

.flow-line{
  position:absolute;
  top:50%;
  left:0;
  right:0;
  height:2px;
  background:rgba(0,0,0,0.1);
  transform:translateY(-50%);
  z-index:0;
}

.flow-line::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:var(--progress, 0%);
  background:linear-gradient(90deg, #FA5E3A, #ff8a50);
  transition:width .2s ease-out;
}

/* STEP */
.flow-step{
  position:relative;
  z-index:2;

  padding:16px 26px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);

  font-weight:500;

  opacity:0;
  transform:translateY(30px) scale(0.95);

  transition:
    transform .5s cubic-bezier(.16,1,.3,1),
    opacity .5s ease,
    background .3s ease,
    color .3s ease;
}

.flow-step::before{
  content:"";
  position:absolute;
  top:-18px;
  left:50%;
  transform:translateX(-50%);
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ccc;
  transition:.3s;
}

/* ACTIVO */
.flow-step.active{
  opacity:1;
  transform:translateY(0) scale(1);

  background:var(--primary);
  color:#fff;

  box-shadow:0 10px 30px rgba(250,94,58,0.3);
}

.flow-step.active::before{
  background:var(--primary);
  box-shadow:0 0 10px rgba(250,94,58,0.6);
}

/* HOVER */
.flow-step:hover{
  transform:translateY(-6px) scale(1.05);
}

.flow-section{
  position:relative;
  min-height:15vh;
}

/* =========================
   MOBILE
========================= */
@media(max-width:900px){

  .flow-container{
    flex-direction:column;
    align-items:flex-start;
    gap:50px;
  }

  .flow-line{
    left:20px;
    top:0;
    bottom:0;
    width:2px;
    height:100%;
    transform:none;
  }

  .flow-line::after{
    width:100%;
    height:0%;
  }

  .flow-step{
    margin-left:40px;
  }

  .flow-step::before{
    left:-26px;
    top:50%;
    transform:translateY(-50%);
  }

  .flow-section{
    min-height:auto;
  }

  .flow-container{
    position:relative;
    transform:none;
    top:auto;
  }

}

/* =========================
   CARD TITLES
========================= */
.glass-card h3{
  font-size:20px;
  margin-bottom:10px;
}

/* =========================
   FADE-IN (STRIPE STYLE)
========================= */
.section,
.glass-card,
.flow-step{
  opacity:0;
  transform:translateY(30px);
  transition:all .8s cubic-bezier(.16,1,.3,1);
}

.section.show,
.glass-card.show,
.flow-step.show{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   STAGGER EFFECT
========================= */
.grid-4 .glass-card:nth-child(1){ transition-delay:.1s; }
.grid-4 .glass-card:nth-child(2){ transition-delay:.2s; }
.grid-4 .glass-card:nth-child(3){ transition-delay:.3s; }
.grid-4 .glass-card:nth-child(4){ transition-delay:.4s; }

/* =========================
   BUTTON UPGRADE
========================= */
.btn-primary{
  position:relative;
  overflow:hidden;
}

/* Shine effect */
.btn-primary::after{
  content:\"\"; 
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition:.6s;
}

.btn-primary:hover::after{
  left:100%;
}

/* =========================
   BACKGROUND GRADIENT FX
========================= */
.section::before{
  content:\"\"; 
  position:absolute;
  width:300px;
  height:300px;
  background:radial-gradient(circle, rgba(250,94,58,0.15), transparent 70%);
  top:-100px;
  right:-100px;
  z-index:-1;
}

/* =========================
   LAYOUT
========================= */
.retail-features{
  display:flex;
  position:relative;
  padding:120px 8%;
  gap:80px;
}

/* LEFT TEXT */
.features-container{
  width:50%;
}

.feature-block{
  min-height:80vh;
  display:flex;
  flex-direction:column;
  justify-content:center;

  opacity:0.2;
  transform:translateY(40px);
  transition:all .6s cubic-bezier(.16,1,.3,1);
}

.feature-block.active{
  opacity:1;
  transform:translateY(0);
}

/* TEXT STYLE */
.feature-block h2{
  font-size:40px;
  margin-bottom:20px;
}

.feature-block p{
  font-size:18px;
  color:#666;
  max-width:500px;
}

.grid-2{
  grid-template-columns:1fr 1fr;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1000px){

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

}

@media(max-width:600px){

  .grid-2,
  .grid-4{
    grid-template-columns:1fr;
  }

  .flow-container{
    flex-direction:column;
  }

  .flow-arrow{
    transform:rotate(90deg);
  }

}

/* =========================
   ANALYTICS SECTION
========================= */

.analy-section{
  display:flex;
  flex-direction:column;
  gap:140px;
}

/* BLOQUES */
.analy-block{
  display:grid;
  grid-template-columns: 0.9fr 1.8fr;
  align-items:center;
  gap:100px;
}

/* REVERSE */
.analy-block.reverse{
  grid-template-columns: 1.6fr 1fr;
}

.analy-block.reverse .analy-text{
  order:2;
}

.analy-block.reverse .analy-video{
  order:1;
}

/* TEXT */
.analy-text{
  position:relative;
  z-index:2;
  max-width:520px;
  font-size:18px;
  line-height:1.8;
  color:#555;

  margin-bottom:30px;

  opacity:0.9;
  letter-spacing:0.2px;
}

.analy-text h2{
  font-size:42px;
  margin-bottom:20px;
  line-height:1.2;
}

.analy-text p{
  margin-bottom:25px;
  text-align: justify;
}

.analy-text::after{
  content:"";
  display:block;

  width:40px;
  height:3px;

  margin-top:25px;

  background:linear-gradient(90deg, var(--primary), transparent);
  border-radius:2px;

  opacity:0.6;
}

/* LIST */
.analy-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.analy-list li{
  display:flex;
  align-items:center;
  gap:16px;

  padding:16px 20px;
  border-radius:16px;

  background:rgba(0,0,0,0.03);
  border:1px solid rgba(0,0,0,0.05);

  font-size:15.5px;
  color:#333;

  transition:all .3s cubic-bezier(.2,.8,.2,1);
}

.analy-list li i{
  width:40px;
  height:40px;
  flex-shrink:0;
  display:inline-block;
  text-align:center;
  line-height:40px;
  font-size:18px;
  color:#fff;
  background:linear-gradient(135deg, var(--primary), #ff9a3c);
  border-radius:12px;
  opacity:0;
  transform:translateY(10px) scale(0.9);
  animation:fadeUp .6s ease forwards;
}

.analy-list li:hover i{
  box-shadow:0 6px 20px rgba(239,130,32,0.35);
  transform:scale(1.05);
}

.analy-list li:nth-child(1){ animation-delay:.1s; }
.analy-list li:nth-child(2){ animation-delay:.2s; }
.analy-list li:nth-child(3){ animation-delay:.3s; }
.analy-list li:nth-child(4){ animation-delay:.4s; }
.analy-list li:nth-child(5){ animation-delay:.5s; }

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}


.analy-list li:hover{
  transform:translateY(-4px) scale(1.02);

  background:#fff;
  border-color:rgba(0,0,0,0.08);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    0 4px 10px rgba(0,0,0,0.05);
}

/* VIDEO */
.section{
  padding:140px 10%;
  max-width:1700px;
  margin:auto;
  position:relative;
}

.analy-video{
  position:relative;
  border-radius:24px;
  overflow:hidden;

  width:100%;
  max-width:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.2),
    0 10px 30px rgba(0,0,0,0.1);
}

.analy-video video{
  width:100%;
  height:auto;
  display:block;

  transition:transform 1s ease;
}

/* HOVER */
.analy-video:hover video{
  transform:scale(1.03);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

  /* =========================
     SECTION
  ========================= */
  .section{
    padding:100px 20px;
  }

  .analy-section{
    gap:100px;
  }

  /* =========================
     BLOCK
  ========================= */
  .analy-block{
    display:flex;
    flex-direction:column;
    gap:30px;
  }

  .analy-video{
    order:1;
  }

  .analy-text{
    order:2;
  }

  /* =========================
     VIDEO
  ========================= */
  .analy-video{
    border-radius:20px;

    box-shadow:
      0 20px 40px rgba(0,0,0,0.15);
  }

  .analy-video video{
    border-radius:20px;
  }


  /* =========================
     LIST
  ========================= */
  .analy-list{
    gap:10px;
  }

  .analy-list li{
    padding:12px 14px;
    font-size:14.5px;
    border-radius:12px;

    background:rgba(0,0,0,0.025);
  }

  .analy-list li:hover{
    transform:none;
    box-shadow:none;
  }

  /* =========================
     ICONS
  ========================= */
  .analy-list li i{
    width:30px;
    height:30px;
    line-height:30px;
    font-size:14px;
  }

}

/* =============================
   GSTORE — DISCOVER SECTION
============================= */

.gstore-section{
  position:relative;
  width:100%;
  padding:120px 20px;
  background:linear-gradient(135deg,#0d0d0d 0%,#16213e 50%,#111 100%);
  color:#fff;
  overflow:hidden;
  text-align:center;
}

.gstore-grid-overlay{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:50px 50px;
  pointer-events:none;
}

.gstore-glow{
  position:absolute;
  top:50%;
  left:50%;
  width:600px;
  height:600px;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(239,130,32,0.1), transparent 60%);
  pointer-events:none;
  animation:gstorePulse 6s ease-in-out infinite alternate;
}

@keyframes gstorePulse{
  0%{opacity:0.6;transform:translate(-50%,-50%) scale(1);}
  100%{opacity:1;transform:translate(-50%,-50%) scale(1.1);}
}

.gstore-content{
  position:relative;
  z-index:1;
  max-width:800px;
  margin:0 auto;
}

.gstore-badge{
  display:inline-block;
  margin-bottom:24px;
  padding:8px 20px;
  border-radius:20px;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--primary);
  background:rgba(239,130,32,0.1);
  border:1px solid rgba(239,130,32,0.2);
}

.gstore-content h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:16px;
  color:#fff;
}

.gstore-content h4{
  font-size:18px;
  font-weight:400;
  color:rgba(255,255,255,0.6);
  margin-bottom:32px;
}

.gstore-content p{
  font-size:17px;
  line-height:1.8;
  color:rgba(255,255,255,0.75);
  margin-bottom:32px;
  text-align:center;
}

.gstore-tags{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:36px;
}

.gstore-tag{
  display:inline-block;
  padding:8px 20px;
  border-radius:20px;
  font-size:0.85rem;
  color:rgba(255,255,255,0.7);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  transition:all .3s ease;
}

.gstore-tag:hover{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
  transform:translateY(-2px);
}

.gstore-cta{
  display:inline-block;
  padding:16px 44px;
  background:linear-gradient(135deg,var(--primary),#ff9a3c);
  color:#fff;
  border-radius:12px;
  font-weight:700;
  font-size:16px;
  text-decoration:none;
  transition:all .35s ease;
}

.gstore-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 0 40px rgba(239,130,32,0.5);
}

@media(max-width:992px){
  .gstore-section{
    padding:80px 20px;
  }
  .gstore-content h2{
    font-size:32px;
  }
  .gstore-content p{
    font-size:16px;
  }
}

@media(max-width:768px){
  .gstore-section{
    padding:60px 16px;
  }
  .gstore-content h2{
    font-size:28px;
  }
  .gstore-content h4{
    font-size:16px;
  }
  .gstore-content p{
    font-size:15px;
  }
}

/* ==============================
   RETAIL SECTION
============================== */
.retail-section {
    background-color: #fff;
    padding: 60px 0;
}

.retail-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.retail-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.retail-half {
    display: flex;
    flex-direction: column;
    padding: 15px;
    justify-content: center;
}

.retail-img img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.retail-img img:hover {
    transform: scale(1.03);
}

.retail-text {
    max-width: 500px;
}

.retail-text h2,
.retail-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #111;
}

.retail-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.retail-text a.btn {
    margin-top: 20px;
    align-self: center;
}

.flex-opposite {
    flex-direction: row-reverse;
}

/* MOBILE */
@media (max-width: 992px) {
    .retail-text h2,
    .retail-text h3 {
        font-size: 1.7rem;
        text-align: center;
    }
    .retail-text p {
        font-size: 1rem;
        text-align: center;
    }
    .retail-text a.btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .flex-opposite {
        flex-direction: column !important;
    }
    .retail-img img {
        max-width: 100%;
    }
    .retail-text h2,
    .retail-text h3 {
        font-size: 1.5rem;
    }
    .retail-text p {
        font-size: 0.95rem;
    }
}
/* ==============================
   NUEVA SECCIÓN: RETAIL ENHANCED
============================== */
/* ==============================
   RETAIL SECTION REFINED
============================== */
.retail-section {
    background-color: #fff;
    padding: 80px 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    align-content:center;
    
}

.retail-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.image-text__top-content {
    text-align: center;
    margin-bottom: 60px;
}

.section-overline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(239,130,32,0.08);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.image-text__top-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.image-text__top-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 720px;
    align-content: center;
    margin: 0 auto;
}

/* Image glow wrap */
.store-image-wrap {
    position: relative;
    display: inline-block;
    border-radius: 16px;
}

.store-image-wrap img {
    display: block;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.store-image-glow {
    position: absolute;
    inset: -8px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(239,130,32,0.15), transparent 50%, rgba(239,130,32,0.08));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.store-image-wrap:hover .store-image-glow {
    opacity: 1;
}

.image-text__text .section2-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    text-align: left;
}

.image-text__text .section2-list li {
    position: relative;
    padding: 14px 16px 14px 48px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    background: rgba(239,130,32,0.04);
    border-radius: 12px;
    border-left: 3px solid rgba(239,130,32,0.2);
    transition: all 0.3s ease;
}

.image-text__text .section2-list li::before {
    content: none;
}

.image-text__text .section2-list li:hover {
    background: rgba(239,130,32,0.1);
    border-left-color: var(--primary);
    transform: translateX(4px);
}

.image-text__text .section2-list li i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

/* Section 2 text with accent */
.section2-text .accent {
    font-weight: 600;
    color: var(--primary);
}

.section2-cta {
    align-self: start;
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #d66b15);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section2-cta:hover {
    box-shadow: 0 8px 24px rgba(239,130,32,0.35);
    transform: translateY(-2px);
    color: #fff;
}

.image-text__half {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}

.image-text__img img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-text__img img:hover {
    transform: scale(1.04);
}

.image-text__text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.image-text__text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.image-text__text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
    text-align: left;
}

.image-text__text ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.image-text__text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
}

.image-text__text a.btn {
    align-self: start;
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.image-text__text a.btn:hover {
    background-color: #d66b15;
    border-color: #d66b15;
    box-shadow: 0 8px 20px rgba(239,130,32,0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .flex-opposite {
        flex-direction: column !important;
    }
    .image-text__text h3 {
        text-align: center;
    }
    .image-text__text p, .image-text__top-content p {
        text-align: center;
    }
    .image-text__text a.btn {
        align-self: center;
    }
}
