/* --- CSS FINAL (CON MÓVIL MÁS PEQUEÑO) --- */

.popup-findepromos {
  position: relative;
  background: transparent !important;
  width: 626px !important;
  max-width: 90%;
  padding: 0 !important;
  border-radius: 12px;
  overflow: hidden; 
}

.popup-findepromos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f76900;
  background-image: url('../img/popup-finde-fondo.png');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 1;
  border-radius: 12px;
}

.popup-findepromos .promo-contenido {
  position: relative;
  z-index: 2;
  width: 65%;
  margin-left: 35%;
  padding: 40px 30px;
  box-sizing: border-box;
  color: #ffffff;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.popup-findepromos .swal2-close {
  color: #ffffff;
  top: 15px;
  right: 15px;
  z-index: 3;
}

.popup-findepromos h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.popup-findepromos h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #ffffff;
}

.popup-findepromos p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 25px;
}

.popup-findepromos .promo-leyenda {
  display: block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: #ffffff;
  margin-top: 20px;
  opacity: 0.8;
}

.popup-findepromos .promo-logo {
  width: 100px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.popup-findepromos .promo-boton {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  background-color: #ffffff;
  color: #333333;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
}

.popup-findepromos .promo-boton:hover {
  transform: scale(1.05);
  background-color: #f4f4f4;
}

.popup-findepromos .promo-boton .text-mobile {
    display: none; 
}
.popup-findepromos .promo-boton .text-desktop {
    display: inline; 
}

.popup-findepromos .promo-buenfin-badge {
  position: absolute; 
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: auto;
  z-index: 2; 
  border-radius: 6px;
}

/* --- SECCIÓN MÓVIL (MÁS PEQUEÑA Y COMPACTA) --- */
@media (max-width: 768px) {
  .popup-findepromos {
    width: 90% !important;
    background: transparent !important;
  }

  .popup-findepromos::before {
    background-image: none !important;
    background-color: #f76900;
    opacity: 0.9;
  }

  .popup-findepromos .promo-contenido {
    width: 100%;
    margin-left: 0;
        /* CAMBIO: Padding reducido */
    padding: 20px 20px; 
        /* CAMBIO: Margen inferior reducido */
    margin-bottom: 60px; 
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .popup-findepromos h2 {
    font-size: 1.6rem;
        /* CAMBIO: Margen reducido */
        margin-bottom: 10px; 
  }

  .popup-findepromos h3 {
    font-size: 1.1rem;
        /* CAMBIO: Margen reducido */
        margin-bottom: 10px; 
  }

  .popup-findepromos p {
    font-size: 0.9rem;
        /* CAMBIO: Margen reducido */
    margin-bottom: 15px; 
  }

  .popup-findepromos .promo-logo {
    width: 80px;
        /* CAMBIO: Margen reducido */
    margin-bottom: 20px; 
  }

  .popup-findepromos .promo-boton {
    padding: 8px 22px; 
    font-size: 0.9rem;
  }

    .popup-findepromos .promo-boton .text-mobile {
        display: inline; 
    }
    .popup-findepromos .promo-boton .text-desktop {
        display: none; 
    }

  .popup-findepromos .promo-leyenda {
    font-size: 0.7rem;
        /* CAMBIO: Margen reducido */
    margin-top: 10px; 
        margin-bottom: 0; 
  }

  .popup-findepromos .promo-buenfin-badge {
    display: block;
    position: absolute;
        /* CAMBIO: Posición inferior reducida */
    bottom: 10px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 80px; 
    z-index: 2; 
  }
}