/* =========================
   1. VARIABLES Y RESET
========================= */
:root {
    --yellow: #FFD200;
    --dark: #333333;
    --gray: #777777;
    --white: #ffffff;
    --bg-light: #f7f7f7;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-light);
    color: var(--dark);
    line-height: 1.6;
    padding-top: 90px;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   2. HEADER
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 10px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

.menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu a:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: rgba(0, 0, 0, 0.78);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(0, 0, 0, 0.65);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--yellow);
    color: #000;
    border-color: var(--yellow);
    box-shadow: 0 6px 20px rgba(255, 210, 0, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--yellow);
    background: #fff9d6;
}

/* =========================
   HEADER MÓVIL / HAMBURGUESA
========================= */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(0, 0, 0, 0.82);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.18);
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   FOOTER
========================= */
.footer {
    background: linear-gradient(180deg, #2b2b2b 0%, #1f1f1f 100%);
    color: var(--white);
    padding-top: 60px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    width: 140px;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p,
.footer-links ul li a,
.footer-social a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--yellow);
    position: relative;
}

.footer h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--yellow);
    border-radius: 10px;
    margin-top: 8px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--yellow);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}
/* =========================
        HERO
========================= */
:root{
  --yellow-main: #f9c400;
  --yellow-soft: #ffd43b;
  --yellow-light: #ffe169;
  --orange: #ff9900;
  --orange-deep: #ff7a00;
  --white: #ffffff;
  --dark: #003b49;
  --text-soft: #5e5e5e;
}

.offers-hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 60px;
  background: linear-gradient(180deg, #ffd100 0%, #f7c400 100%);
}
/* ondas amarillas del fondo */
.offers-waves{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wave{
  position: absolute;
  background: rgba(255, 0, 0, 0.55);
  filter: blur(2px);
  border-radius: 45% 55% 50% 50% / 45% 45% 55% 55%;
}

.w1{
  width: 520px;
  height: 220px;
  top: 4%;
  left: -80px;
  transform: rotate(-8deg);
}

.w2{
  width: 520px;
  height: 240px;
  top: 0;
  right: -120px;
  transform: rotate(8deg);
}

.w3{
  width: 500px;
  height: 220px;
  bottom: -20px;
  left: -100px;
  transform: rotate(6deg);
}

.w4{
  width: 540px;
  height: 240px;
  bottom: -30px;
  right: -100px;
  transform: rotate(-8deg);
}
.offers-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.08));
  pointer-events: none;
}

.offers-bg-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .6;
  pointer-events: none;
}

.glow-1{
  width: 280px;
  height: 280px;
  background: rgba(255, 174, 0, 0.45);
  top: 8%;
  left: -60px;
}

.glow-2{
  width: 320px;
  height: 320px;
  background: rgba(255, 96, 0, 0.30);
  bottom: -40px;
  right: -40px;
}

.offers-content{
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.offer-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  color: #9b5b00;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  margin-bottom: 24px;
}

/* 1. Modificamos el contenedor para generar la sombra real de la estrella */
.explosion-wrap {
    position: relative;
    width: fit-content;
    margin: 0 auto 28px;
    /* Este filtro crea la sombra siguiendo la forma del clip-path */
    filter: drop-shadow(0 15px 5px rgba(0,0,0,0.2)) 
            drop-shadow(0 30px 50px rgba(0,0,0,0.35));

    -webkit-filter: drop-shadow(0 15px 10px rgba(0,0,0,0.2)) 
                    drop-shadow(0 25px 35px rgba(0,0,0,0.15));
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    
    /* 4. Aviso de renderizado */
    will-change: filter;
    
    /* 5. Evitar recortes extraños */
    overflow: visible !important;        
}

/* 2. Limpiamos la estrella para que sea blanca pura */
.explosion-star {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    color: #5a2b00;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 2px;
    border: 2px solid rgba(0,0,0,0.05);
    font-size: clamp(1.7rem, 4vw, 2.8rem);

    background-color: #ffffff !important; /* Blanco puro garantizado */
    box-shadow: none; /* Quitamos el box-shadow porque el padre ya tiene el drop-shadow */

    clip-path: polygon(
        50% 0%, 58% 15%, 72% 4%, 74% 20%, 92% 14%, 84% 32%,
        100% 40%, 84% 50%, 97% 66%, 78% 67%, 84% 88%, 64% 78%,
        58% 100%, 46% 82%, 32% 96%, 28% 78%, 8% 85%, 18% 64%,
        0% 56%, 16% 44%, 6% 26%, 24% 26%, 20% 8%, 40% 18%
    );
    transition: transform 0.3s ease;
    z-index: 2;
}

