/* CSS para el Icono de Información del Tallador */
.imagen-carta {
    position: relative;
}

.info-icon-tallador {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    /* Un poco más grande para facilitar el toque en móvil */
    height: 32px;
    background: #ffffff;
    color: #0c569d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-style: italic;
    font-family: serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s ease-in-out;
    border: 2px solid #0c569d;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.info-icon-tallador:hover,
.info-icon-tallador:active {
    transform: scale(1.1);
    background: #0c569d;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Ajustes específicos para móviles muy pequeños */
@media (max-width: 480px) {
    .info-icon-tallador {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}