/* FONDO DEL MODULO */
.taco-app-module {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/TacoApp/FONDO_App.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
/* CONTENEDOR */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-25%);
}
/* TITULO DE LA APP */
.titulo-taco-app {
    max-width: 100%;
    height: auto;
    margin: 0 0 10% 0;
    display: block;
    z-index: 1;
    transform: translateY(-5%);
}
/* CODIGO QR */
.qr-code {
    max-width: 70%;
    height: auto;
    margin: 1px 0 0 0;
    display: block;
    z-index: 1;
    transform: translateY(-10%) !important;
}
/* BOTONES INVICIBLES */
 .button-android,
 .button-ios {
     position: absolute;
     background-color: transparent;
     color: white;
     padding: 10px;
     border: none;
     cursor: pointer;
     z-index: 2;
     transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
     text-align: center;
     line-height: 30px;
     font-size: 16px;
     border-radius: 5px;
     box-shadow: none;
 }
/* BTN ANDROID */
.button-android {
    top: 46%;
    left: 20%;
    width: 29%;
    height: 5%;
}
/* BTN IOS */
.button-ios {
    top: 52%;
    left: 20%;
        width: 29%;
        height: 5%;
}
/* LINEAS */
.line {
    width: 100%;
    border: 0;
    height: 1px;
    background-color: rgb(255, 73, 246);
    margin: 1% 0;
    transform: translateY(-20px) !important;
}
/* TELEFONO */
.telefono-imagen {
    position: absolute;
    left: 10px;
    bottom: -10px;
    max-width: 150px;
    width: 100%;
    height: auto;
    z-index: 0;
    transform: translateY(5%);
}
/* CONTENEDOR 2 */
.imagenes-adicionales {
    position: absolute;
    right: -4%;
    bottom: 1%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}
/* IMAGENES */
.imagen-cupones,
.imagen-notificaciones,
.imagen-puntos {
    max-width: 230px;
    height: auto;
    display: block;
}
/* IMG CUPON */
.imagen-cupones {
    margin-bottom: -60px;
    margin-left: -10px;
}
/* IMG NOTIFICACION */
.imagen-notificaciones {
    margin-bottom: -60px;
}
/* IMG PUNTOS */
.imagen-puntos {
    margin-bottom: 0;
    margin-left: 6px;
}
/* CONTENEDOR DE FICHAS */
.background-icons {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
/* CONTENEDOR DE FICHAS */
.background-icons img {
    position: absolute;
}
/* FICHAS 1 */
.campana-amarilla-1 {
    width: 140px;
    height: auto;
    top: 55%;
    left: 70%;
    z-index: 0;
}
/* FICHAS 2 */
.campana-amarilla-2 {
    width: 145px;
        height: auto;
        top: 52%;
        left: -6%;
        z-index: 0;
}
/* FICHAS 3 */
.campana-morada {
    width: 115px;
    height: auto;
    top: 55%;
    left: -10%;
    z-index: 0;
}
/* footer */
.row_footer {
    justify-content: center;
    align-items: center;
    position: relative;
}
/* Efecto de neón específico para imágenes amarillas */
.neon-yellow {
    filter: drop-shadow(0 0 5px #ffff00e5) drop-shadow(0 0 100px #ffff00e5);
}
/* Efecto de neón específico para imágenes moradas */
.neon-purple {
    filter: drop-shadow(0 0 8px #f81fffb3) drop-shadow(0 0 100px #f81fffb3);
}