/* Enlace contenedor (tigre + mensaje) */
.promotion-link {
    position: fixed;
    bottom: 0;
    left: -300px; /* Fuera de pantalla inicialmente */
    z-index: 9999;
    text-decoration: none;
    display: block;
    transition: left 0.8s ease;
}

/* Mostrar el contenedor en pantalla */
.promotion-link.show {
    left: 10px;
}

/* Contenedor interno del tigre y el mensaje */
.promotion-floating {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    align-items: flex-start;
    padding: 10px;
}

/* Imagen del tigre */
.promotion-floating img {
    height: 20vh;
    width: auto;
    transform: rotate(15deg);
    transition: height 0.4s ease;
    filter: drop-shadow(2px 2px 5px #00000091);
}

/* Burbuja contenedora del mensaje */
.promotion-message {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    max-width: 280px;
    position: relative;
    margin-left: 0;
    font-size: 14px;
    margin-left: 40px;
    filter: drop-shadow(2px 2px 5px #00000091);
}

/* Mostrar la burbuja */
.promotion-link.show .promotion-message {
    opacity: 1;
    transform: translateY(0);
}

/* Estilo de la burbuja de diálogo */
.promotion-message p {
    position: relative;
    padding: 20px 20px 20px 35px;
    background: white;
    border-radius: 10px;
    color: #456091;
    margin-bottom: 35px;
    line-height: 1.5;
    font-size: 14px;
}

/* Elimina las comillas */
.promotion-message p:before {
    content: '';
}

/* Flecha de la burbuja */
.promotion-message p:after {
    content: '';
    border: 10px solid;
    border-color: white transparent transparent white;
    position: absolute;
    bottom: -20px;
    left: 30px;
}

.span-click {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #456091;
    text-align: right;
    margin-top: 8px;
    animation: reboteOut 3s infinite;
}

@keyframes reboteOut {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(0.92);
  }

  60% {
    transform: scale(0.98);
  }

  80% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
  }
}


/* Responsividad: Pantallas menores a 1280px */
@media (max-width: 1280px) {
    .promotion-floating img {
        height: 15vh;
    }

    .promotion-message {
        max-width: 220px;
        margin-left: 0;
    }

    .promotion-message p {
        padding: 15px 15px 15px 30px;
        font-size: 12px;
        line-height: 1.3;
    }
}

/* Responsividad: Pantallas menores a 600px */
@media (max-width: 600px) {
    .promotion-floating {
        gap: 8px;
    }

    .promotion-message {
        max-width: 200px;
        font-size: 10px;
        margin-left: 0;
    }

    .promotion-message p {
        padding: 12px 12px 12px 25px;
        font-size: 10px;
    }

    .promotion-floating img {
        height: 12vh;
    }
}