/* 3. ELIMINAMOS O LIMPIAMOS los pseudo-elementos que manchan el color */
.explosion-star::before,
.explosion-star::after {
    display: none !important; /* Esto quita las capas naranja y degradados que daban el tono rosado */
}


.explosion-star span {
  display: inline-block;
  transform: rotate(-4deg);
  /* Sombra de texto un poco más definida para estilo cómic */
  text-shadow:
    1px 1px 0px rgba(255, 255, 255, 0.8), /* Borde sutil blanco */
    2px 2px 4px rgba(0, 0, 0, 0.2);       /* Sombra suave negra */
}

.explosion-ring{
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.4);
  opacity: 0;
  pointer-events: none;
}

.ring-1{
  width: 260px;
  height: 260px;
  border: 2px solid rgba(255, 144, 0, .35);
  animation: shockwave 3.6s ease-out infinite;
}

.ring-2{
  width: 340px;
  height: 340px;
  border: 2px solid rgba(255, 98, 0, .20);
  animation: shockwave 3.6s ease-out infinite .45s;
}

.sticker{
  position: absolute;
  z-index: 10;
  padding: 8px 14px;
  border-radius: 999px;
  background: #7E09BD;
  color: #ffff;
  font-weight: 800;
  font-size: .85rem;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
  border: 1px solid rgba(255, 138, 0, .18);
}

.sticker-top{
  top: 18px;
  left: -10px;
  --rotacion:  -12deg;
  animation: floatSticker 4s ease-in-out infinite;
}

.sticker-right{
  right: -35px;
  top: 20%;
  --rotacion: 10deg;
  animation: floatSticker 4.2s ease-in-out infinite .4s;
}

.sticker-bottom{
  left: 8%;
  bottom: 12px;
  --rotacion:  -8deg;
  animation: floatSticker 3.8s ease-in-out infinite .7s;
}
.sticker-bottom-R{
  right: -35PX;
  bottom: 12px;
  --rotacion: -20deg;
  animation: floatSticker 3.8s ease-in-out infinite .7s;
}


.offers-title{
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
  color: #2c2c2c;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -1px;
}

.offers-subtitle{
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #5f5f5f;
  line-height: 1.7;
}

.countdown-box{
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow);
}

.countdown-head{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #8a4d00;
  font-weight: 700;
  letter-spacing: .4px;
}

.countdown-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7a00;
  box-shadow: 0 0 0 6px rgba(255,122,0,.15);
}

.countdown{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.count-item{
  padding: 18px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,245,220,.85));
  border: 1px solid rgba(255,180,60,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.count-number{
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  color: #ff7a00;
  margin-bottom: 6px;
}

.count-label{
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a6a6a;
  font-weight: 700;
}

.count-final{
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #d84b00;
}

.offers-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.offers-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s ease;
}

.offers-btn.primary{
  background: linear-gradient(135deg, #ffb300, #ff7a00);
  color: white;
  box-shadow: 0 14px 30px rgba(255,122,0,.28);
}

.offers-btn.primary:hover{
  transform: translateY(-3px) scale(1.02);
}

.offers-btn.secondary{
  background: rgba(255,255,255,.75);
  color: #6a4b00;
  border: 1px solid rgba(255,255,255,.7);
}

.offers-btn.secondary:hover{
  transform: translateY(-3px);
}

.offers-particles{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spark{
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fff, #ffd54a);
  box-shadow: 0 0 14px rgba(255,179,0,.6);
  animation: sparkle 3.2s ease-in-out infinite;
}

.s1{ top: 18%; left: 18%; animation-delay: .2s; }
.s2{ top: 26%; right: 18%; animation-delay: .7s; }
.s3{ top: 58%; left: 12%; animation-delay: 1.4s; }
.s4{ top: 68%; right: 12%; animation-delay: 2s; }
.s5{ top: 12%; left: 72%; animation-delay: 1s; }
.s6{ top: 80%; left: 70%; animation-delay: 2.5s; }

@keyframes burstEntry{
  0%{
    transform: scale(.1) rotate(-18deg);
    opacity: 0;
    filter: blur(12px);
  }
  50%{
    transform: scale(1.14) rotate(7deg);
    opacity: 1;
    filter: blur(0);
  }
  75%{
    transform: scale(.95) rotate(-4deg);
  }
  100%{
    transform: scale(1) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes pulsePromo{
  0%,100%{ transform: scale(1) rotate(0deg); }
  50%{ transform: scale(1.03) rotate(-1deg); }
}

@keyframes shockwave{
  0%{
    transform: translate(-50%, -50%) scale(.45);
    opacity: .65;
  }
  100%{
    transform: translate(-50%, -50%) scale(1.45);
    opacity: 0;
  }
}

@keyframes sparkle{
  0%,100%{
    transform: translateY(0) scale(.8) rotate(0deg);
    opacity: .35;
  }
  50%{
    transform: translateY(-10px) scale(1.2) rotate(20deg);
    opacity: 1;
  }
}

@keyframes floatSticker {
  0%, 100% { 
    transform: translateY(0) rotate(var(--rotacion)); 
  }
  50% { 
    /* Le sumamos un poquito a la rotación original para que "baile" */
    transform: translateY(-8px) rotate(calc(var(--rotacion) + 5deg)); 
  }
}

@media (max-width: 991px){
  .explosion-star{
    width: 280px;
    height: 280px;
    font-size: 2rem;
  }

  .countdown{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px){
  .offers-hero{
    padding: 100px 16px 70px;
  }

  .explosion-star{
    width: 220px;
    height: 220px;
    padding: 20px;
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .sticker{
    font-size: .72rem;
    padding: 6px 10px;
  }

  .sticker-right{
    right: -18px;
  }

  .offers-subtitle{
    font-size: .98rem;
  }

  .countdown-box{
    padding: 18px;
    border-radius: 22px;
  }

  .count-item{
    padding: 16px 10px;
  }
}

.boom-text{
  position: absolute;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5);
  z-index: 3;
  letter-spacing: 2px;
  
  background: linear-gradient(135deg, #FF6a6a, #FF2a2a, #C00000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    1px 1px 0px #000, 
    -1px -1px 0px #000,
    1px -1px 0px #000,
    -1px 1px 0px #000,
}

/* POSICIONES */
.boom-1{
  top: -20px;
  left: -30px;
  font-size: 2rem;
  transform: rotate(-15deg);
  animation: boomAnim 2.8s ease-out infinite;
}

.boom-2{
  top: 10%;
  right: -40px;
  font-size: 1.8rem;
  transform: rotate(10deg);
  animation: boomAnim 3s ease-out infinite .5s;
}

.boom-3{
  bottom: -20px;
  left: 10%;
  font-size: 1.6rem;
  transform: rotate(-10deg);
  animation: boomAnim 3.2s ease-out infinite 1s;
}
@keyframes boomAnim{
  0%{
    opacity: 0;
    transform: scale(0.3) translateY(10px) rotate(-10deg);
  }
  30%{
    opacity: 1;
    transform: scale(1.2) translateY(-5px) rotate(5deg);
  }
  60%{
    transform: scale(1) translateY(0) rotate(0deg);
  }
  100%{
    opacity: 0;
    transform: scale(0.6) translateY(10px);
  }
}
/* =========================================
   AJUSTES RESPONSIVOS MEJORADOS
========================================= */
/* Tablets */
@media (max-width: 991px) {
    body {
        padding-top: 82px;
    }

    .header {
        padding: 8px 0;
    }

    .nav {
        height: 62px;
    }

    .logo img {
        height: 48px;
    }

    .menu {
        position: fixed;
        top: 82px;
        right: 16px;
        left: 16px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
        padding: 18px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu a {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 10px 12px;
        border-radius: 12px;
    }

    .menu a:hover {
        background: #fff8d1;
        transform: none;
    }

    .menu-toggle {
        display: flex;
    }

    .offers-hero {
        min-height: auto;
        padding: 88px 18px 60px;
    }

    .offers-content {
        max-width: 100%;
    }

    .explosion-wrap {
        transform: scale(1);
        margin-bottom: 12px;
    }

    .explosion-star {
        width: 420px;
        height: 420px;
        padding: 40px;
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .ring-1 {
        width: 210px;
        height: 210px;
    }

    .ring-2 {
        width: 280px;
        height: 280px;
    }

    .offers-title {
        font-size: clamp(2rem, 6vw, 3.2rem);
    }

    .offers-subtitle {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 8px;
    }

    .countdown-box {
        max-width: 100%;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .count-item {
        border-radius: 18px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Celulares */
@media (max-width: 767px) {
    body {
        padding-top: 78px;
    }

    .container {
        width: min(92%, 100%);
    }

    .nav {
        height: 58px;
    }

    .logo img {
        height: 42px;
    }

    .menu {
        top: 76px;
        left: 12px;
        right: 12px;
        padding: 16px;
        gap: 10px;
    }

    .menu a {
        font-size: 15px;
        padding: 12px;
    }

    .offers-hero {
        padding: 85px 14px 50px;
    }

    .offers-grid {
        background-size: 24px 24px;
    }

    .glow-1 {
        width: 180px;
        height: 180px;
        top: 4%;
        left: -50px;
    }

    .glow-2 {
        width: 210px;
        height: 210px;
        right: -60px;
        bottom: -20px;
    }

    .spark {
        width: 9px;
        height: 9px;
    }

    .explosion-wrap {
        transform: scale(1);
        margin-bottom: 8px;
    }

    .explosion-star {
        width: 320px;
        height: 320px;
        padding: 28px;
        font-size: 1.6rem;
        line-height: 1.05;
        letter-spacing: 1px;
    }

    .explosion-star span {
        transform: rotate(-4deg);
    }

    .sticker {
        font-size: 0.72rem;
        padding: 6px 10px;
        white-space: nowrap;
    }

    .sticker-top {
        top: 10px;
        left: -6px;
    }

    .sticker-right {
        right: -18px;
        top: 18%;
    }

    .sticker-bottom {
        left: 4%;
        bottom: 4px;
    }

    .sticker-bottom-R {
        right: -16px;
        bottom: 2px;
    }

    .boom-1 {
        top: -10px;
        left: -8px;
        font-size: 1.3rem;
    }

    .boom-2 {
        top: 12%;
        right: -18px;
        font-size: 1.2rem;
    }

    .boom-3 {
        bottom: -10px;
        left: 8%;
        font-size: 1.1rem;
    }

    .offers-title {
        font-size: 2rem;
        line-height: 1.05;
        margin-bottom: 12px;
    }

    .offers-subtitle {
        font-size: 0.96rem;
        margin-bottom: 24px;
    }

    .countdown-box {
        padding: 16px 14px;
        border-radius: 20px;
    }

    .countdown-head {
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .count-number {
        font-size: 1.9rem;
    }

    .count-label {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }

    .footer {
        padding-top: 45px;
        margin-top: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }

    .footer h4::after {
        margin: 8px auto 0;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Celulares pequeños */
@media (max-width: 480px) {
    .offers-hero {
        padding: 80px 12px 46px;
    }

    .explosion-wrap {
        transform: scale(1);
        margin-bottom: 4px;
    }

    .explosion-star {
        width: 290px;
        height: 290px;
        padding: 24px;
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }

    .sticker {
        font-size: 0.64rem;
        padding: 5px 8px;
    }

    .sticker-right {
        right: -10px;
    }

    .sticker-bottom-R {
        right: -10px;
    }

    .boom-1,
    .boom-2,
    .boom-3 {
        font-size: 0.95rem;
    }

    .offers-title {
        font-size: 1.7rem;
    }

    .offers-subtitle {
        font-size: 0.9rem;
    }

    .countdown {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .count-item {
        padding: 14px 8px;
    }

    .count-number {
        font-size: 1.6rem;
    }

    .count-label {
        font-size: 0.68rem;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
        padding: 0 10px;
    }
}